import React from 'react'; import { ViewStyle } from 'react-native'; export declare type PopupProps = { visible: boolean; onClose: () => void; height?: number; style?: ViewStyle; animationType?: string; children: JSX.Element | (JSX.Element | undefined)[]; }; declare const Popup: React.FC; export default Popup;