/**
 * 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.']
 */
export declare const COUNTRY_COMMON_NAMES: Record<string, string[]>;
