/** * Indicates whether the card surcharge will be treated as a value-holding line item or * apportioned across all line items. */ export declare const OrderCardSurchargeTreatmentType: { readonly LineItemTreatment: "LINE_ITEM_TREATMENT"; readonly ApportionedTreatment: "APPORTIONED_TREATMENT"; }; export type OrderCardSurchargeTreatmentType = (typeof OrderCardSurchargeTreatmentType)[keyof typeof OrderCardSurchargeTreatmentType];