import * as http from "node:http"; import { HttpServerOptions } from "./types.js"; /** ergonomic improvement over node's stock http server */ export declare class HttpServer { stock: http.Server; constructor(options: HttpServerOptions); listen(port: number, host?: string): Promise; close(): void; }