import { a as LookupResult } from './lookup-result-DXCBA61F.js'; import { b as DatasetChanges, c as DatasetVerification } from './types-CnePu8im.js'; interface Aeroporto { iata: string | null; icao: string; nome: string; uf: string; municipioIbge: number | null; municipioNome: string | null; } interface AeroportosDataVersion { id: 'aeroportos'; nome: string; fonte: string; endpoints: string[]; capturadoEm: string; atualizadoEm: string; contagens: { aeroportos: number; comIata: number; }; alteracoes: DatasetChanges; verificacao: DatasetVerification; documentacao: string; } /** * Brazilian airports — offline embedded data from official ANAC source. * @see docs/OFFICIAL-SOURCES.md#aeroportos */ /** Returns every embedded ANAC aerodrome row (in-memory reference, not a copy). */ declare function getAllAeroportos(): readonly Aeroporto[]; /** @deprecated Use {@link getAllAeroportos} instead. Removed in v2.0. */ declare function getAeroportos(): readonly Aeroporto[]; declare function lookupAeroportoPorIata(code: string): LookupResult; declare function lookupAeroportoPorIcao(code: string): LookupResult; declare function getAeroportoPorIata(code: string): Aeroporto | undefined; declare function getAeroportoPorIcao(code: string): Aeroporto | undefined; declare function getAeroportosPorMunicipio(ibgeCodigo: number): readonly Aeroporto[]; declare const ANAC_AERODROMOS_PUBLICOS_CSV_URL = "https://www.anac.gov.br/acesso-a-informacao/dados-abertos/areas-de-atuacao/aerodromos/lista-de-aerodromos-publicos/aerodromospublicosv1.csv/@@download/file/aerodromospublicosv1.csv"; declare const AEROPORTOS_GOLDEN_IATA_GRU = "GRU"; declare const AEROPORTOS_GOLDEN_IATA_GIG = "GIG"; declare const AEROPORTOS_GOLDEN_IATA_BSB = "BSB"; declare const AEROPORTOS_GOLDEN_IATA_SSA = "SSA"; declare const AEROPORTOS_GOLDEN_IATA_CGB = "CGB"; declare const AEROPORTOS_DATA_VERSION: AeroportosDataVersion; export { AEROPORTOS_DATA_VERSION, AEROPORTOS_GOLDEN_IATA_BSB, AEROPORTOS_GOLDEN_IATA_CGB, AEROPORTOS_GOLDEN_IATA_GIG, AEROPORTOS_GOLDEN_IATA_GRU, AEROPORTOS_GOLDEN_IATA_SSA, ANAC_AERODROMOS_PUBLICOS_CSV_URL, type Aeroporto, type AeroportosDataVersion, getAeroportoPorIata, getAeroportoPorIcao, getAeroportos, getAeroportosPorMunicipio, getAllAeroportos, lookupAeroportoPorIata, lookupAeroportoPorIcao };