import { Control, RegisterOptions } from "react-hook-form" import { EditProfileSchema } from "@/components/MyProfile/Profile/Edit/Form/schema" export interface InputProps extends React.InputHTMLAttributes { control: Control name: keyof EditProfileSchema registerOptions?: RegisterOptions }