import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The value or "answer" for a tax requirement. Type depends on the requirement metadata type (e.g. string for text/account_number, boolean for radio/checkbox, number for percent/currency/tax_rate). Null when the requirement has not been answered. */ export type TaxRequirementsValue = boolean | string | number; /** @internal */ export declare const TaxRequirementsValue$inboundSchema: z.ZodType; /** @internal */ export type TaxRequirementsValue$Outbound = boolean | string | number; /** @internal */ export declare const TaxRequirementsValue$outboundSchema: z.ZodType; export declare function taxRequirementsValueToJSON(taxRequirementsValue: TaxRequirementsValue): string; export declare function taxRequirementsValueFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=taxrequirementsvalue.d.ts.map