import { EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/core'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export type ITagMode = 'default' | 'checkable' | 'closeable'; export declare class TagComponent implements OnChanges { /** * 【必选】记录输入的标签 */ tag: any; labelStyle: string; customColor: string; deletable: boolean; titleContent: string; mode: ITagMode; checked: boolean; maxWidth: any; customViewTemplate: TemplateRef; beforeDelete: (tag?: any) => boolean | Promise | Observable; /** * tag被删除后触发 */ tagDelete: EventEmitter; checkedChange: EventEmitter; currentTag: string; deleteTag: boolean; colorMap: { 'blue-w98': string; 'aqua-w98': string; 'olivine-w98': string; 'green-w98': string; 'yellow-w98': string; 'orange-w98': string; 'red-w98': string; 'pink-w98': string; 'purple-w98': string; }; get isColorfulTag(): boolean; ngOnChanges(changes: SimpleChanges): void; removeTag($event: any, tag: any): void; tagClick(): void; canDeleteTag(tag: any): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }