import { EventEmitter, OnInit } from '@angular/core'; import { ItemList } from '../../../model'; import * as i0 from "@angular/core"; export declare class SearchInputComponent implements OnInit { /** * * Título (opcional). */ title: string; /** * * Texto do hint (opcional). */ tooltipText: string; /** * * Texto do Placeholder do Componente (opcional). */ placeholderText: string; /** * * Indica se o componente está desabilitado. */ disabled: boolean; /** * * Evento a ser chamado na alteração do campo de texto. */ textChangeEvent: EventEmitter; /** * * Lista de resultados encontrados. */ filterList: ItemList[]; /** * * Indica se o componente deve ser de multi-seleção (padrão: simples). */ multiSelect: boolean; /** * * Evento a ser emitido ao selecionar algum item. */ selectChangeEvent: EventEmitter; selected: ItemList[]; constructor(); ngOnInit(): void; onSearch($event: string): void; onSelect(selected: ItemList[]): void; get selectedValues(): string; onClear(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }