import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IDVDataInternal, IDVDataInternal$Outbound } from "./idvdatainternal.js"; import { KYCInternal, KYCInternal$Outbound } from "./kycinternal.js"; export type V3CompleteResponse = { /** * The evaluation result for the policy */ evaluation?: { [k: string]: any; } | undefined; idv?: IDVDataInternal | undefined; kyc?: KYCInternal | undefined; /** * The next set of allowed calls in the same flow. */ next: { [k: string]: string; }; /** * True if the individual was verified successfully. */ success: boolean; }; /** @internal */ export declare const V3CompleteResponse$inboundSchema: z.ZodType; /** @internal */ export type V3CompleteResponse$Outbound = { evaluation?: { [k: string]: any; } | undefined; idv?: IDVDataInternal$Outbound | undefined; kyc?: KYCInternal$Outbound | undefined; next: { [k: string]: string; }; success: boolean; }; /** @internal */ export declare const V3CompleteResponse$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 V3CompleteResponse$ { /** @deprecated use `V3CompleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3CompleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3CompleteResponse$Outbound` instead. */ type Outbound = V3CompleteResponse$Outbound; } export declare function v3CompleteResponseToJSON(v3CompleteResponse: V3CompleteResponse): string; export declare function v3CompleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3completeresponse.d.ts.map