import { ReactNode } from "react"; import Pronunciation from "../../../types/resources/pronunciation"; import { NameTypes } from "../../../types/resources/name"; interface Props { children: ReactNode; name: string; pronunciations: Pronunciation[]; reload: (type: NameTypes) => void; onRecorderClick: (name: string, type: NameTypes, pronunciation?: Pronunciation) => void; canPronunciationCreate: boolean; } declare const FullName: (props: Props) => JSX.Element; export default FullName;