import { Feature, FeatureCollection, Geometry, LineString, MultiLineString, Point, Polygon } from "geojson"; import { GeofenceGeometry, LegGeometry, PlaceGeometry } from "@aws-sdk/client-location"; /** * Converts an array of GeoJSON Features to a FeatureCollection. * * @param features An array of GeoJSON Features. * @returns A GeoJSON FeatureCollection containing provided Features. */ export declare function toFeatureCollection(features: Feature[]): FeatureCollection; /** * Optionally flatten the Amazon Location Service object. * * @param obj Amazon Location Service object. * @returns Flattened object. */ export declare function flattenProperties(obj: unknown, prefix?: string): Record; export declare function emptyFeatureCollection(): FeatureCollection; export declare function convertGeometryToFeature(geometry?: GeofenceGeometry | LegGeometry | PlaceGeometry, properties?: any): Feature | undefined;