import { Control, FieldPath, FieldPathValue, FieldValues, RegisterOptions } from "react-hook-form"; export interface ComponentControllerProps = FieldPath> { control: Control; name: TName; rules?: Omit, "valueAsDate" | "setValueAs" | "disabled">; shouldUnregister?: boolean; defaultValue?: FieldPathValue; }