/** When to calculate the taxes due on a cart. */ export declare const TaxCalculationPhase: { readonly TaxSubtotalPhase: "TAX_SUBTOTAL_PHASE"; readonly TaxTotalPhase: "TAX_TOTAL_PHASE"; }; export type TaxCalculationPhase = (typeof TaxCalculationPhase)[keyof typeof TaxCalculationPhase];