declare enum TaxBehaviour {
    INCLUSIVE = "inclusive",
    EXCLUSIVE = "exclusive"
}
export { TaxBehaviour as default };
