import * as React from "react"; import { DynamicContentStore } from "../../../DynamicContentStore"; import { MessageInputChildrenKeys, MessageInputChildrenProps, MessageInputProps } from "./MessageInput.definitions"; /** * This is a container for MessageInputArea and SendButton. * Can be themed with `Theme.Chat.MessageInput` in [Theme](Theme). * * @component * @category Components / Programmable * @subcategory Components * @param {MessageInput.MessageInputProps} props - Properties to be passed to configure this component. */ export declare class MessageInput extends React.PureComponent { static readonly displayName = "MessageInput"; /** * Dynamic content store * * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; /** * Default properties * * @static * @type {MessageInput.MessageInputProps} * @readonly */ static readonly defaultProps: Partial; static updateAll(): void; render(): JSX.Element; }