import { OnInit } from '@angular/core'; import { CuiControlComponent } from '../cui-control.component'; import { Observable } from 'rxjs'; import { Subject } from 'rxjs'; import { ComponentForDynamicInsert } from "../../cui-data/dynamic-container/dynamic-container.component"; import { CuiModelHelper } from "../../services/cui/cui.helper"; export declare class CuiTypeaheadNewControlComponent extends CuiControlComponent implements OnInit { cuiModelHelper: CuiModelHelper; componentForOptions: ComponentForDynamicInsert; componentForOptionGroups: ComponentForDynamicInsert; componentForLabel: ComponentForDynamicInsert; dataSource: ((searchString: string) => Observable); setupStartValueFunction: ((value: any) => any); sourceSubject: Subject; startValue: any; items: Observable<{}>; constructor(cuiModelHelper: CuiModelHelper); ngOnInit(): void; }