import * as React from 'react'; import { NoticeProps } from './Notice'; interface NotificationState { notices: any[]; } export declare class Notification extends React.PureComponent { static open: (properties: NoticeProps) => void; constructor(props: NoticeProps); add: () => void; remove: (key: React.Key, cb: any) => void; drop: () => void; render(): JSX.Element; } export default Notification;