import Joi from 'joi'; import type { IActionCreator, IAnyAction, ITopicBoundActionCreator } from '../helpers'; export declare function actionSchemaByType(type: string): Joi.ObjectSchema | null; export declare function allActionCreators(): Array | ITopicBoundActionCreator>; export declare function registerAllActions(moduleRaw: { [key: string]: {}; }): void; export declare function getAllRegisteredActionTypes(): string[];