declare enum TaxCalculation {
    TAX_INCLUDED = "TAX_INCLUDED",
    TAX_NOT_INCLUDED = "TAX_NOT_INCLUDED"
}
export { TaxCalculation };
