import * as z from "zod"; import * as components from "../components/index.js"; export type HTTPValidationErrorData = { detail?: Array | undefined; /** * Raw HTTP response; suitable for custom response parsing */ rawResponse?: Response | undefined; }; export declare class HTTPValidationError extends Error { detail?: Array | undefined; /** * Raw HTTP response; suitable for custom response parsing */ rawResponse?: Response | undefined; /** The original data that was passed to this error instance. */ data$: HTTPValidationErrorData; constructor(err: HTTPValidationErrorData); } /** @internal */ export declare const HTTPValidationError$inboundSchema: z.ZodType; /** @internal */ export type HTTPValidationError$Outbound = { detail?: Array | undefined; RawResponse?: never | undefined; }; /** @internal */ export declare const HTTPValidationError$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace HTTPValidationError$ { /** @deprecated use `HTTPValidationError$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HTTPValidationError$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HTTPValidationError$Outbound` instead. */ type Outbound = HTTPValidationError$Outbound; } //# sourceMappingURL=httpvalidationerror.d.ts.map