import { OnInit } from '@angular/core'; export declare type AlertType = 'success' | 'info' | 'warning' | 'danger'; export declare class AlertComponent implements OnInit { message: string; type: AlertType; showCloseIcon: any; alertIcon: any; alertTitle: any; alertEl: HTMLElement; ngOnInit(): void; switchIcons(className: any): "fa-check-circle" | "fa-info-circle" | "fa-exclamation-triangle" | "fa-exclamation-circle"; switchTitle(type: any): any; closeAlert(): void; isArray(obj: any): any; }