import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; export declare const McpHttpErrorType: { readonly HttpError: "http_error"; }; export type McpHttpErrorType = ClosedEnum; /** * The MCP server request failed at the HTTP layer */ export type McpHttpError = { code: number; message: string; type: McpHttpErrorType; }; /** @internal */ export declare const McpHttpErrorType$outboundSchema: z.ZodEnum; /** @internal */ export type McpHttpError$Outbound = { code: number; message: string; type: string; }; /** @internal */ export declare const McpHttpError$outboundSchema: z.ZodType; export declare function mcpHttpErrorToJSON(mcpHttpError: McpHttpError): string; //# sourceMappingURL=mcphttperror.d.ts.map