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'; 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.native.d.ts.map