export declare const isVideoPlaying: (video: HTMLVideoElement) => boolean; export declare const skipToEnd: (video: HTMLVideoElement) => void; export declare const replay: (video: HTMLVideoElement) => void; export declare const debugEvents: (video: HTMLVideoElement) => () => void; export declare const disbaledVideoProps: { preload: string; autoplay: boolean; controls: boolean; src: string; muted: boolean; };