import { Alert } from './alert'; import { AlertService } from '../../services/alert.service'; export declare class AlertComponent { private alertService; alerts: Alert[]; constructor(alertService: AlertService); ngOnInit(): void; removeAlert(alert: Alert): void; cssClass(alert: Alert): "alert alert-success" | "alert alert-danger" | "alert alert-info" | "alert alert-warning"; }