/**
 * Debug Orchestrator - Real Implementation
 * High-level debugging coordination with actual sub-agent execution
 */
import { OrchestratorResult } from '../types/orchestrator-types.js';
export interface DebugTask {
    task?: string;
    description?: string;
    url?: string;
    errorMessage?: string;
    symptoms?: string[];
    context?: any;
    handler?: any;
}
export declare class DebugOrchestrator {
    name: string;
    description: string;
    private subAgentExecutor?;
    private subAgents;
    orchestrate(task: DebugTask): Promise<OrchestratorResult>;
    private analyzeTask;
    private createExecutionPlan;
    private executePlan;
    private executePlanFallback;
    private synthesizeResults;
    private createSummary;
    private determineNextSteps;
    private calculateConfidence;
    private prioritizeSuggestions;
    private getSuggestionPriority;
    private estimateEffort;
}
//# sourceMappingURL=debug-orchestrator-real.d.ts.map