import { INotificaseBase, INotifier, NotificationContainer, NotificationRenderProps } from '@etsoo/notificationbase'; import { INotificationDom, NotificationDomCallProps } from './NotificationDom'; /** * Notifier container interface */ export interface INotifierContainer extends INotifier { } /** * Notifier container */ export declare class NotifierContainer extends NotificationContainer implements INotifierContainer { private wrappers; /** * Constructor * @param props Renderer properties * @param className Style class name */ constructor(props?: NotificationRenderProps, className?: string); protected addRaw(data: INotificaseBase, modal?: boolean | undefined): INotificationDom; }