import type {StackScreenProps} from '@react-navigation/stack' export type RootTabsParamList = { Home: undefined Search: undefined Notifications: undefined Menu: undefined Profile: {name: string} Login: undefined Signup: undefined NotFound: undefined } export type RootTabsScreenProps = StackScreenProps /* NOTE this is leftover from a nested nav implementation keeping it around for future reference -prf import type {NavigatorScreenParams} from '@react-navigation/native' import type {CompositeScreenProps} from '@react-navigation/native' import type {BottomTabScreenProps} from '@react-navigation/bottom-tabs' Container: NavigatorScreenParams export type PrimaryStacksParamList = { Home: undefined Profile: {name: string} } export type PrimaryStacksScreenProps = CompositeScreenProps< BottomTabScreenProps, RootTabsScreenProps > */