import { LatLng } from '@targomo/core';
export declare function calculateDistance(from: LatLng, to: LatLng): number;
export declare function midpoint(from: LatLng, to: LatLng): {
    lat: number;
    lng: number;
};
