import { Observable } from 'rxjs'; export declare class SessionStorageService { constructor(); delete(key: string): Observable; get(key: string): Observable; post(key: string, value: any): Observable; put(key: string, value: any): Observable; }