import { Server } from 'node:http';
import express from 'express';
export interface HttpServerOptions {
    middlewares?: express.RequestHandler[];
}
export declare function startHttpServer(options?: HttpServerOptions): Promise<Server>;
//# sourceMappingURL=http.d.ts.map