interface Options { lang?: string; continuous?: boolean; } declare const useVoiceToText: ({ lang, continuous }?: Options) => { startListening: () => void; stopListening: () => void; transcript: string; reset: () => void; }; export default useVoiceToText;