import { Radio as GearRadio, RadioProps } from '@gear-js/ui'; import { useFormContext } from 'react-hook-form'; type Props = Omit & { name: string; }; function Radio({ name, ...props }: Props) { const { register } = useFormContext(); return ; } export { Radio };