import { type VoiceStartListeningOptions } from '../types/main'; interface UseVoiceProps extends VoiceStartListeningOptions { /** Whether to update the transcript on partial results. Defaults to false. */ enablePartialResults?: boolean; } export declare function useVoice(props?: UseVoiceProps): { available: boolean; listening: boolean; transcript: string; startListening: () => Promise; stopListening: () => Promise; resetTranscript: () => void; }; export {}; //# sourceMappingURL=use-voice.d.ts.map