import { AddressGeometry } from './addressGeometry.model';
import { GeoJsonProperties } from './geoJsonProperties.model';
export declare class GeoJson {
    geometry: AddressGeometry;
    type: string;
    properties: GeoJsonProperties;
    constructor(obj?: any);
}
