/// import Pronunciation from "../../../types/resources/pronunciation"; import { NameOwner } from "gpdb-api-client"; interface Props { name: string; owner: NameOwner; pronunciation: Pronunciation; onCustomAttributesSaved: () => void; } declare const MyInfo: ({ name, owner, pronunciation, onCustomAttributesSaved, }: Props) => JSX.Element; export default MyInfo;