import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; interface IPaneOverlayProps { /** * Content of the overlay */ children: React.ReactElement; /** * If true, the overlay is visible */ isVisible: boolean; /** * Style for the backdrop */ backdropStyle?: StyleProp; /** * Style of the actual overlay */ overlayStyle?: StyleProp; /** * Callback when user touches the backdrop */ onBackdropPress: () => void; } declare const PaneOverlay: (props: IPaneOverlayProps) => JSX.Element; export default PaneOverlay;