import { Cache } from '../cache.model';
export declare class StorageCache implements Cache {
readonly name: string;
private storage;
constructor(name: string, storage: Storage);
clear(): void;
evict(key: string): void;
get<T>(key: string): T;
put<T>(key: string, value: T): void;
}