import { RECORD_STATUS } from './status';
export declare const useAudioRecorder: () => {
    startRecording: () => void;
    stopRecording: () => void;
    pauseRecording: () => void;
    resumeRecording: () => void;
    status: RECORD_STATUS;
    audioResult: string;
    errorMessage: string;
    timer: number;
};
