import { Location } from "../helpers/location.js"; //#region source/airports/calculateDistance.d.ts /** * Calculates the total distance between consecutive locations. * * @param locations - The array of Location objects. */ declare const calculateDistance: (locations: Location[]) => number; //#endregion export { calculateDistance };