import { type FetchFunction } from '@pnpm/fetcher-base'; export interface CreateGitHostedTarballFetcher { ignoreScripts?: boolean; rawConfig: Record; unsafePerm?: boolean; } export declare function createGitHostedTarballFetcher(fetchRemoteTarball: FetchFunction, fetcherOpts: CreateGitHostedTarballFetcher): FetchFunction;