import { LitElement } from "lit"; export declare class VideoProgress extends LitElement { static styles: import("lit").CSSResult; /** * The current value of the progress bar. * Should be a number between 0 and 100. */ value: number; /** * Indicates whether the progress bar is in a loading state. */ loading: boolean; render(): import("lit").TemplateResult<1>; }