/**
 * QA Orchestrator - Quality Assurance workflows
 *
 * Handles code review, security scanning, compliance checking, and documentation validation
 */
import { OrchestratorResult } from '../types/orchestrator-types.js';
export interface QATask {
    task?: string;
    description?: string;
    scope?: 'code-review' | 'security' | 'compliance' | 'documentation' | 'full';
    target?: string;
    standards?: string[];
    severity?: 'strict' | 'balanced' | 'lenient';
}
export declare class QAOrchestrator {
    private subAgents;
    orchestrate(task: QATask): Promise<OrchestratorResult>;
    private analyzeTask;
    private createExecutionPlan;
    private executePlan;
    private getMockDataForAction;
    private synthesizeResults;
    private createSummary;
    private generateSuggestions;
    private calculateQAScore;
    private determineNextSteps;
}
//# sourceMappingURL=qa-orchestrator.d.ts.map