import React from 'react'; import { Systems } from '@tapis/tapis-typescript'; type ModalProps = { open: boolean; toggle: () => void; system: Systems.TapisSystem; }; declare const PermissionsModal: React.FC; export default PermissionsModal;