import { NativeHlsVideo } from "../../media/native-hls-video/adapter.js"; import "../../media/native-hls-video/index.js"; //#region src/define/media/native-hls-video.d.ts /** Browser-native HLS media element registered as ``. */ declare class NativeHlsVideoElement extends NativeHlsVideo { static readonly tagName = "native-hls-video"; } declare global { interface HTMLElementTagNameMap { [NativeHlsVideoElement.tagName]: NativeHlsVideoElement; } } //#endregion export { NativeHlsVideoElement }; //# sourceMappingURL=native-hls-video.d.ts.map