import { Control, ControllerProps, FieldValues } from 'react-hook-form' import { RequireAllOrNone } from './typescript' export type ControlProps = RequireAllOrNone<{ control?: Control name?: ControllerProps['name'] }> export type FormControl = ControlProps & { helperText?: any }