import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthFinishResponseError = { /** * 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 AuthFinishResponseError$inboundSchema: z.ZodType; /** @internal */ export type AuthFinishResponseError$Outbound = { code?: number | undefined; message: string; }; /** @internal */ export declare const AuthFinishResponseError$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 AuthFinishResponseError$ { /** @deprecated use `AuthFinishResponseError$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthFinishResponseError$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthFinishResponseError$Outbound` instead. */ type Outbound = AuthFinishResponseError$Outbound; } export declare function authFinishResponseErrorToJSON(authFinishResponseError: AuthFinishResponseError): string; export declare function authFinishResponseErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authfinishresponseerror.d.ts.map