import React from 'react'; export declare type ModalProps = { open?: boolean; text: string; TransitionProps?: { onExited?: (args: any) => void; }; onClose?: (args: any) => void; }; declare const Modal: React.FC; export default Modal;