import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; import { Edge } from 'react-native-safe-area-context'; export interface SafeAreaViewProps { children: React.ReactNode; edges?: Edge[]; style?: StyleProp; backgroundColor?: string; mode?: 'padding' | 'margin'; testID?: string; } export declare const SafeAreaView: React.FC; //# sourceMappingURL=SafeAreaView.d.ts.map