import { ISource, Source } from 'source-scraper-core';
export interface IJWPlayerSource extends ISource {
    default: boolean;
    label: string;
    type: string;
    preload: string;
}
export declare class JWPlayerSource extends Source implements IJWPlayerSource {
    default: boolean;
    label: string;
    type: string;
    preload: string;
    constructor(source: IJWPlayerSource);
}
