import { OnInit } from '@angular/core';
import { NotificationServices } from '../services/notification_services';
import { NotificationTO, ResultMessage, CommaonUserTO } from '../model/notificationTO';
import { Router, ActivatedRoute } from '@angular/router';
export declare class NotificationComponent implements OnInit {
    private comman;
    private router;
    userTO: CommaonUserTO;
    URL: string;
    resultMessage: ResultMessage;
    constructor(comman: NotificationServices, router: Router, route: ActivatedRoute);
    notificationList: NotificationTO[];
    ngOnInit(): void;
    getNotificationListByUser(): void;
    markAsReadToNotification(alertMessageTo: NotificationTO, isReset?: boolean): void;
    getValidationColor(isAcknowelded: number): "bold" | "normal";
    resetAllNotification(): void;
    redirectFun(alertMessageTo: NotificationTO): void;
}
