import React from 'react'; import { ModalProps, ViewStyle, StyleProp } from 'react-native'; import { InlinePressableProps, RneFunctionComponent } from '../helpers'; export interface OverlayProps extends Omit, Omit { isVisible: boolean; backdropStyle?: StyleProp; overlayStyle?: StyleProp; onBackdropPress?(): void; fullScreen?: boolean; ModalComponent?: typeof React.Component; } export declare const Overlay: RneFunctionComponent;