/** * The message Reaction instance class that defines Reaction attributes. */ export declare class ChatMessageReaction { /** * The Reaction content. */ reaction: string; /** * The count of the users who added this Reaction. */ count: string; /** * Whether the current user added this Reaction. * - `true`: Yes. * - `false`: No. */ isAddedBySelf: boolean; /** * The list of users that added this Reaction. */ userList: Array; constructor(params: { reaction: string; count: string; isAddedBySelf: boolean; userList: Array; }); } /** * The message Reaction event class. * */ export declare class ChatMessageReactionEvent { /** * The conversation ID. */ convId: string; /** * The message ID. */ msgId: string; /** * The Reaction list. */ reactions: Array; constructor(params: { convId: string; msgId: string; reactions: Array; }); }