import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthContinueResponseError = { /** * Code is an internal error code that describes the problem category of the request. */ code?: number | undefined; /** * Message is an error message describing the problem with the request. */ message: string; }; /** @internal */ export declare const AuthContinueResponseError$inboundSchema: z.ZodType; /** @internal */ export type AuthContinueResponseError$Outbound = { code?: number | undefined; message: string; }; /** @internal */ export declare const AuthContinueResponseError$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 AuthContinueResponseError$ { /** @deprecated use `AuthContinueResponseError$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthContinueResponseError$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthContinueResponseError$Outbound` instead. */ type Outbound = AuthContinueResponseError$Outbound; } export declare function authContinueResponseErrorToJSON(authContinueResponseError: AuthContinueResponseError): string; export declare function authContinueResponseErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authcontinueresponseerror.d.ts.map