import { formatTime } from '@/lib/formatTime' import { t } from '@/lib/i18n' interface NotificationActionsProps { timestamp: number onDelete: () => void } export function NotificationActions({ timestamp, onDelete }: NotificationActionsProps): React.ReactElement { return (