import { FunctionComponent } from 'react'; import NotificationDescription from './NotificationDescription'; export interface NotificationProps { notification: NotificationDescription; onRemove: (date: Date) => void; } /** * A single notification. */ declare const Notification: FunctionComponent; export default Notification;