import { IataCode, MonthlySchedule, Schedule, Schedules } from "./types.js"; //#region source/airports/getSchedules.d.ts /** * Returns all available flight schedules for a departure airport. * * @param from - The IATA code of the departure airport * @throws {Error} Error if no schedules are found */ declare const getSchedules: (from: IataCode) => Promise; /** * Returns flight schedules between two airports for a specific period. * * @param from - The IATA code of the departure airport * @param to - The IATA code of the arrival airport * @param year - The year for which to fetch schedules * @param month - The month for which to fetch schedules * @throws {Error} Error if no schedule is found */ declare const getSchedulesByPeriod: (from: IataCode, to: IataCode, year: number, month: number) => Promise; /** * Returns the flight schedule between two airports. * * @param from - The IATA code of the departure airport * @param to - The IATA code of the arrival airport * @throws {Error} Error if no schedule is found */ declare const getSchedulesByRoute: (from: IataCode, to: IataCode) => Promise; //#endregion export { getSchedules, getSchedulesByPeriod, getSchedulesByRoute };