//#region src/react/useSpeechRecognition/useSpeechRecognitionCore.d.ts
interface SpeechRecognitionCoreOptions {
  onRecognitionError?: (error: any) => void;
  onRecognitionFinish?: (value: string) => void;
  onRecognitionStart?: () => void;
  onRecognitionStop?: () => void;
  onTextChange?: (value: string) => void;
}
//#endregion
export { SpeechRecognitionCoreOptions };