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