import { BasicCache } from "./BasicCache"; /** * In-memory cache, basically for testing */ export declare class MemoryCache extends BasicCache { private data; exists(key: string): Promise; get(key: string): Promise; set(key: string, value: any, ttl: number): Promise; delete(key: string): Promise; deleteAll(): Promise; }