import { AfterContentInit, ChangeDetectorRef, ElementRef, QueryList, TemplateRef } from '@angular/core'; import { Observable, ReplaySubject } from 'rxjs'; import { AutocompletePlaceholderComponent } from './autocomplete-placeholder.component'; import { AutoCompleteDirective } from './autocomplete.directive'; import { SuggestionComponent } from './suggestion/suggestion.component'; import * as i0 from "@angular/core"; export declare class AutocompleteComponent implements AfterContentInit { private readonly cdr; suggestions: QueryList; placeholder: QueryList; template: TemplateRef; suggestionListRef: ElementRef; hasVisibleSuggestion$: Observable; hasContent$: Observable; visibles$: Observable; directive$$: ReplaySubject; constructor(cdr: ChangeDetectorRef); ngAfterContentInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }