Navigation Prop
import {StackNavigationProp} from '@react-navigation/stack';
import {DrawerNavigationProp} from '@react-navigation/drawer'
import {BottomTabNavigationProp} from '@react-navigation/bottom-tabs'
import { MaterialTopTabNavigationProp } from '@react-navigation/material-top-tabs';
Route Prop
import {RouteProp} from '@react-navigation/native';
Screen Prop
navigation과 route를 한번에 타입 정의할 수 있는 제네릭 타입
import { StackScreenProps } from '@react-navigation/stack';
import { DrawerScreenProps } from '@react-navigation/drawer';
import { BottomTabScreenProps } from '@react-navigation/bottom-tabs';
import { MaterialTopTabScreenProps } from '@react-navigation/material-top-tabs';