/// import Pronunciation from "../../../types/resources/pronunciation"; interface Props { loading: boolean; pronunciation: Pronunciation; tooltipId?: string; } declare const ShareRecording: ({ loading, pronunciation, tooltipId, }: Props) => JSX.Element; export default ShareRecording;