/// import Pronunciation from "../../../types/resources/pronunciation"; import { NameOwner } from "gpdb-api-client"; export interface NameOption { key: string; value: string; owner?: NameOwner; } export interface Props { names: NameOption[]; pronunciation: Pronunciation; loading?: boolean; onSelect?: (NameOption: any) => PromiseLike; hideFullName?: boolean; setAutoplay: (arg: boolean) => void; } declare const FullNamesList: ({ names, pronunciation, onSelect, setAutoplay }: Props) => JSX.Element; export default FullNamesList;