/** * Core Hub WebSocket - Main exports * * This module provides the core infrastructure for the Subconscious Router: * - WebSocketServer: High-performance WebSocket server with connection management * - AgentRegistry: Dynamic agent registration and capability tracking * - Router: I.A.P. message routing and task orchestration */ export { WebSocketServer } from './WebSocketServer'; export { AgentRegistry } from './AgentRegistry'; export { Router } from './router'; export { OrchestrationEngine } from './OrchestrationEngine'; export { SubconsciousEngine } from './SubconsciousEngine'; export { DashboardBroadcaster } from './DashboardBroadcaster'; //# sourceMappingURL=index.d.ts.map