/** * @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 { AnimationEvent } from '@angular/animations'; import { ElementRef, EventEmitter, OnChanges, OnInit, Renderer2 } from '@angular/core'; export declare class NzTagComponent implements OnInit, OnChanges { private renderer; private elementRef; presetColor: boolean; hostClassMap: {}; nzMode: 'default' | 'closeable' | 'checkable'; nzColor: string; nzChecked: boolean; nzNoAnimation: boolean; readonly nzAfterClose: EventEmitter; readonly nzOnClose: EventEmitter; readonly nzCheckedChange: EventEmitter; private isPresetColor; private updateClassMap; updateCheckedStatus(): void; closeTag(e: MouseEvent): void; afterAnimation(e: AnimationEvent): void; constructor(renderer: Renderer2, elementRef: ElementRef); ngOnInit(): void; ngOnChanges(): void; }