import { Control } from 'react-hook-form'; type OptionType = { value: string | number; label: string; }; type BaseRadioGroupProps = { name: string; control: Control; label: string; options: OptionType[]; rules?: any; error?: boolean; helperText?: string; required?: boolean; row?: boolean; }; declare const RadioGroupWrapper: React.FC; export default RadioGroupWrapper;