import { Control, FieldPath, FieldValues } from 'react-hook-form'; import { FieldComponents } from './form'; import { Textarea } from './textarea'; import type * as React from 'react'; export interface TextareaFieldComponents extends FieldComponents { TextArea?: React.ForwardRefExoticComponent & React.RefAttributes>; } export interface TextareaFieldProps = FieldPath> extends Omit, 'name'> { control?: Control; name: TName; label?: string; description?: string; components?: Partial; } declare const TextareaField: { ({ control, name, label, description, className, components, ...props }: TextareaFieldProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { TextareaField }; //# sourceMappingURL=textarea-field.d.ts.map