import type { UnityContextPayload } from './unity-enrichment.js'; interface UnityParityCacheOptions { maxEntries?: number; } export declare function readUnityParityCache(storagePath: string, indexedCommit: string, symbolUid: string): Promise; export declare function upsertUnityParityCache(storagePath: string, indexedCommit: string, symbolUid: string, payload: UnityContextPayload, options?: UnityParityCacheOptions): Promise; export {};