import { AfterViewInit, OnInit } from '@angular/core';
export declare class NotificationComponent implements OnInit, AfterViewInit {
    notificationFilters: any[];
    currentNotificationFilter: {
        name: string;
        count: number;
    };
    notificationModal: any;
    modalHeader: string;
    constructor();
    ngOnInit(): void;
    ngAfterViewInit(): void;
    setSelectedNotificationFilter(item: any): void;
}
