/** Indicates whether this is a line-item or order-level tax. */ export declare const OrderLineItemTaxScope: { readonly OtherTaxScope: "OTHER_TAX_SCOPE"; readonly LineItem: "LINE_ITEM"; readonly Order: "ORDER"; }; export type OrderLineItemTaxScope = (typeof OrderLineItemTaxScope)[keyof typeof OrderLineItemTaxScope];