import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/error-dialog/element.d.ts declare class ErrorDialogElement extends UIElement { #private; static readonly tagName = "media-error-dialog"; constructor(); connectedCallback(): void; disconnectedCallback(): void; protected willUpdate(_changed: PropertyValues): void; protected update(_changed: PropertyValues): void; } //#endregion export { ErrorDialogElement }; //# sourceMappingURL=element.d.ts.map