import type { IErrorInfo, IErrorDetails } from '../errors'; import { Joi } from '../helpers'; export declare const ERROR = "APPS/ERROR"; export declare const errorActionSchema: Joi.ObjectSchema; export interface IErrorAction { type: typeof ERROR; payload: IErrorInfo; } export declare const error: import("../helpers").IActionCreator;