1 | import type { PnpmProjectParseOptions } from '../types';
|
2 | import type { PackageJsonBase } from '../types';
|
3 | import { PnpmLockfileParser } from './lockfile-parser/lockfile-parser';
|
4 | export declare const buildDepGraphPnpm: (lockFileParser: PnpmLockfileParser, pkgJson: PackageJsonBase, options: PnpmProjectParseOptions, importer?: string) => Promise<import("@snyk/dep-graph").DepGraph>;
|