import { LockPolicy } from "../../integrity.js"; type InstallAllOptions = { verbose?: boolean; silent?: boolean; lock?: LockPolicy; threads?: number; concurrency?: number; }; export declare function installAll({ verbose, silent, threads, concurrency, lock, }?: InstallAllOptions): Promise; export {};