import { ICacheBackend } from '../types'; export declare class InMemoryCache implements ICacheBackend { __cache: { [objectType: string]: { [objectId: string]: any; }; }; get(objectType: string, objectId: string): Promise; set(objectType: string, objectId: string, data: any): Promise; }