/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, SimpleChanges, TemplateRef } from '@angular/core'; import { NzConfigService } from 'ng-zorro-antd/core/config'; export declare class NzAlertComponent implements OnChanges, OnDestroy { nzConfigService: NzConfigService; private cdr; nzCloseText: string | TemplateRef | null; nzIconType: string | null; nzMessage: string | TemplateRef | null; nzDescription: string | TemplateRef | null; nzType: 'success' | 'info' | 'warning' | 'error'; nzCloseable: boolean; nzShowIcon: boolean; nzBanner: boolean; readonly nzOnClose: EventEmitter; closed: boolean; iconTheme: 'outline' | 'fill'; inferredIconType: string; private isTypeSet; private isShowIconSet; private destroy$; constructor(nzConfigService: NzConfigService, cdr: ChangeDetectorRef); closeAlert(): void; onFadeAnimationDone(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; }