import type { TurboModule } from 'react-native'; type SpeechType = { EXTRA_LANGUAGE_MODEL: string; EXTRA_MAX_RESULTS: string; EXTRA_PARTIAL_RESULTS: string; REQUEST_PERMISSIONS_AUTO: string; RECOGNIZER_ENGINE: string; }; export interface Spec extends TurboModule { destroySpeech: (callback: (error: string) => void) => void; startSpeech: (locale: string, opts: SpeechType, callback: (error: string) => void) => void; stopSpeech: (callback: (error: string) => void) => void; cancelSpeech: (callback: (error: string) => void) => void; isSpeechAvailable: (callback: (isAvailable: boolean, error: string) => void) => void; getSpeechRecognitionServices(): Promise; isRecognizing: (callback: (Recognizing: boolean) => void) => void; addListener: (eventType: string) => void; removeListeners: (count: number) => void; } declare const _default: Spec; export default _default; //# sourceMappingURL=NativeVoiceAndroid.d.ts.map