import { Point, Position } from "geojson"; import { Project, Unproject } from "../common"; import { JSONObject } from "../store/store"; export declare function getMidPointCoordinates(featureCoords: Position[], precision: number, project: Project, unproject: Unproject): Position[]; export declare function getMidPoints(selectedCoords: Position[], properties: (index: number) => JSONObject, precision: number, project: Project, unproject: Unproject): { geometry: Point; properties: JSONObject; }[];