export declare class KeyValueStoreService { private store; getItem(key: string): any; setItem(key: string, value: any): void; removeItem(key: string): void; resetStore(): void; }