import { CacheType } from '../../core/enum/cache-type.enum'; import { PersistentCacheModel } from './persistent-cache-model'; import { PersistentCacheOptions } from './persistent-cache-options'; import { PersistentContainerModel } from './persistent-container-model'; export declare class PersistentStorage { private readonly cacheType; private readonly cache; private storage; constructor(cacheType: CacheType); getStorageItems(): PersistentCacheModel[]; setStorageItems(items: PersistentCacheModel[]): void; getContainerItems(): PersistentContainerModel[]; setContainerItems(items: PersistentContainerModel[]): void; private setItem; private getItem; }