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