import { ExtractorPlugin, PluginContext, TranslationKey } from '../../types'; export declare class HtmlExtractor implements ExtractorPlugin { readonly name = "html-extractor"; readonly version = "1.0.0"; readonly description = "Extracts translation keys from HTML template files"; readonly supportedExtensions: string[]; private logger; initialize(context: PluginContext): Promise; extractKeys(filePath: string, content: string): Promise; private createTranslationKey; private isDynamicKey; } //# sourceMappingURL=html-extractor.d.ts.map