import { LitElement } from "lit"; export declare class VideoCues extends LitElement { static styles: import("lit").CSSResult; /** * Indicates whether the video player is in idle mode. */ idle: boolean; /** * The currently active text track (e.g., subtitles or captions). */ activeTextTrackId: string; /** * An array of cues or subtitles to be displayed during video playback. */ cues: string[]; /** * Indicates whether the device is an iOS device. */ isIos: true; /** * Indicates whether the video player is in fullscreen mode. */ isFullscreen: false; render(): import("lit").TemplateResult[]; }