import { FormRenderProps, VariantProps } from '../../../utils'; /** * FormTextAreaField Component * * A multi-line text input field component that integrates with react-hook-form for form state management. * Renders a textarea with validation support and customizable rows. * * @component * @param {Object} props - The component props * @param {FormRenderProps} props.props - Form rendering properties from parent form * @param {VariantProps} props.variant - UI variant style ('standard', 'outlined', etc.) * * @example * // Basic usage in FormRender * */ declare const FormTextAreaField: ({ props, variant, }: { props: FormRenderProps; variant: VariantProps; }) => import("react/jsx-runtime").JSX.Element; /** * Export the FormTextAreaField component for use in the form renderer * This component is used for textarea input types */ export default FormTextAreaField;