/** * Response containing all pronunciation dictionary IDs for the authenticated user. */ export interface PronunciationDictionaryGetResponse { /** Total number of pronunciation dictionaries owned by the user. */ dictionary_count: number; /** List of dictionary IDs. */ dictionaries: string[]; }