/** Portion of the price of a product (e.g., "delivery cost", "tax amount") */ export declare class LabeledPricePartBaseModel { _: 'labeledPricePart'; /** Label for this portion of the product price */ label: string; /** Currency amount in minimal quantity of the currency */ amount: number; }