import { ClientStorage } from './clientstorage'; import { AnyJson } from './../json/json.utils'; import { UrlConfig } from './../../api'; export declare class ClientStorageService implements ClientStorage { get: (aKey: string) => AnyJson; put: (aKey: string, aValue: AnyJson) => void; constructor(aUrlsService: UrlConfig, aWindow?: Window); }