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