export declare abstract class Cache { abstract get(arg: any): any | null; abstract put(key: any, value: any): void; }