import { Store } from "./store"; export declare class MemoryStore implements Store { private cache; get(key: string): T | null; set(key: string, value: T | null): T | null; remove(key: string): void; }