import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; import { Edge } from 'react-native-safe-area-context'; export interface SafeAreaContainerProps { children: React.ReactNode; edges?: Edge[]; style?: StyleProp; contentStyle?: StyleProp; backgroundColor?: string; showStatusBar?: boolean; statusBarBackgroundColor?: string; testID?: string; } export declare const SafeAreaContainer: React.FC; //# sourceMappingURL=SafeAreaContainer.d.ts.map