import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; import { type ComposerTextAreaProps } from '@mui/x-chat-headless'; import { type ChatComposerClasses } from "./chatComposerClasses.mjs"; export interface ChatComposerTextAreaProps extends ComposerTextAreaProps { className?: string; sx?: SxProps; classes?: Partial; /** * Maximum number of rows the textarea can expand to before it starts scrolling. * When set, the textarea starts at 1 row and auto-grows up to `maxRows`. */ maxRows?: number; } declare const ChatComposerTextArea: React.ForwardRefExoticComponent>; export { ChatComposerTextArea };