import { CustomVideoElement } from 'custom-media-element'; import Mpegts from 'mpegts.js'; declare class MpegtsVideoElement extends CustomVideoElement { #private; constructor(); attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void; api: Mpegts.Player | null; mpegtsConfig: Mpegts.Config; mpegtsLoggingConfig: Partial; load(): Promise; disconnectedCallback(): void; } export default MpegtsVideoElement; export { }