/** * The full pronunciation data for a dictionary. */ export interface PronunciationDictionaryData { /** Pronunciation mappings organized by language code (e.g. `hi-IN`, `en-IN`). Each language maps words to their custom pronunciations. */ pronunciations: Record>; }