import type { CacheBackend } from "./types"; declare class InMemoryCache implements CacheBackend { private store; get(key: string): Promise; set(key: string, value: unknown, ttlSeconds?: number): Promise; clear(): Promise; } export declare const inMemoryCache: InMemoryCache; export {}; //# sourceMappingURL=in-memory.d.ts.map