import { JSX } from 'react'; import { InputSimpleSelectProps } from './InputSimpleSelect'; export interface HookedInputSimpleSelectProps extends InputSimpleSelectProps { /** * field name to match hook-form state */ name: string; /** * show validation error message underneath */ showValidation?: boolean; } /** * `InputToggleListBox` component ready to be used with the `react-hook-form` context. * @see InputSimpleSelect */ export declare function HookedInputSimpleSelect({ name, showValidation, ...props }: HookedInputSimpleSelectProps): JSX.Element; export declare namespace HookedInputSimpleSelect { var displayName: string; }