import { Component } from 'react'; export declare const RESIZE: string[]; export declare class TextArea extends Component<{ name?: string; id?: string; placeholder?: string; rows?: number; isInvalid?: boolean; fullWidth?: boolean; compressed?: boolean; className?: string; inputRef?: string; onChange?: (e: any) => any; /** * Which direction, if at all, should the textarea resize */ resize?: any; value?: string; [p: string]: any; }> { static defaultProps: { fullWidth: boolean; resize: string; }; static propTypes: {}; render(): JSX.Element; }