import { VideoInfo } from '../PlayerChannel.js'; import { PlayerPlugin } from '../PlayerPlugin.js'; import { VideoFetcher } from './VideoFetcher.js'; export declare class IFrameFetcher implements VideoFetcher { static ALLOWED_SOURCES: string[]; /** * @override */ get(playerPlugin: PlayerPlugin, src: string): Promise; /** * @override */ search(): Promise; }