import * as React from 'react'; import { INotification } from '../types'; export interface INotificationsProps { notifications: INotification[]; } export default class Notifications extends React.Component { render(): JSX.Element; }