import * as z from "zod/v4"; import * as components from "../components/index.js"; import { MistralError } from "./mistralerror.js"; export type HTTPValidationErrorData = { detail?: Array | undefined; }; export declare class HTTPValidationError extends MistralError { detail?: Array | undefined; /** The original data that was passed to this error instance. */ data$: HTTPValidationErrorData; constructor(err: HTTPValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const HTTPValidationError$inboundSchema: z.ZodType; //# sourceMappingURL=httpvalidationerror.d.ts.map