// Type definitions for airport-coordinates-object.json export type AeroflyAirportCoordinatesObject = { code: string; name: string; lat: number; lon: number; }; declare const AeroflyAirportCoordinatesObjects: AeroflyAirportCoordinatesObject[]; export default AeroflyAirportCoordinatesObjects;