///
import Pronunciation from "../../../../types/resources/pronunciation";
import { NameOwner } from "gpdb-api-client";
export interface NameOption {
key: string;
value: string;
owner?: NameOwner;
}
export interface Props {
pronunciation: Pronunciation;
name: Omit;
loading: boolean;
isRecorderOpen: boolean;
onRecorderOpen: () => void;
showRecordAction: boolean;
myInfoHintShow: boolean;
canCreateSelfRecording: boolean;
}
declare const MyRecording: ({ pronunciation, name, loading, isRecorderOpen, onRecorderOpen, showRecordAction, }: Props) => JSX.Element;
export default MyRecording;