import * as z from "zod/v3"; import * as components from "../components/index.js"; import { RagieError } from "./ragieerror.js"; export type HTTPValidationErrorData = { detail?: Array | undefined; }; export declare class HTTPValidationError extends RagieError { 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; /** @internal */ export type HTTPValidationError$Outbound = { detail?: Array | undefined; }; /** @internal */ export declare const HTTPValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=httpvalidationerror.d.ts.map