import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Ssn = { full?: string | undefined; lastFour?: string | undefined; }; export type Itin = { full?: string | undefined; lastFour?: string | undefined; }; export type GovernmentID = { ssn?: Ssn | undefined; itin?: Itin | undefined; }; /** @internal */ export declare const Ssn$inboundSchema: z.ZodType; /** @internal */ export type Ssn$Outbound = { full?: string | undefined; lastFour?: string | undefined; }; /** @internal */ export declare const Ssn$outboundSchema: z.ZodType; export declare function ssnToJSON(ssn: Ssn): string; export declare function ssnFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Itin$inboundSchema: z.ZodType; /** @internal */ export type Itin$Outbound = { full?: string | undefined; lastFour?: string | undefined; }; /** @internal */ export declare const Itin$outboundSchema: z.ZodType; export declare function itinToJSON(itin: Itin): string; export declare function itinFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GovernmentID$inboundSchema: z.ZodType; /** @internal */ export type GovernmentID$Outbound = { ssn?: Ssn$Outbound | undefined; itin?: Itin$Outbound | undefined; }; /** @internal */ export declare const GovernmentID$outboundSchema: z.ZodType; export declare function governmentIDToJSON(governmentID: GovernmentID): string; export declare function governmentIDFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=governmentid.d.ts.map