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