import { Airport, IataCode } from "./types.js"; //#region source/airports/getInfo.d.ts /** * Returns information about an airport * * @param code - The IATA code of the airport */ declare const getInfo: (code: IataCode) => Promise; //#endregion export { getInfo };