/**
 * Smart Workflow Orchestration Handler
 * Revolutionary AI-powered workflow automation system
 * Transforms AI-Debug from manual tool selection to intelligent workflow orchestration
 *
 * Key Innovation: Context-aware AI that understands developer intent and automatically
 * orchestrates optimal tool sequences instead of requiring manual tool selection
 */
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { BaseToolHandler } from './base-handler.js';
export declare class SmartWorkflowOrchestrationHandler extends BaseToolHandler {
    tools: Tool[];
    private workflows;
    private toolHandlers;
    constructor(toolHandlers?: Map<string, any>);
    private initializeWorkflows;
    handle(toolName: string, args: any, sessions?: Map<string, any>): Promise<any>;
    private executeSmartFlutterAnalysis;
    private executeSmartTDDWorkflow;
    private executeSmartPerformanceAnalysis;
    private executeSmartDebuggingWorkflow;
    private detectTestFramework;
    private getToolHandlers;
    private findHandlerByTool;
}
//# sourceMappingURL=smart-workflow-orchestration-handler.d.ts.map