import { TReturnUseChangedFormContext } from './utils/types'; import { FieldValues, Path, RegisterOptions } from 'react-hook-form'; export type TMutationRegister = { name: Path; options?: RegisterOptions> | undefined; }; export type THandleChange = (newValue: T, formCtx: TReturnUseChangedFormContext) => void; export type TDefKeys = 'size' | 'view' | 'style';