import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Specifies the tax calculation mode for the transaction. If set to "inclusive," the tax is included in the price. If set to "exclusive," the tax is added on top of the price. */ export declare const TaxMode: { readonly Inclusive: "inclusive"; readonly Exclusive: "exclusive"; }; /** * Specifies the tax calculation mode for the transaction. If set to "inclusive," the tax is included in the price. If set to "exclusive," the tax is added on top of the price. */ export type TaxMode = ClosedEnum; /** @internal */ export declare const TaxMode$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TaxMode$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=taxmode.d.ts.map