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