import { Joi } from '../helpers'; export declare const UTTERANCE: "SENTIENCE/UTTERANCE"; export interface IUtterancePayload { message: string; messageId: string; conversationId: string; consoleId: string; organisationId: string; recordingId: string; timestamp: number; engine?: string; } export declare const utterancePayload: Joi.ObjectSchema; export interface IUtteranceAction { type: typeof UTTERANCE; payload: IUtterancePayload; } export declare const utteranceActionSchema: Joi.ObjectSchema; export declare const utterance: import("../helpers").ITopicBoundActionCreator;