import Pronunciation from "../../types/resources/pronunciation"; import { NameTypes } from "../../types/resources/name"; export declare type PronunciationsState = { [t in NameTypes]: Pronunciation[]; }; export declare type UsePronunciationsReturn = { pronunciations: PronunciationsState; setPronunciations: (d: PronunciationsState) => void; updatePronunciationsByType: (type: NameTypes, data: Pronunciation[]) => void; }; export declare function usePronunciations(): UsePronunciationsReturn;