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