import { EventEmitter } from '@angular/core'; import { RebirthNGConfig } from '../rebirth-ng.config'; export declare class AlertBoxComponent { removeIcon: string; type: 'success' | 'info' | 'warning' | 'danger'; cssClass: string; closable: boolean; close: EventEmitter; constructor(rebirthNGConfig: RebirthNGConfig); closeBox(): void; private onCloseBox(); }