import type { VirtualAgentDataSentences } from "../../../FlexSDK"; export declare enum ParticipantRole { AUTOMATED_AGENT = "AUTOMATED_AGENT", END_USER = "END_USER" } export declare enum MessageType { INBOUND = "inbound", OUTBOUND = "outbound" } export type TranscriptMessageIconProps = { width: string; height: string; backgroundColor: string; color: string; }; /** * Properties of the Transcript Message bubble * * @typedef TranscriptMessageBubble.TranscriptMessageBubbleProps * @property {VirtualAgentDataSentences} message - An object which represents a single message. * @private */ export interface TranscriptMessageBubbleProps { message: VirtualAgentDataSentences; }