import { IataCode } from "./types.js"; //#region source/airports/findRoutes.d.ts /** * Finds available routes between two airports. * * @param from - The departure airport IATA code. * @param to - The arrival airport IATA code. */ declare const findRoutes: (from: IataCode, to: IataCode) => Promise; //#endregion export { findRoutes };