import type { LockfileIntegrity } from "./types.js"; /** Parse pnpm v5-v10 lockfile package records without introducing a YAML dependency. */ export declare function parsePnpmIntegrity(text: string, packageName: string, version: string): string | undefined; export declare function parseYarnIntegrity(text: string, packageName: string, version: string): string | undefined; export declare function findLockfileIntegrity(projectRoot: string, packageName: string, version: string): Promise; //# sourceMappingURL=lockfile.d.ts.map