import * as React from "react"; import { DynamicContentStore } from "../../../DynamicContentStore"; import { MessageCanvasTrayChildrenKeys, MessageCanvasTrayProps } from "./MessageCanvasTray.definitions"; /** * A container used when the status of the channel is inactive. * Can be themed with `Theme.Chat.MessageCanvasTray` in [Theme](Theme). * * @component * @category Components / Programmable * @subcategory Components * @hideconstructor * @param {MessageCanvasTrayProps} props - Properties to be passed to configure this component. */ export declare class MessageCanvasTray extends React.PureComponent { static readonly displayName = "MessageCanvasTray"; /** * Dynamic content store * * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; /** * Default properties * * @static * @type {MessageCanvasTray.MessageCanvasTrayProps} * @readonly */ static defaultProps: Partial; render(): JSX.Element; }