import { Scraper } from './Scraper'; export declare class ScraperArray extends Array> { constructor(length: number); constructor(...elements: Array>); readonly domains: string[]; getAllApplicable(url: string): Array>; getFirstApplicable(url: string): Scraper | undefined; allApplicable(url: string): boolean; getByName(name: string): Scraper | undefined; getByDomain(domain: string): Scraper | undefined; }