/** * HTTP server for the EasyEDA Component Browser * Runs alongside the MCP stdio server to serve the web UI and proxy API requests */ export interface HttpServerOptions { port?: number; onReady?: (url: string) => void; } /** * Start the HTTP server * @returns The port the server is listening on */ export declare function startHttpServer(options?: HttpServerOptions): number; /** * Stop the HTTP server */ export declare function stopHttpServer(): void; //# sourceMappingURL=server.d.ts.map