import { Fetcher, FetchOptions, MinimalFetchOptions } from '@yarnpkg/core'; import { Locator } from '@yarnpkg/core'; export declare class TarballHttpFetcher implements Fetcher { supports(locator: Locator, opts: MinimalFetchOptions): boolean; getLocalPath(locator: Locator, opts: FetchOptions): null; fetch(locator: Locator, opts: FetchOptions): Promise<{ packageFs: import("/home/runner/work/berry/berry/packages/yarnpkg-fslib").FakeFS; releaseFs: () => void; prefixPath: import("/home/runner/work/berry/berry/packages/yarnpkg-fslib").PortablePath; checksum: string | null; }>; fetchFromNetwork(locator: Locator, opts: FetchOptions): Promise; }