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/popup.d.ts /** Semantic popup that owns focus management and dialog transition completion. */ declare class DialogPopupElement extends ContextPartElement { #private; static readonly tagName = "media-dialog-popup"; protected readonly consumer: ContextConsumer<{ __context__: DialogContextValue; }, this>; disconnectedCallback(): void; protected update(changed: PropertyValues): void; } //#endregion export { DialogPopupElement }; //# sourceMappingURL=popup.d.ts.map