import { IataCode } from "../airports/types.js"; import { StrDate } from "../date.types.js"; import { Fare } from "./types.js"; //#region source/fares/findDailyFaresInRange.d.ts /** * Find daily fares for a given origin and destination airport, within a specified date range * * @param from - The IATA code for the origin airport * @param to - The IATA code for the destination airport * @param startDate - The start date of the search range, in yyyy-mm-dd format * @param endDate - The end date of the search range, in yyyy-mm-dd format * @param currency - The currency code to use for pricing data (default is EUR) */ declare const findDailyFaresInRange: (from: IataCode, to: IataCode, startDate: StrDate, endDate: StrDate, currency?: string) => Promise; //#endregion export { findDailyFaresInRange };