import { LitElement, PropertyValues } from "lit"; declare const VideoControls_base: (new (...args: any[]) => import("../../mixins/DependentProps").WithDependentPropsInterface) & typeof LitElement; /** * @slot - Video-controls main content * */ export declare class VideoControls extends VideoControls_base { static styles: import("lit").CSSResult; /** * Indicates whether the video player is in idle mode. */ idle: boolean; /** * Indicates whether the video is currently playing. */ playing: boolean; /** * Indicates whether the video player is in fullscreen mode. */ fullscreen: boolean; /** * Indicates whether the video controls are customized. * If true, the controls are custom; if false, they are default. */ custom: boolean; private resizeObserver; connectedCallback(): void; protected firstUpdated(_changedProperties: PropertyValues): void; disconnectedCallback(): void; render(): import("lit").TemplateResult<1>; } export {};