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