import React from 'react'; import type { ViewStyle } from 'react-native'; import { StyleSheet, TouchableWithoutFeedback, View } from 'react-native'; import type { BackdropProps } from './backdrop.types'; export const Backdrop = ({ onOutsidePress, backdropCustomStyles, backdropProps, backdropChildProps, }: BackdropProps) => { return ( ); }; type Styles = { modalOverlay: ViewStyle; }; const styles = StyleSheet.create({ modalOverlay: { ...StyleSheet.absoluteFillObject, zIndex: 1, }, });