import type { WebSocketServer } from "ws"; export interface HttpServerOptions { port: number; token: string; wss?: WebSocketServer; /** Injectable broadcaster — used in tests to avoid ESM singleton isolation issues. */ broadcaster?: { broadcast: (event: import("./ws-broadcaster.js").WsEvent) => void; }; } export declare function createHttpServer(options: HttpServerOptions): { app: import("express-serve-static-core").Express; }; //# sourceMappingURL=http-server.d.ts.map