/// <reference types="react" />
import { Notification as NotificationType, Position } from '../reducers/notifications/types';
import { DismissNotification } from './NotificationsSystem';
declare type Props = {
    notifications: NotificationType[];
    position: Position;
    dismissNotification: DismissNotification;
    singleContainer: boolean;
};
declare const NotificationsContainer: (props: Props) => JSX.Element;
export default NotificationsContainer;
