import { boundingBox } from "./bounding-box.js"; import { coordinate } from "./coordinate.js"; import { feature } from "./feature.js"; import { featureCollection } from "./feature-collection.js"; import { geojson } from "./geojson.js"; import { geometryCollection } from "./geometry.js"; import { lineString } from "./line-string.js"; import { multiLineString } from "./multi-line-string.js"; import { multiPoint } from "./multi-point.js"; import { multiPolygon } from "./multi-polygon.js"; import { point } from "./point.js"; import { polygon } from "./polygon.js"; declare const module: typeof geojson & { boundingBox: typeof boundingBox; feature: typeof feature; featureCollection: typeof featureCollection; geometryCollection: typeof geometryCollection; lineString: typeof lineString; multiLineString: typeof multiLineString; multiPoint: typeof multiPoint; multiPolygon: typeof multiPolygon; point: typeof point; polygon: typeof polygon; coordinate: typeof coordinate; }; export { module as geojson }; export type { GeoJsonBoundingBox } from "./bounding-box.js"; export type { GeoJsonCoordinate } from "./coordinate.js"; export type { GeoJsonFeature } from "./feature.js"; export type { GeoJsonFeatureCollection } from "./feature-collection.js"; export type { GeoJson } from "./geojson.js"; export type { GeoJsonGeometry } from "./geometry.js"; export type { GeoJsonLineString } from "./line-string.js"; export type { GeoJsonMultiLineString } from "./multi-line-string.js"; export type { GeoJsonMultiPoint } from "./multi-point.js"; export type { GeoJsonMultiPolygon } from "./multi-polygon.js"; export type { GeoJsonPoint } from "./point.js"; export type { GeoJsonPolygon } from "./polygon.js";