export declare class VideoEventTypes {
    static readonly TimeUpdate = "timeupdate";
    static readonly LoadedMetadata = "loadedmetadata";
    static readonly FullScreenChange = "fullscreenchange";
    static readonly Ended = "ended";
    static readonly LeavePictureInPicture = "leavepictureinpicture";
    static readonly EnterPictureInPicture = "enterpictureinpicture";
    static readonly Pause = "pause";
    static readonly Play = "play";
    static readonly CanPlay = "canplay";
    static readonly Error = "error";
}
