import * as z from "zod/v4-mini"; export type TaxRateOverride = { autoApply?: boolean | undefined; currency: string; metadata?: { [k: string]: string; } | undefined; priority?: number | undefined; taxRateCode: string; }; /** @internal */ export type TaxRateOverride$Outbound = { auto_apply: boolean; currency: string; metadata?: { [k: string]: string; } | undefined; priority?: number | undefined; tax_rate_code: string; }; /** @internal */ export declare const TaxRateOverride$outboundSchema: z.ZodMiniType; export declare function taxRateOverrideToJSON(taxRateOverride: TaxRateOverride): string; //# sourceMappingURL=tax-rate-override.d.ts.map