interface Args { availablePort?: number; entryPoint: unknown; } /** * Create an HTTP server that calls into an exported `http.RequestListener`. * * This supports Express and Koa applications out of the box. */ export declare const runRequestListener: ({ availablePort, entryPoint, }: Args) => Promise; export {};