type Context = Record; /** Verifies installed resolution against the selected standalone frozen lock. * This is a graph/version check; the separate frozen installer receipt binds * registry integrity. Package payload attestation is not inferred from version. */ export declare function verifyProducerDependencies(packageRoot: string): { status: string; package: { name: string; version: string; }; manifestSha256: string; lockSha256: string; nodeCount: number; edgeCount: number; nodes: { lockKey: string; name: string; version: string; manifestSha256: string; relativePath: string; context: Context; }[]; edges: { from: string; name: string; to: string | null; optionalAbsent?: boolean; }[]; }; export {};