/// export declare type TextAreaAttributes = { value?: string; } & Pick, 'autoComplete' | 'autoFocus' | 'disabled' | 'maxLength' | 'minLength' | 'name' | 'readOnly' | 'rows' | 'placeholder' | 'onChange' | 'onFocus' | 'onBlur' | 'onClick'>; export declare type TextAreaProps = { className?: string; borderless?: boolean; hasError?: boolean; } & TextAreaAttributes;