/** * Represents a phase in the process of calculating order totals. * Service charges are applied after the indicated phase. * * [Read more about how order totals are calculated.](https://developer.squareup.com/docs/orders-api/how-it-works#how-totals-are-calculated) */ export declare const OrderServiceChargeCalculationPhase: { readonly SubtotalPhase: "SUBTOTAL_PHASE"; readonly TotalPhase: "TOTAL_PHASE"; readonly ApportionedPercentagePhase: "APPORTIONED_PERCENTAGE_PHASE"; readonly ApportionedAmountPhase: "APPORTIONED_AMOUNT_PHASE"; }; export type OrderServiceChargeCalculationPhase = (typeof OrderServiceChargeCalculationPhase)[keyof typeof OrderServiceChargeCalculationPhase];