import { HttpClient } from 'aurelia-fetch-client'; export declare class AddressControl { private httpClient; value: any; variant: 'filled' | 'outline'; dense: boolean; disabled: boolean; countryType: 'input' | 'list'; countryList: 'all' | Array; labels: string[]; dicoContext: string; allowDescription: boolean; allowAccessInformation: boolean; allowLatLngEdition: boolean; private ready; constructor(httpClient: HttpClient); bind(): void; valueChanged(): void; fixValue(): void; get computedCountryList(): Array; context(): string; addressChanged(): void; fetchLatLng(): Promise; }