import * as React from 'react'; export interface INotificationsProps { dataSource: INotificationItem[]; className: string; } export interface INotificationItem { template: string | JSX.Element; type?: NotificationType; id?: number; } export declare type NotificationType = 'success' | 'primary' | 'error' | 'default'; export interface INotificationsState { } export default class Notifications extends React.Component { render(): JSX.Element; }