/**
 * Test Orchestrator - Testing and validation workflows
 *
 * Coordinates test generation, execution, coverage analysis, and regression detection
 */
import { OrchestratorResult } from '../types/orchestrator-types.js';
export interface TestTask {
    task?: string;
    description?: string;
    scope?: 'unit' | 'integration' | 'e2e' | 'all';
    target?: string;
    coverage?: {
        minimum?: number;
        branches?: boolean;
    };
}
export declare class TestOrchestrator {
    private subAgents;
    orchestrate(task: TestTask): Promise<OrchestratorResult>;
    private analyzeTask;
    private createExecutionPlan;
    private executePlan;
    private getMockDataForAction;
    private synthesizeResults;
    private createSummary;
    private generateSuggestions;
    private determineNextSteps;
}
//# sourceMappingURL=test-orchestrator.d.ts.map