import { FormTextAreaProps } from './types'; import { FieldValues } from 'react-hook-form'; import { TextArea } from '../../components/TextArea'; export declare const FormTextArea: ({ name, options, onChange: handleChange, label, leftHelper, onBlur: handleBlur, onFocus: handleFocus, view, showClearButton, required: propsRequired, ...rest }: FormTextAreaProps) => ReturnType;