export declare class CacheItem {
    data: any;
    expiredOn?: Date;
    constructor(data: any, expiredOn?: Date);
}
