import { RDAlert } from './alert.class'; import { OnInit } from '@angular/core'; import { RDAlertService } from './alert.service'; export declare class RDAlertComponent implements OnInit { private alertService; timer: number; alerts: Array<{ alert: RDAlert; timer: any; }>; constructor(alertService: RDAlertService); ngOnInit(): void; deleteOnTimer(closeAlert: any): void; closeAlert(index: any): void; getIcon(type: any): "fas fa-exclamation-triangle" | "fas fa-exclamation" | "fas fa-check" | "fas fa-info"; }