/** * store.ts * @createdOn:01-Jan-2020 * @author:SmartChartsNXT * @description: This class was used to save state data in store. */ export declare class Store { private _state; constructor(initialState?: any); getState(): any; setStore(state: any): void; getValue(key: string): any; setValue(key: string, value: any): void; removeValue(key: string): void; } export default Store;