import React from 'react'; type ConfirmModalProps = { toggle: () => void; title?: string; message?: string; onConfirm: () => void; isLoading: boolean; isSuccess: boolean; isError: boolean; error: Error | null; }; declare const ConfirmModal: React.FC; export default ConfirmModal;