import { FC } from 'react'; interface Props { message: string; loading?: boolean; hideCancelBtn?: boolean; onClose?: () => void; onConfirm?: () => void; } declare const ConfirmModal: FC; export default ConfirmModal;