import type { ParamListBase } from '@react-navigation/routers'; import * as React from 'react'; import type { NavigationProp } from './types'; /** * Context which holds the navigation prop for a screen. */ const NavigationContext = React.createContext< NavigationProp | undefined >(undefined); export default NavigationContext;