import { NotificationCard } from '@equinor/fusion'; import { FC } from 'react'; type NotificationCardWrapperProps = { notification: NotificationCard; onDiscard: (card: NotificationCard) => void; onShowInList: () => void; }; declare const NotificationCardWrapper: FC; export default NotificationCardWrapper;