import React from 'react'; import { InputProps } from './Textarea'; export interface IFormProps extends InputProps { name: string; onClear?: (val: string) => void; required?: boolean; type?: string; } export declare const FormTextarea: ({ onClear, type, ...props }: IFormProps & React.TextareaHTMLAttributes) => JSX.Element;