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