import { HT_IStorageService } from './ht_storage.service.interface'; export declare class HT_TransientStorageService implements HT_IStorageService { private store; getItem(key: string): any; removeItem(key: string): void; setItem(key: string, value: string): void; normaliseKeysToLowerCase(): void; }