interface ServerOptions { port: number; projectPath: string; } export declare function startServer(options: ServerOptions): Promise; export {};