import { Joi } from '../helpers'; export declare const START = "VOICE_TO_TEXT/START"; export declare const startActionSchema: Joi.ObjectSchema; export interface IStartAction { type: typeof START; payload: { conversationId: string; }; } export declare const start: import("../helpers").IActionCreator;