import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/time-slider/chapters.d.ts /** * Clones a light-DOM template once per normalized chapter range. * * The required template must contain exactly one HTML root element. When no chapter cues are available, the template is * cloned once for a full-duration range. */ declare class TimeSliderChaptersElement extends UIElement { #private; static readonly tagName = "media-time-slider-chapters"; connectedCallback(): void; protected update(_changed: PropertyValues): void; } //#endregion export { TimeSliderChaptersElement }; //# sourceMappingURL=chapters.d.ts.map