/** Indicates how the tax is applied to the associated line item or order. */ export declare const OrderLineItemTaxType: { readonly UnknownTax: "UNKNOWN_TAX"; readonly Additive: "ADDITIVE"; readonly Inclusive: "INCLUSIVE"; }; export type OrderLineItemTaxType = (typeof OrderLineItemTaxType)[keyof typeof OrderLineItemTaxType];