/** * Exposes functionality to record speech and transcribe it using the Tambo API. * @returns An object with: * - startRecording: A function to start recording audio and reset the current transcript. * - stopRecording: A function to stop recording audio and automatically kick off transcription. * - isRecording: A boolean indicating if the user is recording audio. * - isTranscribing: A boolean indicating if the audio is being transcribed. * - transcript: The transcript of the recorded audio. * - transcriptionError: An error message if the transcription fails. * - mediaAccessError: An error message if microphone access fails. */ export declare function useTamboVoice(): { startRecording: () => void; stopRecording: () => void; isRecording: boolean; mediaAccessError: string | null; isTranscribing: boolean; transcript: string | null; transcriptionError: string | null; }; //# sourceMappingURL=use-tambo-voice.d.ts.map