/** * Parse a WKB geometry (as hex string) into { type, coordinates }. * Supports Point, LineString, Polygon, MultiPoint, MultiLineString, MultiPolygon, * and GeometryCollection. Z and M coordinates are skipped (only XY output). * @param {string} hex * @returns {{ type: string, coordinates: any }} */ export function parseWkbHex(hex: string): { type: string; coordinates: any; };