import type { KeyValueCache } from '@apollo/utils.keyvaluecache'; export declare class UnboundedCache implements KeyValueCache { private cache; constructor(cache?: Map); get(key: string): Promise; set(key: string, value: T, { ttl }?: { ttl: number | null; }): Promise; delete(key: string): Promise; } //# sourceMappingURL=UnboundedCache.d.ts.map