import { TextAreaProps } from '../../../../components'; import { FormFieldProps } from '../../../../types'; import { FieldPath, FieldValues } from 'react-hook-form'; export type FormTextAreaProps = FieldPath> = FormFieldProps & Omit & { required?: boolean; optional?: boolean; }; export declare const FormTextArea: = FieldPath>(props: FormTextAreaProps) => import("@emotion/react/jsx-runtime").JSX.Element;