import { IdService } from "./../shared/services/id.service"; import { OnDestroy, EventEmitter } from "@angular/core"; export declare class AlertComponent implements OnDestroy { private idService; closable: boolean; title: string; id: string; transition: boolean; type: "danger" | "warning" | "success" | "info"; closeLabel: string; shadow: boolean; alertClosed: EventEmitter<{}>; msg: string; visible: boolean; constructor(idService: IdService); ngOnDestroy(): void; alertClose(): void; iconGen(): string; classGen(): {}; }