/// import { NameTypes } from "../../../types/resources/name"; import { NameOwner } from "gpdb-api-client"; import Pronunciation from "../../../types/resources/pronunciation"; interface Props { name: string; type: NameTypes; owner?: NameOwner; onRecorderClick?: (name: string, type: NameTypes, pronunciation?: Pronunciation) => void; canRecordingRequestCreate: boolean; canRecordingRequestFind: boolean; canPronunciationCreate: boolean; isRecorderOpen?: boolean; } declare const AbsentName: ({ name, type, owner, onRecorderClick, canPronunciationCreate, canRecordingRequestCreate, canRecordingRequestFind, isRecorderOpen, }: Props) => JSX.Element; export default AbsentName;