import { LatLong } from '../tracking/lat-long';
import { AddressBase } from './address-base';
/** @description The basic address type related to service points */
export declare class ServicePointAddress extends AddressBase {
    /** @description Geographical location */
    geo?: LatLong;
}
