import { Fetcher, FetchOptions, MinimalFetchOptions } from './Fetcher'; import { Locator } from './types'; export declare class MultiFetcher implements Fetcher { private readonly fetchers; constructor(fetchers: Array); supports(locator: Locator, opts: MinimalFetchOptions): boolean; getLocalPath(locator: Locator, opts: FetchOptions): import("../../yarnpkg-fslib/sources").PortablePath | null; fetch(locator: Locator, opts: FetchOptions): Promise; private tryFetcher; private getFetcher; }