import type { GitFetcher } from '@pnpm/fetcher-base';
export interface CreateGitFetcherOptions {
    gitShallowHosts?: string[];
    rawConfig: Record<string, unknown>;
    unsafePerm?: boolean;
    ignoreScripts?: boolean;
}
export declare function createGitFetcher(createOpts: CreateGitFetcherOptions): {
    git: GitFetcher;
};
