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