import type { FeatureCollection, Geometries, Properties } from '@turf/helpers'; import type { IParserData } from '../interface'; interface IParserCFG { idField?: string; featureId?: string; [key: string]: any; } export default function geoJSON(data: FeatureCollection, cfg?: IParserCFG): IParserData; export {};