/** * Indicates whether this is a line-item or order-level apportioned * service charge. */ export declare const OrderServiceChargeScope: { readonly OtherServiceChargeScope: "OTHER_SERVICE_CHARGE_SCOPE"; readonly LineItem: "LINE_ITEM"; readonly Order: "ORDER"; }; export type OrderServiceChargeScope = (typeof OrderServiceChargeScope)[keyof typeof OrderServiceChargeScope];