import type { Coordinates } from '../../types';
/**
 * Returns the distance between two points
 */
export declare function distanceBetween(p1: Coordinates, p2: Coordinates): number;
