export interface ChatInputTextareaProps extends Omit, 'value' | 'onChange'> { value: string; onChange?: (value: string) => void; placeholder?: string; disabled?: boolean; maxRows?: number; onKeyDown?: (e: React.KeyboardEvent) => void; } export declare const ChatInputTextarea: import("react").ForwardRefExoticComponent>;