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