import { AfterViewInit, EventEmitter, OnChanges, SimpleChanges, ViewContainerRef } from '@angular/core'; import { FormControl } from '@angular/forms'; import { Observable } from 'rxjs'; export declare class EntitySelectComponent implements AfterViewInit, OnChanges { private _viewContainerRef; searchField: FormControl; readonly: boolean; search: EventEmitter; parent: any; parent$: Observable; constructor(_viewContainerRef: ViewContainerRef); onSearch(text: string): void; ngOnChanges(changes: SimpleChanges): void; calcParent(): any; ngAfterViewInit(): void; }