import { MessageState } from "../../../state/ConversationState"; import { MessageStyle } from "../MessagingCanvas/MessagingCanvas.definitions"; /** * Props to define Inline messages * * @typedef InlineMessage.InlineMessageProps * @property {MessageState} message - An object which represents a single message. * @property {MessageStyle} [messageStyle] - Identifies how the message should be displayed. * @property {boolean} [isSeparator] - Whether to apply separator style */ export interface InlineMessageProps { message: MessageState; messageStyle?: MessageStyle; isSeparator?: boolean; }