/// interface VoiceRecorder { setInputMsg: (msg: string) => void; tapToSpeak: boolean; includeDiv?: boolean; showVoiceRecorder?: boolean; delayBetweenDialogs?: number; handleVoiceRecorder?: () => void; styles?: object; primaryColor: string; primaryDarkColor: string; } declare const VoiceRecorder: React.FC; export default VoiceRecorder;