import React from 'react'; import { View } from 'react-native'; import type { NavigationState } from './types'; export interface NavigationContainerProps { children: React.ReactNode; initialState?: NavigationState; onStateChange?: (state: NavigationState) => void; theme?: any; linking?: any; } export declare const NavigationContainer: React.ForwardRefExoticComponent>;