/**
 * Performance Orchestrator - Performance analysis and optimization
 *
 * Coordinates performance profiling, metrics collection, and optimization suggestions
 */
import { OrchestratorResult } from '../types/orchestrator-types.js';
export interface PerformanceTask {
    task?: string;
    description?: string;
    url?: string;
    targets?: {
        loadTime?: number;
        bundleSize?: number;
        memoryUsage?: number;
    };
}
export declare class PerformanceOrchestrator {
    private subAgents;
    orchestrate(task: PerformanceTask): Promise<OrchestratorResult>;
    private analyzeTask;
    private createExecutionPlan;
    private executePlan;
    private getMockDataForAction;
    private synthesizeResults;
    private createSummary;
}
//# sourceMappingURL=performance-orchestrator.d.ts.map