export function useVideoPlayer({ videoRef, options, onReady, onFullScreen, onTimeUpdate, showAnnotations, annotations, }: {
    videoRef: any;
    options: any;
    onReady: any;
    onFullScreen: any;
    onTimeUpdate: any;
    showAnnotations: any;
    annotations?: any[] | undefined;
}): import("react").MutableRefObject<null>;
