import Joi from 'joi'; export declare const STOP = "VOICE_TO_TEXT/STOP"; export declare const stopActionSchema: Joi.ObjectSchema; export interface IStopAction { type: typeof STOP; payload: { conversationId: string; }; } export declare const stop: import("../helpers").IActionCreator;