/** @description Geolocation additional information for an address. */
export declare class GeolocationItem {
    /** @description Specifies the supported geolocation types. */
    type?: GeolocationType;
    /** @description The geolocation value. */
    value?: string;
}
/** @description Supported geolocation types. */
export declare enum GeolocationType {
    /** @description what3words field to help identify the location */
    what3words = "what3words"
}
