import { IStorageItem } from '../interfaces/storage-typings';
export declare class StorageItem<T> {
    key: string;
    value: T;
    expiry?: number;
    constructor(entity: IStorageItem<T>);
}
