import { a as LookupResult } from './lookup-result-DXCBA61F.js'; import { b as DatasetChanges, c as DatasetVerification } from './types-CnePu8im.js'; interface TseMunicipioMapping { codigoTse: string; ibgeCodigo: number; uf: string; nome: string; } interface TseMunicipiosDataVersion { id: 'tse-municipios'; nome: string; fonte: string; endpoints: string[]; capturadoEm: string; atualizadoEm: string; contagens: { municipios: number; }; alteracoes: DatasetChanges; verificacao: DatasetVerification; documentacao: string; } /** * TSE ↔ IBGE municipality cross-walk — offline embedded data from official TSE open data. * @see docs/OFFICIAL-SOURCES.md#tse-municipios */ declare function getMapeamentoTseIbge(): readonly TseMunicipioMapping[]; declare function lookupMunicipioIbgePorCodigoTse(codigo: string): LookupResult; declare function getMunicipioIbgePorCodigoTse(codigo: string): number | undefined; declare function getCodigosTsePorMunicipio(ibgeCodigo: number): readonly string[]; declare const TSE_MUNICIPIO_IBGE_ZIP_URL = "https://cdn.tse.jus.br/estatistica/sead/odsele/municipio_tse_ibge/municipio_tse_ibge.zip"; declare const TSE_MUNICIPIOS_GOLDEN_IBGE_SAO_PAULO = 3550308; declare const TSE_MUNICIPIOS_GOLDEN_CODIGO_TSE_SAO_PAULO = "71072"; declare const TSE_MUNICIPIOS_MIN_MAPPINGS = 5500; declare const TSE_MUNICIPIOS_MAX_MAPPINGS = 5800; declare const TSE_MUNICIPIOS_DATA_VERSION: TseMunicipiosDataVersion; export { TSE_MUNICIPIOS_DATA_VERSION, TSE_MUNICIPIOS_GOLDEN_CODIGO_TSE_SAO_PAULO, TSE_MUNICIPIOS_GOLDEN_IBGE_SAO_PAULO, TSE_MUNICIPIOS_MAX_MAPPINGS, TSE_MUNICIPIOS_MIN_MAPPINGS, TSE_MUNICIPIO_IBGE_ZIP_URL, type TseMunicipioMapping, type TseMunicipiosDataVersion, getCodigosTsePorMunicipio, getMapeamentoTseIbge, getMunicipioIbgePorCodigoTse, lookupMunicipioIbgePorCodigoTse };