import { OnInit } from '@angular/core'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { AlertInterFace } from '../alert.interface'; import * as i0 from "@angular/core"; export declare class AlertComponent implements OnInit, AlertInterFace { private activeModal; title?: string; description?: string; buttonText?: string; type?: AlertInterFace['type']; constructor(activeModal: NgbActiveModal); ngOnInit(): void; close: () => void; get buttonColor(): "success" | "warning" | "primary" | "info" | "danger"; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }