import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Ein = { number: string; }; /** * An EIN (employer identification number) for the business. For sole proprietors, an SSN can be used as the EIN. */ export type TaxID = { ein: Ein; }; /** @internal */ export declare const Ein$inboundSchema: z.ZodType; /** @internal */ export type Ein$Outbound = { number: string; }; /** @internal */ export declare const Ein$outboundSchema: z.ZodType; export declare function einToJSON(ein: Ein): string; export declare function einFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TaxID$inboundSchema: z.ZodType; /** @internal */ export type TaxID$Outbound = { ein: Ein$Outbound; }; /** @internal */ export declare const TaxID$outboundSchema: z.ZodType; export declare function taxIDToJSON(taxID: TaxID): string; export declare function taxIDFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=taxid.d.ts.map