import { OnInit, ChangeDetectorRef } from '@angular/core'; import { LKNotification } from './service'; import { Observable } from 'rxjs'; export declare class NotificationComponent implements OnInit { private _detectorRef; private closeButton; notification$: Observable; show$: Observable; iconName: string; private _subscription; constructor(_detectorRef: ChangeDetectorRef); ngOnInit(): void; /** * Return the timer to debouncing notification */ private static getTimeout(); }