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