import type { Price, PriceType } from '.';
export type SalePrice = Price & {
    priceType: PriceType;
};
