import type React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export declare type OverlayProps = { visible?: boolean; backdropStyle?: StyleProp; overlayStyle?: StyleProp; transparent?: boolean; duration?: number; children?: React.ReactNode; onBackdropPress?: () => void; onPress?: () => void; onFadeDone?: () => void; };