import * as z from "zod/v3"; import * as components from "../components/index.js"; import { SDKBaseError } from "./sdkbaseerror.js"; export type AuthenticationErrorData = { error?: components.AuthenticationErrorDetail | undefined; }; export declare class AuthenticationError extends SDKBaseError { error?: components.AuthenticationErrorDetail | undefined; /** The original data that was passed to this error instance. */ data$: AuthenticationErrorData; constructor(err: AuthenticationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const AuthenticationError$inboundSchema: z.ZodType; //# sourceMappingURL=authenticationerror.d.ts.map