import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { NotificationStatus } from '../models'; import { SbNotificationService } from '../notification.service'; export declare class NotificationCardComponent implements OnChanges { protected sbNotificationService: SbNotificationService; notification: any; hideDeleteOption: boolean; notificationClick: EventEmitter; deleteNotificationClick: EventEmitter; NotificationStatus: typeof NotificationStatus; constructor(sbNotificationService: SbNotificationService); ngOnChanges(changes: SimpleChanges): void; notificationClickHandler(event: any): void; notificationDeleteHandler(event: any): void; }