import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { NotificationViewConfig, NotificationFeedEntry, Notification } from './models'; import { SbNotificationService } from './notification.service'; export declare class NotificationComponent implements OnInit, OnChanges { protected sbNotificationService: SbNotificationService; notificationList: NotificationFeedEntry[]; inAppNotificationConfig: NotificationViewConfig; hideDeleteOption: boolean; notificationClick: EventEmitter; deleteNotificationClick: EventEmitter; clearAllClick: EventEmitter; showMore: EventEmitter; showLess: EventEmitter; displayItemCount: number; constructor(sbNotificationService: SbNotificationService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; notificationClickHandler(eventData: any): void; notificationDeleteHandler(eventData: any): void; clearAllNotifications(event: any): void; onShowMore(): void; onShowLess(): void; }