import { IataCode } from "../airports/types.js"; import { StrDate } from "../date.types.js"; import { CheapestFares } from "./types.js"; //#region source/fares/getCheapestPerDay.d.ts /** * Returns the cheapest one-way fares between two airports for a given month * * @param from - The IATA code of the departure airport * @param to - The IATA code of the arrival airport * @param startDate - The start date for the search in the format "YYYY-MM-DD" * @param currency - The currency to use for the fares */ declare const getCheapestPerDay: (from: IataCode, to: IataCode, startDate: StrDate, currency?: string) => Promise; //#endregion export { getCheapestPerDay };