/** * Wave group orchestrator — main scheduling loop. * * Synchronous from the MCP tool handler's perspective (blocks until * all agents finish or the 30-minute timeout fires). * * Integrates with Phase 1 primitives: * - CodexProcessRunner for spawning * - taskStore for per-agent task records * - taskEventBus for event routing * - NotificationThrottle via progress collector */ import { type OrchestratorOptions, type OrchestratorResult } from './types.js'; export declare function orchestrate(opts: OrchestratorOptions): Promise; //# sourceMappingURL=orchestrator.d.ts.map