import { AfterViewInit, ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core'; import { FormControl } from '@angular/forms'; import { MatAutocompleteTrigger } from '@angular/material/autocomplete'; import * as i0 from "@angular/core"; /** * Created by gbray on 16/05/2017. */ export declare class AutoCompleteFragment implements OnInit, AfterViewInit { private rd; theme: string; model: any; focus: boolean; fieldToDisplay: string; suggestions: any[]; control: FormControl; placeholder: string; required: boolean; width: string; min: number; debounceDelay: number; id: string; appearance: string; color: string; hint: string; error: string; timeoutID: any; ordered: boolean; priorOptionSelected: boolean; autoCompleteGenericEmitter: EventEmitter; autoCompleteOnSelectGenericEmitter: EventEmitter; autoCompleteOptionSelectedGenericEmitter: EventEmitter; autoCompleteBlurEmitter: EventEmitter; autoCompleteClickEmitter: EventEmitter; onModelChangeEmitter: EventEmitter; el: ElementRef; trigger: MatAutocompleteTrigger; auto: ElementRef; constructor(rd: Renderer2); ngOnInit(): void; ngAfterViewInit(): void; /** * Search by throwing a autoCompleteGenericEmitter to the calling template or component. * The search is character by character if no debounceDelay specified, * When debounceDelay is reached else. * */ search(event: any): void; debounceEventEmitter(event: any): void; doSearch(event: any): void; onSelect(suggestion: any): void; onInputAutoCompleteBlur(event: any): void; onInputAutoCompleteClick(event: any): void; optionSelectedValue(event: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } //# sourceMappingURL=auto-complete.fragment.d.ts.map