/** * Response returned after successfully creating a pronunciation dictionary. */ export interface PronunciationDictionaryResponse { /** Unique identifier for the created dictionary (e.g. `p_5cb7faa6`). Use this as the `dict_id` parameter in text-to-speech requests. */ dictionary_id: string; }