import { DataInfo, DataProvider, DataStorage } from '@narik/infrastructure'; import { Observable } from 'rxjs'; import { Injector } from '@angular/core'; import { NarikBaseDataStorage, StorageModel } from '../../base/narik-base-data-storage'; import * as i0 from "@angular/core"; export declare class SessionStorageDataProvider extends NarikBaseDataStorage implements DataProvider, DataStorage { key: string; order: number; supportAdd: boolean; belongsInChain: boolean; constructor(injector: Injector, validityLen: number); getStorageModel(dataInfo: DataInfo): Observable; isDataProviderFor(dataInfo: DataInfo): boolean; addItem(dataItmes: { dataInfo: DataInfo; data: any; }[]): Observable; clear(): Observable; removeItems(items: DataInfo[]): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }