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