import Store from './store'; /** * storeManager.ts * @createdOn:31-Dec-2019 * @author:SmartChartsNXT * @description: This is a service class that will manage the state of multiple store. */ declare class StoreManager { private _storeCollection; constructor(); createStore(storeId?: string, initialState?: {}): string; getStore(storeId: string): Store; } declare const _default: StoreManager; export default _default;