import { LitElement } from "lit"; export declare class VideoTimer extends LitElement { static styles: import("lit").CSSResult; /** * Specifies the format in which the time information should be displayed by the video timer component. * `left`: Displays the time remaining until the end of the video. * `past`: Displays the time elapsed since the beginning of the video. * `total`: Displays the total duration of the video. */ format: "left" | "past" | "total"; duration: number; currentTime: number; get time(): number; render(): import("lit").TemplateResult<1>; }