import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3ChallengeRequest = { /** * The unique ID that Prove generates for the flow. It is returned from the Start endpoint and cannot be reused outside of a single flow. */ correlationId: string; /** * The date of birth in one of these formats: YYYY-MM-DD, YYYY-MM, or MM-DD. Acceptable characters are: numeric with symbol '-'. */ dob?: string | undefined; /** * The full or last 4 numbers of the social security number. Acceptable characters are: numeric. */ ssn?: string | undefined; }; /** @internal */ export declare const V3ChallengeRequest$inboundSchema: z.ZodType; /** @internal */ export type V3ChallengeRequest$Outbound = { correlationId: string; dob?: string | undefined; ssn?: string | undefined; }; /** @internal */ export declare const V3ChallengeRequest$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 V3ChallengeRequest$ { /** @deprecated use `V3ChallengeRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3ChallengeRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3ChallengeRequest$Outbound` instead. */ type Outbound = V3ChallengeRequest$Outbound; } export declare function v3ChallengeRequestToJSON(v3ChallengeRequest: V3ChallengeRequest): string; export declare function v3ChallengeRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3challengerequest.d.ts.map