import { ControllerProps, FieldValues, Path, RegisterOptions } from 'react-hook-form'; import { TextArea, TextAreaProps } from '../ui/TextArea'; import type * as React from 'react'; export type ControlledTextAreaProps = TextAreaProps & Omit & { name: Path; rules?: RegisterOptions>; } & React.ComponentProps & Omit, 'render'>; export declare const ControlledTextArea: ({ name, rules, ...props }: ControlledTextAreaProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ControlledTextArea.d.ts.map