/**
* A record of common names for countries, keyed by their ISO 2-letter codes.
*
* @example
* COUNTRY_COMMON_NAMES['US'] // ['USA', 'United States', 'America', 'U.S.A.', 'U.S.']
*/
exportdeclare const COUNTRY_COMMON_NAMES: Record<string, string[]>;