import React from 'react'; import { useTranslation } from 'react-i18next'; interface SidebarOverlayProps { onClose: () => void; } const SidebarOverlay: React.FC = ({ onClose }) => { const { t } = useTranslation(); return (