import React from "react"; import Pronunciation from "../../../types/resources/pronunciation"; import { NameTypes } from "../../../types/resources/name"; import { NameOwner } from "gpdb-api-client"; interface Props { pronunciations: Pronunciation[]; name: string; type: NameTypes; owner?: NameOwner; canRecord: boolean; canUserResponse: boolean; reload: (type: NameTypes) => void; onRecorderClick: (name: string, type: NameTypes, pronunciation?: Pronunciation) => void; isRecorderOpen?: boolean; } declare const _default: React.MemoExoticComponent<{ ({ pronunciations, name, type, owner, canRecord, canUserResponse, reload, onRecorderClick, isRecorderOpen, }: Props): JSX.Element; defaultProps: { canRecord: boolean; canUserResponse: boolean; }; }>; export default _default;