import { IataCode } from "../airports/types.js"; import { StrDate } from "../date.types.js"; //#region source/flights/getDates.d.ts /** * Returns a list of available flight dates between two airports * * @param from - The IATA code of the departure airport * @param to - The IATA code of the arrival airport */ declare const getDates: (from: IataCode, to: IataCode) => Promise; //#endregion export { getDates };