/** Whether to the tax amount should be additional to or included in the CatalogItem price. */ export declare const TaxInclusionType: { readonly Additive: "ADDITIVE"; readonly Inclusive: "INCLUSIVE"; }; export type TaxInclusionType = (typeof TaxInclusionType)[keyof typeof TaxInclusionType];