/** * HTTP транспорт для удаленного доступа к MCP серверу */ import express from 'express'; import { McpOptions } from './options.js'; export declare const streamableHTTPApp: ({ apiKey, baseURL, mcpOptions, }: { apiKey: string; baseURL?: string; mcpOptions?: McpOptions; }) => express.Express; export declare const launchStreamableHTTPServer: (options: { apiKey: string; baseURL?: string; mcpOptions?: McpOptions; }, port?: number | string | undefined) => Promise>; //# sourceMappingURL=http.d.ts.map