/** @format */ import { ReactElement } from "react"; interface ModalProps { isOpen: boolean; onRequestClose: () => void; title?: string; style?: any; children: ReactElement; removeCross?: boolean; color?: string; backgroundColor?: string; confetti?: boolean; customConfetti?: any; } declare function Modal({ isOpen, onRequestClose, title, style, children, removeCross, confetti, color, backgroundColor, customConfetti, }: ModalProps): JSX.Element; export default Modal;