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