import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { startHttpTransport } from "./http-transport.js";
import { startStdioTransport } from "./stdio-transport.js";
export declare function startTransport(server: Server, transport?: 'stdio' | 'http', port?: number, host?: string): Promise<void>;
export { startHttpTransport, startStdioTransport };
