/** * Serve Command * * Starts the MCP server that bridges external AI agents to GitNexus. * - Listens on stdio for MCP protocol (from AI tools) * - Hosts a local WebSocket bridge for the GitNexus browser app */ interface ServeOptions { port: string; } export declare function serveCommand(options: ServeOptions): Promise; export {}; //# sourceMappingURL=serve.d.ts.map