#!/usr/bin/env node import express from "express"; import { type ServerConfig } from "./config"; import { SessionStore } from "./lib/sessionStore"; interface HttpRuntime { app: express.Express; close: () => Promise; sessions: SessionStore; } export declare function createSandboxServer(): import("@modelcontextprotocol/sdk/server/mcp").McpServer; export declare function createHttpRuntime(config: ServerConfig): Promise; export declare function main(config?: ServerConfig): Promise; export {}; //# sourceMappingURL=index.d.ts.map