import { Dependency } from "../../types.js"; type InstallDepsOptions = { verbose?: boolean; silent?: boolean; threads?: number; concurrency?: number; ignoreTransitive?: boolean; }; export declare function depKey(dep: Dependency, ignoreTransitive?: boolean): string; export declare function installDeps(deps: Dependency[], { verbose, silent, threads, concurrency, ignoreTransitive, }?: InstallDepsOptions, parentPkgPath?: string, visitedLocalDeps?: Set): Promise; export {};