import type { GitFetcher } from '@pnpm/fetching.fetcher-base'; import type { StoreIndex } from '@pnpm/store.index'; export interface CreateGitFetcherOptions { gitShallowHosts?: string[]; storeIndex: StoreIndex; unsafePerm?: boolean; userAgent?: string; ignoreScripts?: boolean; } export declare function createGitFetcher(createOpts: CreateGitFetcherOptions): { git: GitFetcher; };