import { LRUCache } from 'lru-cache'; import { QueryCache } from '../adapter/QueryCache'; export declare class CompilerCache extends QueryCache { protected readonly queryCache: LRUCache; protected readonly rbacCache: LRUCache; constructor({ maxQueryCacheSize, maxQueryCacheAge }: { maxQueryCacheSize: any; maxQueryCacheAge: any; }); getRbacCacheInstance(): LRUCache; getQueryCache(key: unknown): QueryCache; } //# sourceMappingURL=CompilerCache.d.ts.map