import type { IFileSystem } from "../../types"; import type { DownloaderRegistry } from "./registry"; import type { CommandRunner } from "./types"; export interface GitDownloaderDeps { fs?: IFileSystem; exec?: CommandRunner; } export declare function registerGitDownloader(registry: DownloaderRegistry, deps?: GitDownloaderDeps): void;