import { ComponentCreator } from '../core/component-creator'; import { ComponentCreatorBase } from '../core/component-creator-base'; import { NotificationContainerComponent } from './notification-container/notification-container.component'; import { NotificationConfig } from './notification/notification-config'; export declare class NotificationBaseService extends ComponentCreator { component_base: ComponentCreatorBase; constructor(component_base: ComponentCreatorBase); addMessage(config: NotificationConfig): void; removeMessage(messageId: string): void; }