import { Destination, IataCode } from "./types.js"; //#region source/airports/getDestinations.d.ts /** * Returns a list of available destinations from an airport * * @param code - The IATA code of the airport */ declare const getDestinations: (code: IataCode) => Promise; //#endregion export { getDestinations };