import * as React from "react"; import { ViewProps } from "../View"; declare class NotificationContainer extends React.Component { state: { notifications: any[]; }; componentDidMount(): void; componentWillUnmount(): void; handleStoreChange: (notifications: any) => void; handleRemove: (notification: any) => void; render(): JSX.Element; } export default NotificationContainer;