import type { IMessageShape } from './message'; import { Joi } from '../helpers'; export declare const NEW_MESSAGE: "DIALOGUE/NEW_MESSAGE"; export declare const newMessageActionSchema: Joi.ObjectSchema; export interface INewMessageAction { type: typeof NEW_MESSAGE; payload: IMessageShape; } export declare const newMessage: import("../helpers").ITopicBoundActionCreator;