import { Control } from 'react-hook-form'; interface IController { control: Control; name: string; label?: string; placeholder?: string; description?: string; rows?: number; } declare const TextAreaController: (props: IController) => import("react/jsx-runtime").JSX.Element; export default TextAreaController;