import { type DependencyManifest } from '@pnpm/types'; /** * Attempts to read a package manifest from the content-addressable store (CAFS) * using its integrity hash. Returns `undefined` if the manifest cannot be read. */ export declare function readManifestFromCafs(storeDir: string, pkg: { integrity: string; name: string; version: string; }): DependencyManifest | undefined;