import React from "react"; import { DynamicContentStore } from "../../../DynamicContentStore"; import { AriaProps } from "../../AriaProps"; import { PredefinedMessage } from "../TranscriptMessagingCanvas/TranscriptMessagingCanvasImpl"; export declare const displayName = "TranscriptMessageList"; export declare const contentStore: DynamicContentStore; /** * A object properties representing a message list. * * @typedef TranscriptMessageList.TranscriptMessageListProps * @property {PredefinedMessage} [predefinedMessage] - It sets whether to inject a predefined message in the message list or not. * @property {AriaProps} [listContainerAriaProps] - ListContainer aria props. * @private */ export interface TranscriptMessageListProps { predefinedMessage?: PredefinedMessage; listContainerAriaProps?: AriaProps; } export declare const TranscriptMessageListImpl: React.FC & { displayName: string; }; export default TranscriptMessageListImpl;