export interface CacheStore { get(key: string): Promise; set(key: string, value: unknown, seconds?: number): Promise; delete(key: string): Promise; clear(): Promise; } export declare class MemoryCacheStore implements CacheStore { private store; get(key: string): Promise; set(key: string, value: unknown, seconds?: number): Promise; delete(key: string): Promise; clear(): Promise; } export declare const defaultCacheStore: MemoryCacheStore;