/// import Name, { NameTypes } from "../../../types/resources/name"; import Pronunciation from "../../../types/resources/pronunciation"; interface Props { canRecordingRequestCreate: boolean; canUserResponse: boolean; canPronunciationCreate: boolean; canRecordingRequestFind: boolean; openRecorder: (name: string, type: NameTypes, pronunciation?: Pronunciation) => void; reloadName: (type: NameTypes) => void; name: Name; pronunciations: Pronunciation[]; } declare const SingleName: (props: Props) => JSX.Element; export default SingleName;