/// interface Props { data: any; onViewDetail: () => void; } declare const NotificationCard: ({ data: { timestamp, icon, apps, content }, onViewDetail, }: Props) => JSX.Element; export default NotificationCard;