import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/dialog/close.d.ts /** Button that closes its owning dialog; the element itself takes `role="button"` and keyboard focus. */ declare class DialogCloseElement extends UIElement { #private; static readonly tagName: string; static properties: { disabled: { type: BooleanConstructor; }; }; disabled: boolean; connectedCallback(): void; disconnectedCallback(): void; protected update(_changed: PropertyValues): void; } //#endregion export { DialogCloseElement }; //# sourceMappingURL=close.d.ts.map