import React from 'react'; import { InputProps } from '../types'; /** * Text Area Field component. It follows the props from react-final-form. It also uses * react-textarea-autosize https://github.com/Andarist/react-textarea-autosize. */ export interface IInputTextArea extends InputProps { /** Optional max rows. If not passed it will be infinite */ maxRows?: number; /** Optional minimum rows */ minRows?: number; /** Ability to control resize */ resize?: 'none' | 'vertical' | 'unset'; className?: string; placeholder?: string; maxLength?: number; defaultValue?: string; autoFocus?: boolean; tabIndex?: number; } export declare const InputTextArea: React.FC;