import { HitCacheDTO } from '../types'; import { IHitCacheImplementation } from './IHitCacheImplementation'; export declare const FS_HIT_PREFIX = "FS_DEFAULT_HIT_CACHE"; export declare class DefaultHitCache implements IHitCacheImplementation { cacheHit(hits: Record): Promise; lookupHits(): Promise>; flushHits(hitKeys: string[]): Promise; flushAllHits(): Promise; }