import { TextAreaRef } from 'antd/es/input/TextArea'; import { CSSProperties } from 'react'; import { TextAreaProps } from "../Input"; export interface ChatInputAreaInnerProps extends Omit { className?: string; loading?: boolean; onInput?: (value: string) => void; onSend?: () => void; style?: CSSProperties; } declare const _default: import("react").MemoExoticComponent>>; export default _default;