You can type the navigation props like this:
import { NavigationProp, ParamListBase } from "@react-navigation/native";
type HomeScreenProps = {
navigation: NavigationProp<ParamListBase>;
};
export default function HomeScreen({ navigation }: HomeScreenProps ) {
...
}