/**
 * Enhanced User Experience Handler
 * Integrates real-world feedback improvements: enhanced error context and intelligent workflows
 * Based on comprehensive production feedback from genetic analysis project debugging
 */
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { ToolHandler } from './base-handler.js';
export declare class EnhancedUserExperienceHandler implements ToolHandler {
    tools: Tool[];
    private errorContextProvider;
    private workflowSequencer;
    constructor();
    handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>;
    /**
     * Analyze error with enhanced context and provide actionable remediation
     */
    private analyzeErrorWithContext;
    /**
     * Suggest intelligent debugging workflow based on context
     */
    private suggestDebuggingWorkflow;
    /**
     * Execute complete intelligent debugging workflow
     */
    private executeIntelligentWorkflow;
    /**
     * Provide session recovery guidance
     */
    private getSessionRecoveryGuidance;
    /**
     * Auto-detect framework and suggest debugging approach
     */
    private detectFrameworkAndSuggestApproach;
}
export default EnhancedUserExperienceHandler;
//# sourceMappingURL=enhanced-user-experience-handler.d.ts.map