import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthenticationErrorDetail = { /** * HTTP status code */ code?: number | undefined; /** * Human-readable message describing the error occurrence */ message?: string | undefined; /** * Human-readable explanation of the underlying cause of the error */ reason?: string | undefined; request?: string | undefined; /** * HTTP status message associated with the error */ status?: string | undefined; }; /** @internal */ export declare const AuthenticationErrorDetail$inboundSchema: z.ZodType; export declare function authenticationErrorDetailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticationerrordetail.d.ts.map