/// import { ModalProps } from "react-native"; export default function Modal({ visible, transparent, children, close, }: { visible: boolean; children: ModalProps["children"]; close: () => void; transparent?: boolean; }): JSX.Element;