import { Duration } from 'luxon'; import { Cache } from './cache.provider'; export declare class MemoryCache implements Cache { private map; private timeouts; get(key: symbol): Promise; set(key: symbol, value: any, duration?: Duration): Promise; delete(key: symbol): Promise; clear(): Promise; private clearTimeout; } //# sourceMappingURL=memory.cache.d.ts.map