import { ReactiveElement } from "@videojs/element"; //#region src/presets/background/skin.d.ts declare function getTemplateHTML(): string; declare class BackgroundVideoSkinElement extends ReactiveElement { static readonly tagName = "background-video-skin"; static shadowRootOptions: ShadowRootInit; static getTemplateHTML: typeof getTemplateHTML; constructor(); } declare global { interface HTMLElementTagNameMap { [BackgroundVideoSkinElement.tagName]: BackgroundVideoSkinElement; } } //#endregion export { BackgroundVideoSkinElement }; //# sourceMappingURL=skin.d.ts.map