import type { Feature, Geometry, MValue, Properties, VectorFeatures, VectorGeometry } from '../../index.js'; /** * Convert a GeoJSON Vector Feature to a GeoJSON Feature * @param data - GeoJSON Vector Feature * @param buildBBox - optional - build a bbox for the feature if desired * @returns - GeoJson Feature */ export declare function toFlatGeometry, D extends MValue = Properties, P extends Properties = Properties, G extends VectorGeometry = VectorGeometry>(data: VectorFeatures, buildBBox?: boolean): Feature>; /** * Convert a GeoJSON Vector Geometry to a Flat GeoJSON Geometry * @param geometry - GeoJSON Vector Geometry * @param buildBBox - optional - build a bbox for the feature if desired * @returns - GeoJSON Geometry */ export declare function vectorToFlat(geometry: VectorGeometry, buildBBox?: boolean): Geometry; //# sourceMappingURL=flat.d.ts.map