import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3ValidateRequest = { /** * 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; }; /** @internal */ export declare const V3ValidateRequest$inboundSchema: z.ZodType; /** @internal */ export type V3ValidateRequest$Outbound = { correlationId: string; }; /** @internal */ export declare const V3ValidateRequest$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 V3ValidateRequest$ { /** @deprecated use `V3ValidateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3ValidateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3ValidateRequest$Outbound` instead. */ type Outbound = V3ValidateRequest$Outbound; } export declare function v3ValidateRequestToJSON(v3ValidateRequest: V3ValidateRequest): string; export declare function v3ValidateRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3validaterequest.d.ts.map