import { Joi } from '../helpers'; export declare const START_RECOGNITION = "VOICE_TO_TEXT/START_RECOGNITION"; export declare const startRecognitionActionSchema: Joi.ObjectSchema; export interface IStartRecognitionAction { type: typeof START_RECOGNITION; payload: { conversationId: string; }; } export declare const startRecognition: import("../helpers").IActionCreator;