import type { StepEvent } from '../workflow/types.js'; interface DashboardServer { broadcast(event: StepEvent): void; close(): void; port: number; /** Returns the bound host:port, or null if not listening. */ address(): { address: string; port: number; } | null; } export declare function getDashboardServer(port?: number): DashboardServer; export {}; //# sourceMappingURL=server.d.ts.map