import * as React from "react"; import { DynamicContentStore } from "../../../DynamicContentStore"; import { MessageBubbleChildrenKeys, MessageBubbleProps } from "./MessageBubble.definitions"; /** * This component renders a single bubble in a list of messages. * * @component * @category Components / Programmable * @subcategory Components * @hideconstructor * @param {MessageBubble.MessageBubbleProps} props */ export declare class MessageBubble extends React.PureComponent { static readonly displayName = "MessageBubble"; /** * Dynamic content store * * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; render(): JSX.Element; }