import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3UnifyResponse = { /** * The one-time use JWT for the client-side SDK. */ authToken?: string | undefined; /** * The unique ID that Prove generates for the flow. To continue the flow, the field will also be used for each of the subsequent API calls in the same flow - it cannot be reused outside of a single flow. */ correlationId: string; /** * The status of the Unify request. */ success: string; }; /** @internal */ export declare const V3UnifyResponse$inboundSchema: z.ZodType; /** @internal */ export type V3UnifyResponse$Outbound = { authToken?: string | undefined; correlationId: string; success: string; }; /** @internal */ export declare const V3UnifyResponse$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 V3UnifyResponse$ { /** @deprecated use `V3UnifyResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3UnifyResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3UnifyResponse$Outbound` instead. */ type Outbound = V3UnifyResponse$Outbound; } export declare function v3UnifyResponseToJSON(v3UnifyResponse: V3UnifyResponse): string; export declare function v3UnifyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3unifyresponse.d.ts.map