import { type NavigationContainerProps, type NavigationContainerRef } from '@react-navigation/core'; import { type DocumentTitleOptions, type LinkingOptions, type Theme } from '@react-navigation/native'; import * as React from 'react'; declare global { var REACT_NAVIGATION_DEVTOOLS: WeakMap, { readonly linking: LinkingOptions; }>; } type Props = NavigationContainerProps & { theme?: Theme; linking?: LinkingOptions; fallback?: React.ReactNode; documentTitle?: DocumentTitleOptions; onReady?: () => void; }; declare const NavigationContainer: (props: Props & { ref?: React.Ref>; }) => React.ReactElement; export default NavigationContainer; //# sourceMappingURL=NavigationContainer.d.ts.map