export type SignUpFormData = { phone: string; phoneVerificationStatus: boolean; name: string; password: string; birthDate: string; isUberDriver: boolean | undefined; vehicleType: string; vehicleModel: string; licensePlate: string; email: string; address: string; paymentMethod: string; }; export type SignUpFormDataKey = keyof SignUpFormData; export type HandleSignUpFormDataChange = (field: K, value: SignUpFormData[K]) => void;