xxxxxxxxxx
import type { NavigationProp } from '@react-navigation/native'
interface CustomNavigationProps extends Omit<NavigationProp<ReactNavigation.RootParamList>, 'navigate'> {
navigate: navigation
}
type navigation = (name: string, params: object) => void
export type {
CustomNavigationProps
}