import type { DependencyGraphSnapshot } from "../models.js"; export type DetectedLock = { kind: "npm"; path: string; } | { kind: "pnpm"; path: string; } | { kind: "yarn"; path: string; } | { kind: "none"; path?: undefined; }; export declare function detectLockfile(rootDir: string): Promise; export declare function loadLockfileGraph(rootDir: string): Promise<{ graph: DependencyGraphSnapshot; lock: DetectedLock; }>; //# sourceMappingURL=load-lockfile.d.ts.map