import type { TextAnalyzer, PhonemeToken } from '../interfaces'; /** * Base analyzer that converts text using a dictionary mapping. * Each matching character sequence is converted into an array of phonemes. */ export declare abstract class DictionaryAnalyzer implements TextAnalyzer { protected abstract dictionary: Record; analyze(text: string): PhonemeToken[][]; }