import { EventEmitter, OnInit, ViewContainerRef } from "@angular/core"; import { NotificationSettings } from "../utilities/notification.config"; import { CreateDynamicComponentService } from "../../utils/create-dynamic-component.service"; export declare class NotificationComponent implements OnInit { private createDynamicComponentService; notificationSetting: NotificationSettings; destroyComponent: EventEmitter; testId: string; dynamicContentContainer: ViewContainerRef; fade: boolean; constructor(createDynamicComponentService: CreateDynamicComponentService); ngOnInit(): void; fadeOut: () => void; destroyMe(): void; }