import { EventEmitter, TemplateRef } from '@angular/core'; import { NzNoAnimationDirective } from 'ng-zorro-antd/core/no-animation'; import { NzSafeAny } from 'ng-zorro-antd/core/types'; import { isPresetColor } from 'ng-zorro-antd/core/color'; import { BixiTagSelectSearchComponent } from './tag-select-search.component'; import { ITag } from './tag-select.type'; export declare class BixiTagSelectTopControlComponent { noAnimation?: NzNoAnimationDirective | undefined; isPresetColor: typeof isPresetColor; placeholder: string; open: boolean; disabled: boolean; closable: boolean; removeIcon: TemplateRef | null; tags: ITag[]; tagTemplate: string | TemplateRef | null; readonly inputValueChange: EventEmitter; readonly deleteTag: EventEmitter; readonly openChange: EventEmitter; bixiTagSelectSearchComponent: BixiTagSelectSearchComponent; inputValue: string | null; isComposing: boolean; isComposingChange(isComposing: boolean): void; onHostClick(): void; onHostKeydown(e: KeyboardEvent): void; onInputValueChange(value: string): void; clearInputValue(): void; focus(): void; blur(): void; trackValue(_index: number, option: ITag): NzSafeAny; onCloseTag(tag: ITag, e: MouseEvent): void; onDeleteTag(tag: ITag): void; constructor(noAnimation?: NzNoAnimationDirective | undefined); }