import type {NavigatorScreenParams} from '@react-navigation/native' import type {CompositeScreenProps} from '@react-navigation/native' import type {StackScreenProps} from '@react-navigation/stack' import type {BottomTabScreenProps} from '@react-navigation/bottom-tabs' export type RootStackParamList = { Primary: undefined Profile: {name: string} Login: undefined Signup: undefined NotFound: undefined } export type RootStackScreenProps = StackScreenProps export type PrimaryTabParamList = { Home: NavigatorScreenParams Search: undefined Notifications: undefined Menu: undefined } export type PrimaryTabScreenProps = CompositeScreenProps< BottomTabScreenProps, RootStackScreenProps >