import { FormatterPlugin, PluginContext, AnalysisResult, OutputSection } from '../../types'; export declare class HtmlFormatter implements FormatterPlugin { readonly name = "html-formatter"; readonly version = "1.0.0"; readonly description = "Formats analysis results as interactive HTML report"; readonly outputFormat: "html"; private logger; initialize(context: PluginContext): Promise; format(result: AnalysisResult, sections: OutputSection[]): Promise; private generateMissingKeysSection; private generateUnusedKeysSection; private generateDynamicPatternsSection; private generateUsedKeysSection; } //# sourceMappingURL=html-formatter.d.ts.map