import { Observable, Subject } from 'rxjs'; import { StorageStrategy } from '../lib/core/interfaces/storageStrategy'; export declare const StorageStrategyStubName: string; export declare class StorageStrategyStub implements StorageStrategy { readonly keyChanges: Subject; store: any; _available: boolean; readonly name: string; constructor(name?: string); readonly isAvailable: boolean; get(key: string): Observable; set(key: string, value: any): Observable; del(key: string): Observable; clear(): Observable; }