import * as z from "zod/v3"; import { GleanBaseError } from "./gleanbaseerror.js"; /** * Error response returned for failed requests */ export type ErrorResponseData = { /** * Client-facing error message describing what went wrong */ message?: string | undefined; }; /** * Error response returned for failed requests */ export declare class ErrorResponse extends GleanBaseError { /** The original data that was passed to this error instance. */ data$: ErrorResponseData; constructor(err: ErrorResponseData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ErrorResponse$inboundSchema: z.ZodType; //# sourceMappingURL=errorresponse.d.ts.map