import { type DepsStateCache } from '@pnpm/calc-dep-state'; import { type DepHierarchy, type DependenciesGraph } from '@pnpm/deps.graph-builder'; import { type StoreController } from '@pnpm/store-controller-types'; import { type AllowBuild } from '@pnpm/types'; export declare function linkHoistedModules(storeController: StoreController, graph: DependenciesGraph, prevGraph: DependenciesGraph, hierarchy: DepHierarchy, opts: { allowBuild?: AllowBuild; depsStateCache: DepsStateCache; disableRelinkLocalDirDeps?: boolean; force: boolean; ignoreScripts: boolean; lockfileDir: string; preferSymlinkedExecutables?: boolean; sideEffectsCacheRead: boolean; }): Promise;