import React from 'react'; import { NotificationItemImageProps } from './NotificationItemImage'; import './NotificationItem.css'; import { NotificationLocale } from './types'; interface NotificationItemProps { image: NotificationItemImageProps; timestamp: number; isNew: boolean; locale: NotificationLocale; } /** * @deprecated Should start using the same component migrated to UI2. */ export default function NotificationItem({ image, timestamp, isNew, children, locale }: React.PropsWithChildren): React.JSX.Element; export {};