import { FC } from 'react';
import type { CompoundProps, Props } from './NotificationSystem.types';
import 'react-toastify/dist/ReactToastify.css';
import './NotificationSystem.style.scss';
/**
 * The `<NotificationSystem />` component allows consumers to trigger notifications on the defined position on the screen.
 *
 * This is a component written in the compound component pattern way, which means utils to trigger a notification for example
 * are exposed on the component directly, like `NotificationSystem.notify` or `NotificationSystem.update`
 * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`)
 */
declare const NotificationSystem: FC<Props> & CompoundProps;
export default NotificationSystem;
