import { BaseInputProps } from '../../types/input'; import { ChangeEvent, TextareaHTMLAttributes } from 'react'; export interface TextAreaProps extends Omit>, 'feAdornment'> { /** Callback that will fire anytime the value of the text area changes. */ onChange?: (event: ChangeEvent, value: string) => void; } declare const TextArea: import("react").ForwardRefExoticComponent>; export default TextArea;