import { Airport, Coordinates } from "../airports/types.js"; //#region source/helpers/location.d.ts type Location = Airport | Coordinates; /** * Extracts the coordinates from a Location object. * * @param location - The Airport or Coordinates object. * @throws {Error} If unable to extract coordinates from the location. */ declare const extractCoordinates: (location: Location) => Coordinates; //#endregion export { Location, extractCoordinates };