interface Country { name: string; short?: string; code: string; } declare const countriesWithoutMap: Country[]; declare const countryToCodeLookup: {}; declare const codeToCountryLookup: {}; export { codeToCountryLookup, countriesWithoutMap, countryToCodeLookup };