import { Manager, INewable, Initializable } from "./Factory"; export declare class ActionsHubManager extends Manager { /** * Get an instance of actions hub. Use actions hub when there is no logic that needs to be performed as part of actions. */ static GetActionsHub(actionsHubClass: INewable, instanceId?: string): T; /** * Get all instances of the actions hub for the class. This is used by unit tests to raise actions that changes stores deep in the * hierarchy. */ static GetAllActionsHub(actionsHubClass: INewable): T[]; static dispose(): void; }