import { CdkOverlayOrigin } from '@angular/cdk/overlay'; import { ElementRef, OnInit } from '@angular/core'; export declare class AutoCompleteComponent implements OnInit { cdkOverlayOrigin: CdkOverlayOrigin; constructor(); ngOnInit(): void; close(): void; atDataSource: any[]; overlayMinWidth: any; overlayWidth: any; dropDownPosition: 'top' | 'center' | 'bottom' | 'hidden'; atOpen: boolean; bindComponent: any; searchValue: string; changeValue(value: string, origin: ElementRef, component: any): void; highlight(item: string): string[]; changeAuto(value: string): void; }