import { a as LookupResult } from './lookup-result-DXCBA61F.js'; import { b as DatasetChanges, c as DatasetVerification } from './types-CnePu8im.js'; interface Incoterm { codigo: string; nome: string; edicao: '2020'; } interface IncotermsDataVersion { id: 'incoterms'; nome: string; fonte: string; endpoints: string[]; capturadoEm: string; atualizadoEm: string; contagens: { incoterms: number; }; alteracoes: DatasetChanges; verificacao: DatasetVerification; documentacao: string; } /** * ICC Incoterms 2020 lookup — offline static reference (code + name only). * @see docs/OFFICIAL-SOURCES.md#incoterms */ /** Returns every embedded Incoterms 2020 code (in-memory reference, not a copy). */ declare function getAllIncoterms(): readonly Incoterm[]; /** @deprecated Use {@link getAllIncoterms} instead. Removed in v2.0. */ declare function getIncoterms(): readonly Incoterm[]; declare function lookupIncotermPorCodigo(codigo: string): LookupResult; declare function getIncotermPorCodigo(codigo: string): Incoterm | undefined; declare const ICC_INCOTERMS_2020_URL = "https://iccwbo.org/resources-for-business/incoterms-rules/"; declare const INCOTERMS_GOLDEN_FOB = "FOB"; declare const INCOTERMS_DATA_VERSION: IncotermsDataVersion; export { ICC_INCOTERMS_2020_URL, INCOTERMS_DATA_VERSION, INCOTERMS_GOLDEN_FOB, type Incoterm, type IncotermsDataVersion, getAllIncoterms, getIncotermPorCodigo, getIncoterms, lookupIncotermPorCodigo };