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