import type * as Pinnacle from "../index.mjs"; /** * Message with additional conversation-specific fields including direction and reactions. */ export interface MessageWithReactions extends Pinnacle.Message { /** Direction of the message flow. */ direction: MessageWithReactions.Direction; /** * Array of unicode emoji reactions attached to this message.
* * Empty array indicates no reactions have been added. */ reactions: string[]; } export declare namespace MessageWithReactions { /** Direction of the message flow. */ const Direction: { readonly Inbound: "INBOUND"; readonly Outbound: "OUTBOUND"; }; type Direction = (typeof Direction)[keyof typeof Direction]; }