import { ISource, Source } from 'sourcescrapper-core'; export interface IVidstreamingSource extends ISource { type: string; label: string; quality: undefined; resolution: undefined; codec: undefined; } export declare class VidstreamingSource extends Source implements IVidstreamingSource { type: string; label: string; codec: undefined; quality: undefined; resolution: undefined; constructor(source: IVidstreamingSource); }