import { PriceLabelEnum } from './PriceLabelEnum';
import { Price as AliasTypePrice } from '../Price';
import { Promotion } from './Promotion';
/** Price information with label */
export interface Price {
    /** Label corresponding to a price */
    label: PriceLabelEnum;
    /** Price of the product */
    price: AliasTypePrice;
    /** Promotions on the product */
    promotions?: Promotion[];
}
//# sourceMappingURL=Price.d.ts.map