import { MessageContentVO } from "../../common/command/MessageContentVO"; export declare class IncomingMessageVO { readonly messageId: string; readonly channelUserId: string; readonly channelId: string; readonly platform: string; readonly messageContent: MessageContentVO; constructor({ messageId, channelUserId, channelId, platform, messageContent }: { messageId: string; channelUserId: string; channelId: string; platform: string; messageContent: MessageContentVO; }); }