import { ContextPartElement } from "../context-part-element.js"; import { DialogContextValue } from "./context.js"; import "../../index.js"; import { DialogState } from "@videojs/core"; import { PropertyValues } from "@videojs/element"; import { ContextConsumer } from "@videojs/element/context"; //#region src/ui/dialog/title.d.ts /** Text that labels its owning dialog. The element takes the `id` that the popup's `aria-labelledby` points to. */ declare class DialogTitleElement extends ContextPartElement { static readonly tagName: string; protected readonly consumer: ContextConsumer<{ __context__: DialogContextValue; }, this>; protected update(changed: PropertyValues): void; } //#endregion export { DialogTitleElement }; //# sourceMappingURL=title.d.ts.map