/** Indicates how the discount is applied to the associated line item or order. */ export declare const OrderLineItemDiscountType: { readonly UnknownDiscount: "UNKNOWN_DISCOUNT"; readonly FixedPercentage: "FIXED_PERCENTAGE"; readonly FixedAmount: "FIXED_AMOUNT"; readonly VariablePercentage: "VARIABLE_PERCENTAGE"; readonly VariableAmount: "VARIABLE_AMOUNT"; }; export type OrderLineItemDiscountType = (typeof OrderLineItemDiscountType)[keyof typeof OrderLineItemDiscountType];