export default function Modal({ open, title, content, confirmText, cancelText, onConfirm, onClose, }: { open: any; title: any; content: any; confirmText: any; cancelText: any; onConfirm: any; onClose: any; }): JSX.Element;