import type { GeoPoint } from '../../types/geospatial';
export declare function calculateDistance(p1: GeoPoint, p2: GeoPoint): number;
export declare function isValidGeoPoint(point: unknown): point is GeoPoint;
