import { EventEmitter, OnChanges, ChangeDetectorRef } from '@angular/core'; export declare class ConichiSelectComponent implements OnChanges { private cd; openDropdown: boolean; displayValue: any; selection: string; modelChange: EventEmitter<{}>; placeholder: string; options: Array; keys: string; model: string; clickedOutside($event: any): void; constructor(cd: ChangeDetectorRef); ngOnChanges(changes: any): void; focusInput($event: any): void; assignKeys(): void; select(option: any): void; }