import type { FetchFunction } from '@pnpm/fetching.fetcher-base'; import type { StoreIndex } from '@pnpm/store.index'; export interface CreateGitHostedTarballFetcher { ignoreScripts?: boolean; storeIndex: StoreIndex; unsafePerm?: boolean; } export declare function createGitHostedTarballFetcher(fetchRemoteTarball: FetchFunction, fetcherOpts: CreateGitHostedTarballFetcher): FetchFunction;