import type { McpServerTransportConfig, McpStdioTransportConfig, McpStreamableHttpTransportConfig } from "./types"; /** * Recognizes the exact no-option `npx mcp-remote ` proxy shape emitted by * older marketplace entries. Cline has a native Streamable HTTP transport, so * spawning the proxy would duplicate OAuth handling and let the child process * open a browser as a side effect of merely enabling the server. */ export declare function resolveMcpRemoteProxyTransport(transport: McpStdioTransportConfig): McpStreamableHttpTransportConfig | undefined; export declare function resolveNativeMcpTransport(transport: McpServerTransportConfig): McpServerTransportConfig;