import { type CoordinateSystemCode } from "./gef-schemas.js"; export interface WGS84Coords { lat: number; lon: number; } export interface CoordinateInput { coordinateSystem: CoordinateSystemCode; x: number; y: number; } export type CoordinateConversionResult = { success: true; coords: WGS84Coords; } | { success: false; error: string; }; /** * Convert coordinates from a GEF coordinate system to WGS84 (EPSG:4326) * Returns result object with success flag and either coords or error message */ export declare function convertToWGS84(input: CoordinateInput): CoordinateConversionResult; //# sourceMappingURL=coordinates.d.ts.map