/** * @license * Copyright 厦门乾元盛世科技有限公司 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file. */ import { EventEmitter, ElementRef, Renderer } from '@angular/core'; export declare class CheckableTag { private renderer; private elementRef; /** 样式前缀 */ prefixCls: string; /** 标签是否可以关闭 */ closable: boolean; /** 设置标签的选中状态 */ checked: boolean; /** 用户CSS样式 */ class: string; /** 点击标签时触发的事件 */ change: EventEmitter; constructor(renderer: Renderer, elementRef: ElementRef); readonly classes: string; handleClick(event: Event): void; }