import type * as http from 'node:http'; export declare class HmrServer { private wss; private clients; constructor(); /** Attach to an existing HTTP server — shares the same port, no extra port needed. */ attach(server: http.Server): void; broadcast(message: Record): void; close(): Promise; }