/** * Web server for code-session-memory. * * Serves both the REST API and the built React SPA. * Launched via: npx code-session-memory web [--port ] */ export interface WebServerOptions { port: number; host: string; } export declare function startWebServer(options: WebServerOptions): Promise; //# sourceMappingURL=server.d.ts.map