/// import { Component } from 'react'; import Notice from './Notice'; import { NotificationPropTypes, NotificationInstancePropTypes } from './PropsType'; export default class Notification extends Component { static defaultProps: NotificationPropTypes; state: { notices: any[]; }; addNotice(notice: Notice): any[]; removeNotice(key: any): any[]; getTransitionName(): string; render(): JSX.Element; static newInstance: (properties: NotificationInstancePropTypes) => { notice(noticeProps: any): void; removeNotice(key: any): void; component: Notification; destroy(): void; }; }