import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; import { Edge } from 'react-native-safe-area-context'; export interface ScreenProps { children: React.ReactNode; style?: StyleProp; contentStyle?: StyleProp; backgroundColor?: string; statusBarStyle?: 'light-content' | 'dark-content' | 'default'; statusBarBackgroundColor?: string; safeAreaEdges?: Edge[]; scrollable?: boolean; padding?: number; preset?: 'default' | 'scroll' | 'fixed'; testID?: string; } export declare const Screen: React.FC; //# sourceMappingURL=Screen.d.ts.map