For navigations, I am using useNavigation from '@react-navigation/native';
I am using this to pass data between two screens in my app:
type UserDetailsProps = { onDeleteContact: (id: number) => void; route: any;};
I don't want to use the any
time but I don't know what other type is suitable here.