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