import { NavigationProp, ParamListBase, RouteProp } from '@react-navigation/native'; import * as React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; type Props = { focused: boolean; modal?: boolean; navigation: NavigationProp; route: RouteProp; header: React.ReactNode; headerShown?: boolean; headerStatusBarHeight?: number; headerTransparent?: boolean; style?: StyleProp; children: React.ReactNode; }; export default function Screen(props: Props): JSX.Element; export {}; //# sourceMappingURL=Screen.d.ts.map