import { FC } from 'react'; type ModalProps = { open: boolean; onClose?: () => void; onBack?: () => void; onInfo?: () => void; pages: any; pageId: string; }; declare const Modal: FC; export default Modal;