import { InputCheckboxGroupProps } from './InputCheckboxGroup'; export interface HookedInputCheckboxGroupProps extends Omit { /** * field name to match hook-form state */ name: string; } /** * `InputCheckboxGroupProps` component ready to be used with the `react-hook-form` context. * @see InputCheckboxGroupProps */ export declare const HookedInputCheckboxGroup: React.FC;