import { ICacheItemPolicy } from "./cache-item-policy"; export declare class CacheItem { value: T; key: string; created: number; lastAccessed: number; policy: ICacheItemPolicy; constructor(key: string, value: T, policy?: ICacheItemPolicy); }