import type { PnpmProjectParseOptions } from '../types'; import type { PackageJsonBase } from '../types'; import { PnpmLockfileParser } from './lockfile-parser/lockfile-parser'; export declare const buildDepGraphPnpm: (lockFileParser: PnpmLockfileParser, pkgJson: PackageJsonBase, options: PnpmProjectParseOptions, importer?: string) => Promise;