/// <reference types="react" />
import { Notification as NotificationType } from '../reducers/notifications/types';
import { DismissNotification } from './NotificationsSystem';
import { TransitionProps } from 'react-transition-group/Transition';
declare type Props = {
    notification: NotificationType;
    dismissNotification: DismissNotification;
} & Omit<TransitionProps, 'addEndListener'>;
declare const NotificationContainer: (props: Props) => JSX.Element;
export default NotificationContainer;
