import { InjectionToken } from '@angular/core'; import { StorageService } from './storage.service'; export declare function sessionStorageFactory(): StorageService; /** Injection token for the session storage service. */ export declare const SESSION_STORAGE: InjectionToken>; export declare function localStorageFactory(): StorageService; /** Injection token for the local storage service. */ export declare const LOCAL_STORAGE: InjectionToken>;