interface ServerOptions { port?: number; hostname?: string; } declare function startServer(opts?: ServerOptions): Promise; export { type ServerOptions, startServer };