import type { LockfileObject } from '@pnpm/lockfile.fs'; interface DirDirEntry { entryType: 'directory'; entries: Record; } type DirEntry = { entryType: 'index'; depPath: string; } | { entryType: 'symlink'; target: string; } | DirDirEntry; export declare function makeVirtualNodeModules(lockfile: LockfileObject): DirEntry; export {};