import { EventEmitter, AfterViewInit, NgZone } from '@angular/core';
export declare class NgAutocompleteComponent implements AfterViewInit {
    private ngZone;
    constructor(ngZone: NgZone);
    style: any;
    placeholder: string;
    addressType: string;
    country: string[];
    onAddressChange: EventEmitter<any>;
    addresstext: any;
    autocompleteInput: string;
    queryWait: boolean;
    ngAfterViewInit(): void;
    private getPlaceAutocomplete;
    invokeEvent(place: any): void;
}
