import type { Static } from '@sinclair/typebox'; import type { Feature } from '../types/feature.js'; import CoT from '../cot.js'; export interface ToGeoJSONOptions { /** * If a numeric 2525D/E SIDC is present in the milicon detail, surface it * as the GeoJSON type property in place of a generic CoT Atom type */ normalize2525?: boolean; } /** * Return a GeoJSON Feature from an XML CoT message */ export declare function to_geojson(cot: CoT, opts?: ToGeoJSONOptions): Promise>;