import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3ChallengeRequestResponse = { httpMeta: components.HTTPMetadata; /** * Successful request. */ v3ChallengeResponse?: components.V3ChallengeResponse | undefined; }; /** @internal */ export declare const V3ChallengeRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3ChallengeRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3ChallengeResponse?: components.V3ChallengeResponse$Outbound | undefined; }; /** @internal */ export declare const V3ChallengeRequestResponse$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 V3ChallengeRequestResponse$ { /** @deprecated use `V3ChallengeRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3ChallengeRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3ChallengeRequestResponse$Outbound` instead. */ type Outbound = V3ChallengeRequestResponse$Outbound; } export declare function v3ChallengeRequestResponseToJSON(v3ChallengeRequestResponse: V3ChallengeRequestResponse): string; export declare function v3ChallengeRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3challengerequest.d.ts.map