/** * Indicates whether the service charge will be treated as a value-holding line item or * apportioned toward a line item. */ export declare const OrderServiceChargeTreatmentType: { readonly LineItemTreatment: "LINE_ITEM_TREATMENT"; readonly ApportionedTreatment: "APPORTIONED_TREATMENT"; }; export type OrderServiceChargeTreatmentType = (typeof OrderServiceChargeTreatmentType)[keyof typeof OrderServiceChargeTreatmentType];