import { ConversationEvent } from "./ConversationEvent"; export declare class RepliedToConversationEvent extends ConversationEvent { static eventName: string; static eventVersion: number; readonly repliedAt: string; readonly replierId: string; readonly messageContent: { text: string; }; readonly platform: string; readonly channelId: string; readonly channelUserId: string; constructor({ tenantId, conversationId, repliedAt, messageContent, replierId, platform, channelId, channelUserId }: { tenantId: string; conversationId: string; repliedAt: string; messageContent: { text: string; }; replierId: string; platform: string; channelId: string; channelUserId: string; }); }