import { type ReactNode } from 'react'; import { type ToastContainerProps } from 'react-toastify-next'; export type NotificationContainerProps = Omit & { hideProgressBar?: boolean; /** * Для работы с баннером, необходимо передать BannerContainer * @example * * } * /> */ bannerContainer?: ReactNode; }; export declare const NotificationContainerNext: ({ containerId, bannerContainer, ...props }: NotificationContainerProps) => JSX.Element;