import { Duration } from 'luxon'; import { Cache } from './cache.provider'; export declare class CascadingCache implements Cache { private readonly caches; private local; constructor(localMem: Cache, localSvc: Cache, network: Cache, remote: Cache); get(key: symbol): Promise; set(key: any, value: any, duration?: Duration): Promise; delete(key: any): Promise; } //# sourceMappingURL=cascading.cache.d.ts.map