import * as React from 'react'; import { Notification } from '../../types/store'; interface StateProps { notifications: Notification[]; } declare class Notifications extends React.PureComponent { render(): React.JSX.Element; } declare const _default: import("react-redux").ConnectedComponentClass>; export default _default;