import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LinkedTaxRateInput = { /** * The ID of the object. */ id?: string | null | undefined; /** * Rate of the tax rate */ rate?: number | null | undefined; }; /** @internal */ export declare const LinkedTaxRateInput$inboundSchema: z.ZodType; /** @internal */ export type LinkedTaxRateInput$Outbound = { id?: string | null | undefined; rate?: number | null | undefined; }; /** @internal */ export declare const LinkedTaxRateInput$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LinkedTaxRateInput$ { /** @deprecated use `LinkedTaxRateInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedTaxRateInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedTaxRateInput$Outbound` instead. */ type Outbound = LinkedTaxRateInput$Outbound; } export declare function linkedTaxRateInputToJSON(linkedTaxRateInput: LinkedTaxRateInput): string; export declare function linkedTaxRateInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedtaxrateinput.d.ts.map