export declare class CacheStore {
    private data;
    get<T>(key: string): T;
    put<T>(key: string, value: T): boolean;
    delete(key: string): void;
    upsert<T>(key: string, value: T): void;
    update<T>(key: string, value: T): boolean;
}
export declare const Cache: CacheStore;
