import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/slider/value.d.ts /** Writes the formatted current or pointer slider value into its own text content, replacing any children. */ declare class SliderValueElement extends UIElement { #private; static readonly tagName = "media-slider-value"; static properties: { type: { type: StringConstructor; }; }; type: 'current' | 'pointer'; connectedCallback(): void; protected update(_changed: PropertyValues): void; } //#endregion export { SliderValueElement }; //# sourceMappingURL=value.d.ts.map