import * as React from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; import type { EventEmitterProps, NavigationState, Route, SceneRendererProps } from './types'; type Props = SceneRendererProps & EventEmitterProps & { navigationState: NavigationState; lazy: boolean; lazyPreloadDistance: number; index: number; children: (props: { loading: boolean; }) => React.ReactNode; style?: StyleProp; }; export declare function SceneView({ children, navigationState, lazy, layout, index, lazyPreloadDistance, addEnterListener, style, }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SceneView.d.ts.map