import { Component } from 'react'; interface NotificationObject { title?: string; subTitle?: any; thumb?: any; extra?: string; extraAlign?: any; arrow?: any; multipleLine?: boolean; onClick?: (event: any) => void; } interface NotificationProps { title?: string; dataSource?: Array; className?: string; style?: object; } export default class Notification extends Component { render(): JSX.Element; } export {};