import { ComponentClass } from 'react' import { ViewProperties } from 'react-native' export type SafeAreaViewForceInsetValue = 'always' | 'never' export interface SafeAreaViewProps extends ViewProperties { forceInset?: { top?: SafeAreaViewForceInsetValue bottom?: SafeAreaViewForceInsetValue left?: SafeAreaViewForceInsetValue right?: SafeAreaViewForceInsetValue horizontal?: SafeAreaViewForceInsetValue vertical?: SafeAreaViewForceInsetValue } } export const SafeAreaView: ComponentClass export const withSafeArea:

(safeAreaViewProps?: SafeAreaViewProps) => (Component: React.ComponentType

) => React.ComponentType

export default SafeAreaView