import { JSX } from 'react'; import { InputTextAreaProps } from './InputTextArea'; export interface HookedInputTextAreaProps extends InputTextAreaProps { /** * field name to match hook-form state */ name: string; } /** * `InputTextArea` component ready to be used with the `react-hook-form` context. * @see InputSelect */ export declare function HookedInputTextArea({ name, ...props }: HookedInputTextAreaProps): JSX.Element; export declare namespace HookedInputTextArea { var displayName: string; }