import { AfterViewInit, ElementRef, OnInit, QueryList } from '@angular/core'; import { UofxUserSetModel } from '../../user-select.interface'; import * as i0 from "@angular/core"; export declare class UofxUserSelectViewMoreUsersDialog implements OnInit, AfterViewInit { /** * chip 的元素,用來當作搜尋的索引 * 使用 { read: ElementRef } 取得元素內的文字內容 */ userChips: QueryList; /** 所有項目 */ userSetModel: Array; /** 關鍵字 */ keyword: string; /** 過濾後要顯示的項目 */ filteredUsers: Array; /** 每個項目對應的搜尋文字 */ searchTexts: string[]; ngOnInit(): void; ngAfterViewInit(): void; /** 輸入搜尋關鍵字 */ onSearchKeyChange(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }