import { ActionComponent } from './actions/index'; export declare class ActionFactory { /** * create action by action type. type in 'CoreActions' * * @param {string} type * @returns {ActionComponent} * @memberof ActionFactory */ create(type: string): ActionComponent; }