import { HlsConfig } from '../../../../../../../module/lib/hls'; import { AbstractHlsSourcePlugin, SpecHlsSourceProcessor } from '../../../../base/streaming/hls/source/plugin'; declare const DPlayerHlsSourcePlugin_base: typeof AbstractHlsSourcePlugin & import("../../../base/module/mixin").SpecDPlayerExtensionAbstractMixin; declare class DPlayerHlsSourcePlugin extends DPlayerHlsSourcePlugin_base { static _setup(): void; static handle(options: DPlayerHlsSourceProcessorOptions): SpecHlsSourceProcessor; } type DPlayerHlsSourceProcessorOptions = { url: string; element: HTMLMediaElement; hlsConfig: HlsConfig; }; export { DPlayerHlsSourcePlugin };