import { getTemplateHTML } from "./template.js"; import { Media } from "@videojs/media/dom"; //#region src/media/background-video/adapter.d.ts declare const BackgroundVideo_base: { new (): HTMLElement; prototype: HTMLElement; }; declare class BackgroundVideo extends BackgroundVideo_base { static shadowRootOptions: { mode: ShadowRootMode; }; static getTemplateHTML: typeof getTemplateHTML; static get observedAttributes(): string[]; constructor(); getMediaTarget(): Media | null; attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void; get target(): HTMLVideoElement | null; } //#endregion export { BackgroundVideo }; //# sourceMappingURL=adapter.d.ts.map