import http from "node:http"; export interface ServerOptions { port: number; dataDir: string; dbPath: string; } export declare function startServer(opts: ServerOptions): Promise;