export declare const DEFAULT_GEOJSON_STYLE_FILL_OPACITY = 0.1; export declare const defaultGeoJSONStyleProperties: GeoJSON.GeoJsonProperties; export declare const emptyGeoJSON: GeoJSON.FeatureCollection; export declare const featurePoint: GeoJSON.Feature; export declare const featureMultiPoint: GeoJSON.Feature; export declare const featurePolygon: GeoJSON.Feature; export declare const lineString: GeoJSON.Feature; export declare const lineStringCollection: GeoJSON.FeatureCollection; export interface GeoFeatureStyle { stroke?: string; fill?: string; 'stroke-width'?: number; 'stroke-opacity'?: number; 'fill-opacity'?: number; } export interface Coordinate { x: number; y: number; }