import { type RefObject } from 'react'; export type usePausePlayHook = { toggle: () => void; icon: JSX.Element; label: string; }; export declare const usePausePlay: (videoRef: RefObject) => usePausePlayHook;