import { MessageContentVO } from "../../conversation"; import { OutboundMessageCommand } from "./OutboundMessageCommand"; export declare class SendMessageCommand extends OutboundMessageCommand { static readonly commandName = "conversation.SendMessageCommand"; readonly conversationId: string; readonly senderId: string; readonly messageContent: MessageContentVO; readonly platform: string; readonly channelId: string; readonly channelUserId: string; constructor({ tenantId, messageId, conversationId, senderId, messageContent, platform, channelId, channelUserId }: { tenantId: string; messageId: string; conversationId: string; senderId: string; messageContent: MessageContentVO; platform: string; channelId: string; channelUserId: string; }); }