import { FocusMonitor } from '@angular/cdk/a11y'; import { AfterViewInit, ElementRef, EventEmitter, Renderer2 } from '@angular/core'; export declare class BixiTagSelectSearchComponent implements AfterViewInit { private elementRef; private renderer; private focusMonitor; disabled: boolean; value: string; readonly valueChange: EventEmitter; readonly isComposingChange: EventEmitter; inputElement: ElementRef; mirrorElement?: ElementRef; setCompositionState(isComposing: boolean): void; onValueChange(value: string): void; clearInputValue(): void; syncMirrorWidth(): void; focus(): void; blur(): void; constructor(elementRef: ElementRef, renderer: Renderer2, focusMonitor: FocusMonitor); ngAfterViewInit(): void; }