import { MouseEventHandler } from "react"; import Pronunciation from "../../../../types/resources/pronunciation"; export interface Props { fullName: string; pronunciation?: Pronunciation; showRecordAction?: boolean; isRecorderOpen?: boolean; onRecorderOpen?: MouseEventHandler; autoplay?: boolean; loading?: boolean; } declare const FullNameLine: ({ fullName, pronunciation, showRecordAction, isRecorderOpen, onRecorderOpen, autoplay, loading, }: Props) => JSX.Element; export default FullNameLine;