/**
 * AI Test Analysis Intelligence Module
 *
 * Phase 2 of the Modular Architecture refactoring for AI Test Enhancement Handler.
 * This module contains the test analysis and intelligence functionality, extracted
 * to further reduce the main handler size and improve separation of concerns.
 *
 * Contains 6 tools:
 * - analyze_test_health
 * - detect_stale_tests
 * - auto_fix_tests
 * - find_test_coverage_gaps
 * - generate_test_maintenance_report
 * - phoenix_analyze_events
 *
 * @module ai-test-analysis-intelligence
 * @since Cycle 18 - July 12, 2025
 */
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { AuditEngine } from '../audit-engine.js';
import { LocalDebugEngine } from '../local-debug-engine.js';
import { DebugSession } from '../types.js';
export declare class AITestAnalysisIntelligence {
    private auditEngine;
    private localEngine;
    constructor(auditEngine: AuditEngine, localEngine: LocalDebugEngine);
    getTools(): Tool[];
    handleTool(toolName: string, args: any, sessions: Map<string, DebugSession>): Promise<any>;
    private recommendTestEvolution;
    private analyzeCoverageGaps;
    private detectMissingScenarios;
    private analyzeProductionPatterns;
    private implementContinuousLearning;
    private enablePredictiveAnalysis;
    private analyzeTestEvolutionOpportunities;
    private generateEvolutionRecommendations;
    private performCoverageGapAnalysis;
    private identifySpecificGaps;
    private analyzeForMissingScenarios;
    private identifyMissingTestScenarios;
    private analyzeProductionErrorPatterns;
    private extractTestablePatterns;
    private initializeContinuousLearning;
    private deployContinuousLearning;
    private initializePredictiveAnalysis;
    private deployPredictiveAnalysis;
}
//# sourceMappingURL=ai-test-analysis-intelligence.d.ts.map