import { RefObject } from 'react'; declare const useVideoControls: (videoRef: RefObject, videoUrl: string, autoplay?: boolean) => { isPaused: boolean; isMuted: boolean; toggleMute: () => void; playVideo: () => Promise; pauseVideo: () => void; }; export default useVideoControls;