import { Context, CacheEntry } from './common'; import { Reporter } from './reporter'; export declare const CACHE_EMPTY: unique symbol; export declare function getCacheEntry({ key, cache }: Pick, 'key' | 'cache'>, report: Reporter): Promise | typeof CACHE_EMPTY>; export declare function getCachedValue(context: Context, report: Reporter, hasPendingValue: () => boolean): Promise;