import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { BridgeOptions } from "./bridge/file-bridge.js"; import type { UxpWebSocketBridge } from "./bridge/uxp-websocket-bridge.js"; import { type Telemetry } from "./telemetry.js"; /** * Read the version from package.json rather than hardcoding it. A literal here * silently drifts from the published package every release, which makes the * version reported over MCP useless for triaging bug reports. */ export declare const SERVER_VERSION: string; export interface ServerOptions { uxpBridge?: UxpWebSocketBridge; telemetry?: Telemetry; } export declare function createServer(bridgeOptions: BridgeOptions, serverOptions?: ServerOptions): McpServer; //# sourceMappingURL=server.d.ts.map