import { NotificationCard } from '@equinor/fusion'; import { FC } from 'react'; type NotificationCardsProps = { notifications: NotificationCard[]; onDiscardNotification: (notificationCard: NotificationCard) => void; onShowInList: () => void; }; declare const NotificationCards: FC; export default NotificationCards;