import { t } from '@/lib/i18n' interface NotificationPanelHeaderProps { unreadCount: number onMarkAllAsRead: () => void onClose: () => void } export function NotificationPanelHeader({ unreadCount, onMarkAllAsRead, onClose, }: NotificationPanelHeaderProps): React.ReactElement { return (