import { default as React } from 'react'; import { Notification } from '../../core'; interface NotificationCardProps { notification: Notification; onClick: (notification: Notification) => void; } declare const NotificationCard: React.FC; export default NotificationCard;