/** * Agentic QE v3 - Agent Coordinator * Manages agent lifecycle with max 15 concurrent agents limit */ import { AgentStatus, Result } from '../shared/types'; import { AgentCoordinator, AgentSpawnConfig, AgentFilter, AgentInfo } from './interfaces'; export declare class DefaultAgentCoordinator implements AgentCoordinator { private agents; private maxAgents; constructor(maxAgents?: number); spawn(config: AgentSpawnConfig): Promise>; getStatus(agentId: string): AgentStatus | undefined; listAgents(filter?: AgentFilter): AgentInfo[]; stop(agentId: string): Promise>; getActiveCount(): number; canSpawn(): boolean; dispose(): Promise; markCompleted(agentId: string): void; markFailed(agentId: string): void; cleanup(ttlMs?: number): number; } //# sourceMappingURL=agent-coordinator.d.ts.map