import { Manager, INewable, Initializable } from "./Factory"; export declare class ActionsCreatorManager extends Manager { /** * Get an instance of the action creator. Use action creator in cases where data needs * to be fetched from source before invoking an action. */ static GetActionCreator(actionCreatorClass: INewable, instanceId?: string): T; static CreateActionCreator(actionCreatorClass: INewable, instanceId: string, args: U): T; static DeleteActionCreator(actionCreatorClass: INewable, instanceId?: string): void; static dispose(): void; }