import type { Server } from 'node:http'; import type { Http2SecureServer, Http2Server } from 'node:http2'; type HttpServer = Http2SecureServer | Http2Server | Server; type Options = { port: number; }; export declare function createAndStartServer(options: Options): Promise; export declare function stopServer(server: HttpServer): Promise; export {}; //# sourceMappingURL=entry-point.d.ts.map