/** * @interface GapAnalysisConfig * @description Configuration for Gap Analysis and Remediation. */ export interface GapAnalysisConfig { claudeFlowFeatureSet: string[]; performanceTargets: { [metric: string]: number; }; } /** * @interface GapAnalysisOperations * @description Defines operations for identifying and remediating gaps in features and performance. */ export interface GapAnalysisOperations { analyzeFeatureParity(): Promise; identifyPerformanceGaps(): Promise; implementAutomatedRemediation(gapAnalysis: any): Promise; } /** * @class GapAnalyzer * @description Identifies missing components, performance shortfalls, and implements automated remediation. */ export declare class GapAnalyzer implements GapAnalysisOperations { private config; private logger; constructor(config: GapAnalysisConfig); /** * Compares gemini-flow capabilities against claude-flow feature set. * @returns {Promise} Analysis results including missing features. */ analyzeFeatureParity(): Promise; /** * Benchmarks actual performance against targets and identifies bottlenecks. * @returns {Promise} Performance gap analysis results. */ identifyPerformanceGaps(): Promise; /** * Implements automated remediation for identified gaps (conceptual). * @param {any} gapAnalysis Results from feature and performance gap analysis. * @returns {Promise} */ implementAutomatedRemediation(gapAnalysis: any): Promise; } //# sourceMappingURL=gap-analysis.d.ts.map