import { AbstractBundlePlugin } from '../../../../base/streaming/base/bundle/plugin'; import { DPlayer } from '../../../base/module/player'; declare global { interface MLYSpecDriverExtensions { DPlayerHlsPlugin: typeof DPlayerHlsPlugin; } } declare class DPlayerHlsPlugin extends AbstractBundlePlugin { static _isPublic: boolean; static _publicName: string; static register(dplayer: typeof DPlayer): void; protected static _register(dplayer: typeof DPlayer): void; } export { DPlayerHlsPlugin };