export interface ServerOptions { port: number | null; cwd: string; configPath: string; } export declare function startServer(options: ServerOptions): Promise<{ port: number; close: () => void; }>;