import type { NavigationState, ParamListBase, PartialState, Route } from '@react-navigation/routers'; import type { NavigationProp, RouteConfigComponent } from './types'; type Props = { screen: RouteConfigComponent & { name: string; }; navigation: NavigationProp; route: Route; routeState: NavigationState | PartialState | undefined; getState: () => State; setState: (state: State) => void; options: object; clearOptions: () => void; }; /** * Component which takes care of rendering the screen for a route. * It provides all required contexts and applies optimizations when applicable. */ export default function SceneView({ screen, route, navigation, routeState, getState, setState, options, clearOptions, }: Props): JSX.Element; export {}; //# sourceMappingURL=SceneView.d.ts.map