import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/title/element.d.ts /** * Displays the resolved content title. * * The element owns its text content. Set the title through the player's `content-title` attribute. */ declare class TitleElement extends UIElement { #private; static readonly tagName = "media-title"; connectedCallback(): void; protected update(changed: PropertyValues): void; } //#endregion export { TitleElement }; //# sourceMappingURL=element.d.ts.map