/**
 * Debug Orchestrator - High-level debugging coordination
 *
 * This is the main entry point for all debugging tasks.
 * It analyzes the user's request and delegates to appropriate sub-agents.
 */
import { OrchestratorResult } from '../types/orchestrator-types.js';
export interface DebugTask {
    task?: string;
    description?: string;
    url?: string;
    errorMessage?: string;
    symptoms?: string[];
    context?: any;
}
export declare class DebugOrchestrator {
    private subAgents;
    orchestrate(task: DebugTask): Promise<OrchestratorResult>;
    private analyzeTask;
    private createExecutionPlan;
    private executePlan;
    private synthesizeResults;
    private createSummary;
    private determineNextSteps;
    private calculateConfidence;
}
//# sourceMappingURL=debug-orchestrator.d.ts.map