import { useTranslation } from 'react-i18next' import Button from '@/app/components/base/button' const i18nPrefix = 'plugin.autoUpdate.pluginDowngradeWarning' type Props = { onCancel: () => void onJustDowngrade: () => void onExcludeAndDowngrade: () => void } const DowngradeWarningModal = ({ onCancel, onJustDowngrade, onExcludeAndDowngrade, }: Props) => { const { t } = useTranslation() return ( <>