import { VideoInfo } from '../PlayerChannel.js'; import { PlayerPlugin } from '../PlayerPlugin.js'; import { VideoFetcher } from './VideoFetcher.js'; export declare class GalleryFetcher implements VideoFetcher { static readonly ALLOWED_EXTENSIONS: string[]; /** * */ getInfoFromLink(playerPlugin: PlayerPlugin, filePath: string): Promise; /** * @override */ get(playerPlugin: PlayerPlugin, param: string): Promise; /** * @override */ search(): Promise; }