import React from 'react'; import { ModalProps } from './types'; declare const Modal: ({ children, onDismiss, open, title, zIndex, onAnimationComplete, backdrop, ...props }: ModalProps | any) => React.JSX.Element; export default Modal;