export declare class AddressGeometry {
    coordinates: Array<number>;
    type: string;
    constructor(obj?: any);
    getLat(): number;
    getLon(): number;
}
