export interface ICache { Get(key: string): any; Set(key: string, value: any): void; } export declare class InMemoryCache implements ICache { cache: { [key: string]: string; }; Get(key: string): any; Set(key: string, value: string): void; } export declare class LocalStorageCache implements ICache { Get(key: string): any; Set(key: string, value: any): void; }