import { FieldValues, UseFormRegisterReturn, FieldPath } from 'react-hook-form'; export type TUseFormRegisterReturn = FieldPath> = UseFormRegisterReturn & { error?: string; formvalue: TFieldValues; }; export type TError = { errors?: { [key in keyof TFieldValues]: string[]; }; message: string; };