import { Joi } from '../helpers'; export declare const STOP_RECOGNITION = "VOICE_TO_TEXT/STOP_RECOGNITION"; export declare const stopRecognitionActionSchema: Joi.ObjectSchema; export interface IStopRecognitionAction { type: typeof STOP_RECOGNITION; payload: { conversationId: string; }; } export declare const stopRecognition: import("../helpers").IActionCreator;