import { GeoJson } from '../../konva2d/core/GeoJson'; import { IFeature } from '../../model/map/IFeature'; interface IGeoJson { url: string; features: IFeature; } export declare class GeoJsonManager { jsonList: IGeoJson[]; geoJson: GeoJson; constructor(); init(): void; makeGeoJsonData(url: string): Promise; } export {};