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