import { default as React } from 'react'; import { Notification, NotificationTypes } from '../../core'; export interface NotificationListProps { notificationTypes?: NotificationTypes[]; onClick?: (notification: Notification) => void; onManageNotifications: () => void; } declare const _default: React.FunctionComponent; export default _default;