import React from 'react'; import { ModalProps } from 'react-native'; export declare type PopoutProps = ModalProps & { visible: boolean; /** * Show or hide black overlay */ backdrop?: boolean; }; export declare const Popout: React.FC;