export declare const useScreenRecorder: () => {
    isRecording: boolean;
    videoURL: string | null;
    error: string | null;
    recordedBlob: Blob | null;
    startRecording: () => Promise<void>;
    stopRecording: () => void;
    resetRecording: () => void;
};
