import http from 'node:http'; export interface ServerInfo { close: () => Promise; port: number; } export default function startServer(requestHandler: (req: http.IncomingMessage, res: http.ServerResponse) => void, { port }?: { port?: number | undefined; }): Promise; //# sourceMappingURL=startServer.d.ts.map