declare const CCA_2_ARRAY: string[];
type CCA2 = (typeof CCA_2_ARRAY)[number];
declare const TLD_ARRAY: string[];
type TLD = (typeof TLD_ARRAY)[number];
declare const CCN_3_ARRAY: string[];
type CCN3 = (typeof CCN_3_ARRAY)[number];
declare const CCA_3_ARRAY: string[];
type CCA3 = (typeof CCA_3_ARRAY)[number];
declare const CIOC_ARRAY: string[];
type CIOC = (typeof CIOC_ARRAY)[number];
declare const COUNTRY_STATUS_ARRAY: string[];
type CountryStatus = (typeof COUNTRY_STATUS_ARRAY)[number];
declare const COMMON_NAME_ARRAY: string[];
type CommonName = (typeof COMMON_NAME_ARRAY)[number];
declare const OFFICIAL_NAME_ARRAY: string[];
type OfficialName = (typeof OFFICIAL_NAME_ARRAY)[number];
declare const CURRENCY_CODE_ARRAY: string[];
type CurrencyCode = (typeof CURRENCY_CODE_ARRAY)[number];
declare const CURRENCY_NAME_ARRAY: string[];
type CurrencyName = (typeof CURRENCY_NAME_ARRAY)[number];
declare const CURRENCY_SYMBOL_ARRAY: string[];
type CurrencySymbol = (typeof CURRENCY_SYMBOL_ARRAY)[number];
declare const REGION_ARRAY: string[];
type Region = (typeof REGION_ARRAY)[number];
declare const SUB_REGION_ARRAY: string[];
type SubRegion = (typeof SUB_REGION_ARRAY)[number];
declare const CAPITAL_ARRAY: string[];
type Capital = (typeof CAPITAL_ARRAY)[number];
declare const LANG_ARRAY: string[];
type Lang = (typeof LANG_ARRAY)[number];
declare const LANGUAGE_NAME_ARRAY: string[];
type LanguageName = (typeof LANGUAGE_NAME_ARRAY)[number];
type Mapped<K extends string, V> = Partial<{
    [k in K]: V;
}>;
interface Currency {
    name: CurrencyName;
    symbol: CurrencySymbol;
}
interface Name {
    common: string;
    official: string;
    native: Mapped<Lang, {
        official: string;
        common: string;
    }>;
}
type LatLong = [number, number];
interface InternationalDirectDialing {
    root: string;
    suffixes: string[];
}
interface Country {
    name: Name;
    tld: string[];
    cca2: CCA2;
    ccn3: CCN3;
    cca3: CCA3;
    cioc: CIOC;
    independent: boolean;
    status: CountryStatus;
    unMember: boolean;
    currencies: Mapped<CurrencyCode, Currency> | [];
    idd: InternationalDirectDialing;
    capital: Capital[];
    altSpellings: string[];
    region: Region;
    subregion: SubRegion;
    languages: Mapped<Lang, LanguageName>;
    translations: Mapped<Lang, {
        official: string;
        common: string;
    }>;
    latlng: LatLong;
    demonyms: Mapped<Lang, {
        f: string;
        m: string;
    }>;
    landlocked: boolean;
    borders: CCA3[];
    area: number;
    callingCodes: string[];
    flag: string;
}
type Listable = 'default' | 'cca2' | 'tld' | 'ccn3' | 'cca3' | 'cioc' | 'countryStatus' | 'commonName' | 'officialName' | 'currencyCode' | 'currencyName' | 'currencySymbol' | 'region' | 'subRegion' | 'capital' | 'lang' | 'languageName';
type List = [] | Array<CCA2> | Array<TLD> | Array<CCN3> | Array<CCA3> | Array<CIOC> | Array<CountryStatus> | Array<CommonName> | Array<OfficialName> | Array<CurrencyCode> | Array<CurrencyName> | Array<CurrencySymbol> | Array<Region> | Array<SubRegion> | Array<Capital> | Array<Lang> | Array<LanguageName>;
type Mappable = 'default' | 'name' | 'tld' | 'ccn3' | 'cca3' | 'cioc' | 'independent' | 'idd' | 'countryStatus' | 'currencies' | 'region' | 'subRegion' | 'capitals' | 'languages' | 'translations' | 'latLng' | 'landlocked' | 'borders' | 'area' | 'flag' | 'demonyms' | 'callingCodes';
/**
 * Get the SVG flag
 * @param {CCA2}cca2 - The ISO2 code of the country
 * @return{SVGElement} - returns a svg
 */
export function flag(cca2?: CCA2): Promise<string>;
/**
 * Get the Geo-Json data of a country
 * @param cca2  - The ISO2 code of the country
 * @return{string} JSON
 */
export function geo(cca2?: CCA2): Promise<object>;
/**
 * Get the Topo-Json data of a country
 * @param cca2 - The ISO2 code of the country
 * @return{string} JSON
 */
export function topo(cca2?: CCA2): Promise<object>;
/**
 * ### List of string values
 * @param {Listable} property - listable property
 * @return {Promise<string[]>} Array
 */
export function ls(property?: Listable): Promise<List>;
/**
 * List cca2 values
 */
export function cca2s(): Promise<CCA2[]>;
/**
 * List tld values
 */
export function tlds(): Promise<TLD[]>;
/**
 * List ccn3 values
 */
export function ccn3s(): Promise<CCN3[]>;
/**
 * List cca3 values
 */
export function cca3s(): Promise<CCA3[]>;
/**
 * List cioc values
 */
export function ciocs(): Promise<CIOC[]>;
/**
 * List country status values
 */
export function countryStatuses(): Promise<CountryStatus[]>;
/**
 * List common name values
 */
export function commonNames(): Promise<CommonName[]>;
/**
 * List official name values
 */
export function officialNames(): Promise<OfficialName[]>;
/**
 * List currency code values
 */
export function currencyCodes(): Promise<CurrencyCode[]>;
/**
 * List currency name values
 */
export function currencyNames(): Promise<CurrencyName[]>;
/**
 * List currency symbol values
 */
export function currencySymbols(): Promise<CurrencySymbol[]>;
/**
 * List region values
 */
export function regions(): Promise<Region[]>;
/**
 * List subRegion values
 */
export function subRegions(): Promise<SubRegion[]>;
/**
 * List capital values
 */
export function capitals(): Promise<Capital[]>;
/**
 * List lang values
 */
export function langs(): Promise<Lang[]>;
/**
 * List languageName values
 */
export function languageNames(): Promise<LanguageName[]>;
/**
 * ### Mapped list of string values
 *
 * Example:
 * ```
 *  const topLevelDomains = lsM('tld');   // {'HT': ['.ht'], ...}
 * ```
 * @param {Mappable} property - mappable property
 * @return {Record<string, any>} - a Record of values.
 */
export function lsM(property?: Mappable): Promise<{
    AW: {
        common: string;
        official: string;
        native: {
            nld: {
                official: string;
                common: string;
            };
            pap: {
                official: string;
                common: string;
            };
        };
    };
    AF: {
        common: string;
        official: string;
        native: {
            prs: {
                official: string;
                common: string;
            };
            pus: {
                official: string;
                common: string;
            };
            tuk: {
                official: string;
                common: string;
            };
        };
    };
    AO: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
        };
    };
    AI: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    AX: {
        common: string;
        official: string;
        native: {
            swe: {
                official: string;
                common: string;
            };
        };
    };
    AL: {
        common: string;
        official: string;
        native: {
            sqi: {
                official: string;
                common: string;
            };
        };
    };
    AD: {
        common: string;
        official: string;
        native: {
            cat: {
                official: string;
                common: string;
            };
        };
    };
    AE: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    AR: {
        common: string;
        official: string;
        native: {
            grn: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    AM: {
        common: string;
        official: string;
        native: {
            hye: {
                official: string;
                common: string;
            };
        };
    };
    AS: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            smo: {
                official: string;
                common: string;
            };
        };
    };
    AQ: {
        common: string;
        official: string;
        native: {};
    };
    TF: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    AG: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    AU: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    AT: {
        common: string;
        official: string;
        native: {
            bar: {
                official: string;
                common: string;
            };
        };
    };
    AZ: {
        common: string;
        official: string;
        native: {
            aze: {
                official: string;
                common: string;
            };
            rus: {
                official: string;
                common: string;
            };
        };
    };
    BI: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            run: {
                official: string;
                common: string;
            };
        };
    };
    BE: {
        common: string;
        official: string;
        native: {
            deu: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nld: {
                official: string;
                common: string;
            };
        };
    };
    BJ: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    BF: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    BD: {
        common: string;
        official: string;
        native: {
            ben: {
                official: string;
                common: string;
            };
        };
    };
    BG: {
        common: string;
        official: string;
        native: {
            bul: {
                official: string;
                common: string;
            };
        };
    };
    BH: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    BS: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    BA: {
        common: string;
        official: string;
        native: {
            bos: {
                official: string;
                common: string;
            };
            hrv: {
                official: string;
                common: string;
            };
            srp: {
                official: string;
                common: string;
            };
        };
    };
    BL: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    SH: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    BY: {
        common: string;
        official: string;
        native: {
            bel: {
                official: string;
                common: string;
            };
            rus: {
                official: string;
                common: string;
            };
        };
    };
    BZ: {
        common: string;
        official: string;
        native: {
            bjz: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    BM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    BO: {
        common: string;
        official: string;
        native: {
            aym: {
                official: string;
                common: string;
            };
            grn: {
                official: string;
                common: string;
            };
            que: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    BQ: {
        /**
         * List cca3 values
         */
        common: string;
        official: string;
        native: {
            nld: {
                official: string;
                common: string;
            };
            pap: {
                official: string;
                common: string;
            };
        };
    };
    BR: {
        common: string;
        official: string;
        native: {
            por: {
                /**
                 * List common name values
                 */
                official: string;
                common: string;
            };
        };
    };
    BB: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    BN: {
        common: string;
        official: string;
        native: {
            msa: {
                official: string;
                common: string;
            };
        };
    };
    BT: {
        common: string;
        official: string;
        native: {
            dzo: {
                official: string;
                common: string;
            };
        };
    };
    BV: {
        common: string;
        official: string;
        native: {
            /**
             * List currency symbol values
             */
            nor: {
                official: string;
                common: string;
            };
        };
    };
    BW: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            tsn: {
                official: string;
                common: string;
            };
        };
    };
    CF: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string; /**
                 * List capital values
                 */
                common: string;
            };
            sag: {
                official: string;
                common: string;
            };
        };
    };
    CA: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
        };
    };
    CC: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    CH: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            gsw: {
                official: string;
                common: string;
            };
            ita: {
                official: string;
                common: string;
            };
            roh: {
                official: string;
                common: string;
            };
        };
    };
    CL: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    CN: {
        common: string;
        official: string;
        native: {
            zho: {
                official: string;
                common: string;
            };
        };
    };
    CI: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    CM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
        };
    };
    CD: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            kon: {
                official: string;
                common: string;
            };
            lin: {
                official: string;
                common: string;
            };
            lua: {
                official: string;
                common: string;
            };
            swa: {
                official: string;
                common: string;
            };
        };
    };
    CG: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            kon: {
                official: string;
                common: string;
            };
            lin: {
                official: string;
                common: string;
            };
        };
    };
    CK: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            rar: {
                official: string;
                common: string;
            };
        };
    };
    CO: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    KM: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            zdj: {
                official: string;
                common: string;
            };
        };
    };
    CV: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
        };
    };
    CR: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    CU: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    CW: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            nld: {
                official: string;
                common: string;
            };
            pap: {
                official: string;
                common: string;
            };
        };
    };
    CX: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    KY: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    CY: {
        common: string;
        official: string;
        native: {
            ell: {
                official: string;
                common: string;
            };
            tur: {
                official: string;
                common: string;
            };
        };
    };
    CZ: {
        common: string;
        official: string;
        native: {
            ces: {
                official: string;
                common: string;
            };
            slk: {
                official: string;
                common: string;
            };
        };
    };
    DE: {
        common: string;
        official: string;
        native: {
            deu: {
                official: string;
                common: string;
            };
        };
    };
    DJ: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
        };
    };
    DM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    DK: {
        common: string;
        official: string;
        native: {
            dan: {
                official: string;
                common: string;
            };
        };
    };
    DO: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    DZ: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    EC: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    EG: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    ER: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            tir: {
                official: string;
                common: string;
            };
        };
    };
    EH: {
        common: string;
        official: string;
        native: {
            ber: {
                official: string;
                common: string;
            };
            mey: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    ES: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    EE: {
        common: string;
        official: string;
        native: {
            est: {
                official: string;
                common: string;
            };
        };
    };
    ET: {
        common: string;
        official: string;
        native: {
            amh: {
                official: string;
                common: string;
            };
        };
    };
    FI: {
        common: string;
        official: string;
        native: {
            fin: {
                official: string;
                common: string;
            };
            swe: {
                official: string;
                common: string;
            };
        };
    };
    FJ: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fij: {
                official: string;
                common: string;
            };
            hif: {
                official: string;
                common: string;
            };
        };
    };
    FK: {
        common: string;
        official: string;
        /**
         * ### Get a list of all the countries
         * @return {Country[]} All the countries
         */
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    FR: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    FO: {
        common: string;
        official: string;
        native: {
            dan: {
                official: string;
                common: string;
            };
            fao: {
                official: string;
                common: string;
            };
        };
    };
    FM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    GA: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    GB: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    GE: {
        common: string;
        official: string;
        native: {
            kat: {
                official: string;
                common: string;
            };
        };
    };
    GG: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nfr: {
                official: string;
                common: string;
            };
        };
    };
    GH: {
        common: string;
        official: string;
        /**
         * ### Search for Countries
         *
         * example:
         * ```javascript
         * const tropicals = get("region", "Caribbean") ;
         * ```
         * @param {string} property Searchable property
         * @param {string} value Property value
         * @return {Country[]}
         */
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    GI: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    GN: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    GP: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    GM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    GW: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
            pov: {
                official: string;
                common: string;
            };
        };
    };
    GQ: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            por: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    GR: {
        common: string;
        official: string;
        native: {
            ell: {
                official: string;
                common: string;
            };
        };
    };
    GD: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    GL: {
        common: string;
        official: string;
        native: {
            kal: {
                official: string;
                common: string;
            };
        };
    };
    GT: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    GF: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    GU: {
        common: string;
        official: string;
        native: {
            cha: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    GY: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    HK: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            zho: {
                official: string;
                common: string;
            };
        };
    };
    HM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    HN: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    HR: {
        common: string;
        official: string;
        native: {
            hrv: {
                official: string;
                common: string;
            };
        };
    };
    HT: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            hat: {
                official: string;
                common: string;
            };
        };
    };
    HU: {
        common: string;
        official: string;
        native: {
            hun: {
                official: string;
                common: string;
            };
        };
    };
    ID: {
        common: string;
        official: string;
        native: {
            ind: {
                official: string;
                common: string;
            };
        };
    };
    IM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            glv: {
                official: string;
                common: string;
            };
        };
    };
    IN: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            hin: {
                official: string;
                common: string;
            };
            tam: {
                official: string;
                common: string;
            };
        };
    };
    IO: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    IE: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            gle: {
                official: string;
                common: string;
            };
        };
    };
    IR: {
        common: string;
        official: string;
        native: {
            fas: {
                official: string;
                common: string;
            };
        };
    };
    IQ: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            arc: {
                official: string;
                common: string;
            };
            ckb: {
                official: string;
                common: string;
            };
        };
    };
    IS: {
        common: string;
        official: string;
        native: {
            isl: {
                official: string;
                common: string;
            };
        };
    };
    IL: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            heb: {
                official: string;
                common: string;
            };
        };
    };
    IT: {
        common: string;
        official: string;
        native: {
            ita: {
                official: string;
                common: string;
            };
        };
    };
    JM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            jam: {
                official: string;
                common: string;
            };
        };
    };
    JE: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nrf: {
                official: string;
                common: string;
            };
        };
    };
    JO: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    JP: {
        common: string;
        official: string;
        native: {
            jpn: {
                official: string;
                common: string;
            };
        };
    };
    KZ: {
        common: string;
        official: string;
        native: {
            kaz: {
                official: string;
                common: string;
            };
            rus: {
                official: string;
                common: string;
            };
        };
    };
    KE: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            swa: {
                official: string;
                common: string;
            };
        };
    };
    KG: {
        common: string;
        official: string;
        native: {
            kir: {
                official: string;
                common: string;
            };
            rus: {
                official: string;
                common: string;
            };
        };
    };
    KH: {
        common: string;
        official: string;
        native: {
            khm: {
                official: string;
                common: string;
            };
        };
    };
    KI: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            gil: {
                official: string;
                common: string;
            };
        };
    };
    KN: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    KR: {
        common: string;
        official: string;
        native: {
            kor: {
                official: string;
                common: string;
            };
        };
    };
    XK: {
        common: string;
        official: string;
        native: {
            sqi: {
                official: string;
                common: string;
            };
            srp: {
                official: string;
                common: string;
            };
        };
    };
    KW: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    LA: {
        common: string;
        official: string;
        native: {
            lao: {
                official: string;
                common: string;
            };
        };
    };
    LB: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
        };
    };
    LR: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    LY: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    LC: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    LI: {
        common: string;
        official: string;
        native: {
            deu: {
                official: string;
                common: string;
            };
        };
    };
    LK: {
        common: string;
        official: string;
        native: {
            sin: {
                official: string;
                common: string;
            };
            tam: {
                official: string;
                common: string;
            };
        };
    };
    LS: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            sot: {
                official: string;
                common: string;
            };
        };
    };
    LT: {
        common: string;
        official: string;
        native: {
            lit: {
                official: string;
                common: string;
            };
        };
    };
    LU: {
        common: string;
        official: string;
        native: {
            deu: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            ltz: {
                official: string;
                common: string;
            };
        };
    };
    LV: {
        common: string;
        official: string;
        native: {
            lav: {
                official: string;
                common: string;
            };
        };
    };
    MO: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
            zho: {
                official: string;
                common: string;
            };
        };
    };
    MF: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    MA: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            ber: {
                official: string;
                common: string;
            };
        };
    };
    MC: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    MD: {
        common: string;
        official: string;
        native: {
            ron: {
                official: string;
                common: string;
            };
        };
    };
    MG: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            mlg: {
                official: string;
                common: string;
            };
        };
    };
    MV: {
        common: string;
        official: string;
        native: {
            div: {
                official: string;
                common: string;
            };
        };
    };
    MX: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    MH: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            mah: {
                official: string;
                common: string;
            };
        };
    };
    MK: {
        common: string;
        official: string;
        native: {
            mkd: {
                official: string;
                common: string;
            };
        };
    };
    ML: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    MT: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            mlt: {
                official: string;
                common: string;
            };
        };
    };
    MM: {
        common: string;
        official: string;
        native: {
            mya: {
                official: string;
                common: string;
            };
        };
    };
    ME: {
        common: string;
        official: string;
        native: {
            cnr: {
                official: string;
                common: string;
            };
        };
    };
    MN: {
        common: string;
        official: string;
        native: {
            mon: {
                official: string;
                common: string;
            };
        };
    };
    MP: {
        common: string;
        official: string;
        native: {
            cal: {
                official: string;
                common: string;
            };
            cha: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
        };
    };
    MZ: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
        };
    };
    MR: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    MS: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    MQ: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    MU: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            mfe: {
                official: string;
                common: string;
            };
        };
    };
    MW: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            nya: {
                official: string;
                common: string;
            };
        };
    };
    MY: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            msa: {
                official: string;
                common: string;
            };
        };
    };
    YT: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    NA: {
        common: string;
        official: string;
        native: {
            afr: {
                official: string;
                common: string;
            };
            deu: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            her: {
                official: string;
                common: string;
            };
            hgm: {
                official: string;
                common: string;
            };
            kwn: {
                official: string;
                common: string;
            };
            loz: {
                official: string;
                common: string;
            };
            ndo: {
                official: string;
                common: string;
            };
            tsn: {
                official: string;
                common: string;
            };
        };
    };
    NC: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    NE: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    NF: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            pih: {
                official: string;
                common: string;
            };
        };
    };
    NG: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    NI: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    NU: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            niu: {
                official: string;
                common: string;
            };
        };
    };
    NL: {
        common: string;
        official: string;
        native: {
            nld: {
                official: string;
                common: string;
            };
        };
    };
    NO: {
        common: string;
        official: string;
        native: {
            nno: {
                official: string;
                common: string;
            };
            nob: {
                official: string;
                common: string;
            };
            smi: {
                official: string;
                common: string;
            };
        };
    };
    NP: {
        common: string;
        official: string;
        native: {
            nep: {
                official: string;
                common: string;
            };
        };
    };
    NR: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            nau: {
                official: string;
                common: string;
            };
        };
    };
    NZ: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            mri: {
                official: string;
                common: string;
            };
            nzs: {
                official: string;
                common: string;
            };
        };
    };
    OM: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    PK: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            urd: {
                official: string;
                common: string;
            };
        };
    };
    PA: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    PN: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    PE: {
        common: string;
        official: string;
        native: {
            aym: {
                official: string;
                common: string;
            };
            que: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    PH: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fil: {
                official: string;
                common: string;
            };
        };
    };
    PW: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            pau: {
                official: string;
                common: string;
            };
        };
    };
    PG: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            hmo: {
                official: string;
                common: string;
            };
            tpi: {
                official: string;
                common: string;
            };
        };
    };
    PL: {
        common: string;
        official: string;
        native: {
            pol: {
                official: string;
                common: string;
            };
        };
    };
    PR: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    KP: {
        common: string;
        official: string;
        native: {
            kor: {
                official: string;
                common: string;
            };
        };
    };
    PT: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
        };
    };
    PY: {
        common: string;
        official: string;
        native: {
            grn: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
        };
    };
    PS: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    PF: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    QA: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    RE: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    RO: {
        common: string;
        official: string;
        native: {
            ron: {
                official: string;
                common: string;
            };
        };
    };
    RU: {
        common: string;
        official: string;
        native: {
            rus: {
                official: string;
                common: string;
            };
        };
    };
    RW: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            kin: {
                official: string;
                common: string;
            };
        };
    };
    SA: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    SD: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
        };
    };
    SN: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    SG: {
        common: string;
        official: string;
        native: {
            zho: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            msa: {
                official: string;
                common: string;
            };
            tam: {
                official: string;
                common: string;
            };
        };
    };
    GS: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    SJ: {
        common: string;
        official: string;
        native: {
            nor: {
                official: string;
                common: string;
            };
        };
    };
    SB: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    SL: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    SV: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    SM: {
        common: string;
        official: string;
        native: {
            ita: {
                official: string;
                common: string;
            };
        };
    };
    SO: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            som: {
                official: string;
                common: string;
            };
        };
    };
    PM: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    RS: {
        common: string;
        official: string;
        native: {
            srp: {
                official: string;
                common: string;
            };
        };
    };
    SS: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    ST: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
        };
    };
    SR: {
        common: string;
        official: string;
        native: {
            nld: {
                official: string;
                common: string;
            };
        };
    };
    SK: {
        common: string;
        official: string;
        native: {
            slk: {
                official: string;
                common: string;
            };
        };
    };
    SI: {
        common: string;
        official: string;
        native: {
            slv: {
                official: string;
                common: string;
            };
        };
    };
    SE: {
        common: string;
        official: string;
        native: {
            swe: {
                official: string;
                common: string;
            };
        };
    };
    SZ: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            ssw: {
                official: string;
                common: string;
            };
        };
    };
    SX: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nld: {
                official: string;
                common: string;
            };
        };
    };
    SC: {
        common: string;
        official: string;
        native: {
            crs: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
        };
    };
    SY: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    TC: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    TD: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
        };
    };
    TG: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    TH: {
        common: string;
        official: string;
        native: {
            tha: {
                official: string;
                common: string;
            };
        };
    };
    TJ: {
        common: string;
        official: string;
        native: {
            rus: {
                official: string;
                common: string;
            };
            tgk: {
                official: string;
                common: string;
            };
        };
    };
    TK: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            smo: {
                official: string;
                common: string;
            };
            tkl: {
                official: string;
                common: string;
            };
        };
    };
    TM: {
        common: string;
        official: string;
        native: {
            rus: {
                official: string;
                common: string;
            };
            tuk: {
                official: string;
                common: string;
            };
        };
    };
    TL: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
            tet: {
                official: string;
                common: string;
            };
        };
    };
    TO: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            ton: {
                official: string;
                common: string;
            };
        };
    };
    TT: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    TN: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    TR: {
        common: string;
        official: string;
        native: {
            tur: {
                official: string;
                common: string;
            };
        };
    };
    TV: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            tvl: {
                official: string;
                common: string;
            };
        };
    };
    TW: {
        common: string;
        official: string;
        native: {
            zho: {
                official: string;
                common: string;
            };
        };
    };
    TZ: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            swa: {
                official: string;
                common: string;
            };
        };
    };
    UG: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            swa: {
                official: string;
                common: string;
            };
        };
    };
    UA: {
        common: string;
        official: string;
        native: {
            ukr: {
                official: string;
                common: string;
            };
        };
    };
    UM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    UY: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    US: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    UZ: {
        common: string;
        official: string;
        native: {
            rus: {
                official: string;
                common: string;
            };
            uzb: {
                official: string;
                common: string;
            };
        };
    };
    VA: {
        common: string;
        official: string;
        native: {
            ita: {
                official: string;
                common: string;
            };
            lat: {
                official: string;
                common: string;
            };
        };
    };
    VC: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    VE: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
        };
    };
    VG: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    VI: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    VN: {
        common: string;
        official: string;
        native: {
            vie: {
                official: string;
                common: string;
            };
        };
    };
    VU: {
        common: string;
        official: string;
        native: {
            bis: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
        };
    };
    WF: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
        };
    };
    WS: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            smo: {
                official: string;
                common: string;
            };
        };
    };
    YE: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
        };
    };
    ZA: {
        common: string;
        official: string;
        native: {
            afr: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            nbl: {
                official: string;
                common: string;
            };
            nso: {
                official: string;
                common: string;
            };
            sot: {
                official: string;
                common: string;
            };
            ssw: {
                official: string;
                common: string;
            };
            tsn: {
                official: string;
                common: string;
            };
            tso: {
                official: string;
                common: string;
            };
            ven: {
                official: string;
                common: string;
            };
            xho: {
                official: string;
                common: string;
            };
            zul: {
                official: string;
                common: string;
            };
        };
    };
    ZM: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
        };
    };
    ZW: {
        common: string;
        official: string;
        native: {
            bwg: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            kck: {
                official: string;
                common: string;
            };
            khi: {
                official: string;
                common: string;
            };
            ndc: {
                official: string;
                common: string;
            };
            nde: {
                official: string;
                common: string;
            };
            nya: {
                official: string;
                common: string;
            };
            sna: {
                official: string;
                common: string;
            };
            sot: {
                official: string;
                common: string;
            };
            toi: {
                official: string;
                common: string;
            };
            tsn: {
                official: string;
                common: string;
            };
            tso: {
                official: string;
                common: string;
            };
            ven: {
                official: string;
                common: string;
            };
            xho: {
                official: string;
                common: string;
            };
            zib: {
                official: string;
                common: string;
            };
        };
    };
} | {
    AW: string[];
    AF: string[];
    AO: string[];
    AI: string[];
    AX: string[];
    AL: string[];
    AD: string[];
    AE: string[];
    AR: string[];
    AM: string[];
    AS: string[];
    AQ: string[];
    TF: string[];
    AG: string[];
    AU: string[];
    AT: string[];
    AZ: string[];
    BI: string[];
    BE: string[];
    BJ: string[];
    BF: string[];
    BD: string[];
    BG: string[];
    BH: string[];
    BS: string[];
    BA: string[];
    BL: string[];
    SH: string[];
    BY: string[];
    BZ: string[];
    BM: string[];
    BO: string[];
    BQ: string[];
    BR: string[];
    BB: string[];
    BN: string[];
    BT: string[];
    BV: string[];
    BW: string[];
    CF: string[];
    CA: string[];
    CC: string[];
    CH: string[];
    CL: string[];
    CN: string[];
    CI: string[];
    CM: string[];
    CD: string[];
    CG: string[];
    CK: string[];
    CO: string[];
    KM: string[];
    CV: string[];
    CR: string[];
    CU: string[];
    CW: string[];
    CX: string[];
    KY: string[];
    CY: string[];
    CZ: string[];
    DE: string[];
    DJ: string[];
    DM: string[];
    DK: string[];
    DO: string[];
    DZ: string[];
    EC: string[];
    EG: string[];
    ER: string[];
    EH: string[];
    ES: string[];
    EE: string[];
    ET: string[];
    FI: string[];
    FJ: string[];
    FK: string[];
    FR: string[];
    FO: string[];
    FM: string[];
    GA: string[];
    GB: string[];
    GE: string[];
    GG: string[];
    GH: string[];
    GI: string[];
    GN: string[];
    GP: string[];
    GM: string[];
    GW: string[];
    GQ: string[];
    GR: string[];
    GD: string[];
    GL: string[];
    GT: string[];
    GF: string[];
    GU: string[];
    GY: string[];
    HK: string[];
    HM: string[];
    HN: string[];
    HR: string[];
    HT: string[];
    HU: string[];
    ID: string[];
    IM: string[];
    IN: string[];
    IO: string[];
    IE: string[];
    IR: string[];
    IQ: string[];
    IS: string[];
    IL: string[];
    IT: string[];
    JM: string[];
    JE: string[];
    JO: string[];
    JP: string[];
    KZ: string[];
    KE: string[];
    KG: string[];
    KH: string[];
    KI: string[];
    KN: string[];
    KR: string[];
    XK: any[];
    KW: string[];
    LA: string[];
    LB: string[];
    LR: string[];
    LY: string[];
    LC: string[];
    LI: string[];
    LK: string[];
    LS: string[];
    LT: string[];
    LU: string[];
    LV: string[];
    MO: string[];
    MF: string[];
    MA: string[];
    MC: string[];
    MD: string[];
    MG: string[];
    MV: string[];
    MX: string[];
    MH: string[];
    MK: string[];
    ML: string[];
    MT: string[];
    MM: string[];
    ME: string[];
    MN: string[];
    MP: string[];
    MZ: string[];
    MR: string[];
    MS: string[];
    MQ: string[];
    MU: string[];
    MW: string[];
    MY: string[];
    YT: string[];
    NA: string[];
    NC: string[];
    NE: string[];
    NF: string[];
    NG: string[];
    NI: string[];
    NU: string[];
    NL: string[];
    NO: string[];
    NP: string[];
    NR: string[];
    NZ: string[];
    OM: string[];
    PK: string[];
    PA: string[];
    PN: string[];
    PE: string[];
    PH: string[];
    PW: string[];
    PG: string[];
    PL: string[];
    PR: string[];
    KP: string[];
    PT: string[];
    PY: string[];
    PS: string[];
    PF: string[];
    QA: string[];
    RE: string[];
    RO: string[];
    RU: string[];
    RW: string[];
    SA: string[];
    SD: string[];
    SN: string[];
    SG: string[];
    GS: string[];
    SJ: string[];
    SB: string[];
    SL: string[];
    SV: string[];
    SM: string[];
    SO: string[];
    PM: string[];
    RS: string[];
    SS: string[];
    ST: string[];
    SR: string[];
    SK: string[];
    SI: string[];
    SE: string[];
    SZ: string[];
    SX: string[];
    SC: string[];
    SY: string[];
    TC: string[];
    TD: string[];
    TG: string[];
    TH: string[];
    TJ: string[];
    TK: string[];
    TM: string[];
    TL: string[];
    TO: string[];
    TT: string[];
    TN: string[];
    TR: string[];
    TV: string[];
    TW: string[];
    TZ: string[];
    UG: string[];
    UA: string[];
    UM: string[];
    UY: string[];
    US: string[];
    UZ: string[];
    VA: string[];
    VC: string[];
    VE: string[];
    VG: string[];
    VI: string[];
    VN: string[];
    VU: string[];
    WF: string[];
    WS: string[];
    YE: string[];
    ZA: string[];
    ZM: string[];
    ZW: string[];
} | {
    AW: string;
    AF: string;
    AO: string;
    AI: string;
    AX: string;
    AL: string;
    AD: string;
    AE: string;
    AR: string;
    AM: string;
    AS: string;
    AQ: string;
    TF: string;
    AG: string;
    AU: string;
    AT: string;
    AZ: string;
    BI: string;
    BE: string;
    BJ: string;
    BF: string;
    BD: string;
    BG: string;
    BH: string;
    BS: string;
    BA: string;
    BL: string;
    SH: string;
    BY: string;
    BZ: string;
    BM: string;
    BO: string;
    BQ: string;
    BR: string;
    BB: string;
    BN: string;
    BT: string;
    BV: string;
    BW: string;
    CF: string;
    CA: string;
    CC: string;
    CH: string;
    CL: string;
    CN: string;
    CI: string;
    CM: string;
    CD: string;
    CG: string;
    CK: string;
    CO: string;
    KM: string;
    CV: string;
    CR: string;
    CU: string;
    CW: string;
    CX: string;
    KY: string;
    CY: string;
    CZ: string;
    DE: string;
    DJ: string;
    DM: string;
    DK: string;
    DO: string;
    DZ: string;
    EC: string;
    EG: string;
    ER: string;
    EH: string;
    ES: string;
    EE: string;
    ET: string;
    FI: string;
    FJ: string;
    FK: string;
    FR: string;
    FO: string;
    FM: string;
    GA: string;
    GB: string;
    GE: string;
    GG: string;
    GH: string;
    GI: string;
    GN: string;
    GP: string;
    GM: string;
    GW: string;
    GQ: string;
    GR: string;
    GD: string;
    GL: string;
    GT: string;
    GF: string;
    GU: string;
    GY: string;
    HK: string;
    HM: string;
    HN: string;
    HR: string;
    HT: string;
    HU: string;
    ID: string;
    IM: string;
    IN: string;
    IO: string;
    IE: string;
    IR: string;
    IQ: string;
    IS: string;
    IL: string;
    IT: string;
    JM: string;
    JE: string;
    JO: string;
    JP: string;
    KZ: string;
    KE: string;
    KG: string;
    KH: string;
    KI: string;
    KN: string;
    KR: string;
    XK: string;
    KW: string;
    LA: string;
    LB: string;
    LR: string;
    LY: string;
    LC: string;
    LI: string;
    LK: string;
    LS: string;
    LT: string;
    LU: string;
    LV: string;
    MO: string;
    MF: string;
    MA: string;
    MC: string;
    MD: string;
    MG: string;
    MV: string;
    MX: string;
    MH: string;
    MK: string;
    ML: string;
    MT: string;
    MM: string;
    ME: string;
    MN: string;
    MP: string;
    MZ: string;
    MR: string;
    MS: string;
    MQ: string;
    MU: string;
    MW: string;
    MY: string;
    YT: string;
    NA: string;
    NC: string;
    NE: string;
    NF: string;
    NG: string;
    NI: string;
    NU: string;
    NL: string;
    NO: string;
    NP: string;
    NR: string;
    NZ: string;
    OM: string;
    PK: string;
    PA: string;
    PN: string;
    PE: string;
    PH: string;
    PW: string;
    PG: string;
    PL: string;
    PR: string;
    KP: string;
    PT: string;
    PY: string;
    PS: string;
    PF: string;
    QA: string;
    RE: string;
    RO: string;
    RU: string;
    RW: string;
    SA: string;
    SD: string;
    SN: string;
    SG: string;
    GS: string;
    SJ: string;
    SB: string;
    SL: string;
    SV: string;
    SM: string;
    SO: string;
    PM: string;
    RS: string;
    SS: string;
    ST: string;
    SR: string;
    SK: string;
    SI: string;
    SE: string;
    SZ: string;
    SX: string;
    SC: string;
    SY: string;
    TC: string;
    TD: string;
    TG: string;
    TH: string;
    TJ: string;
    TK: string;
    TM: string;
    TL: string;
    TO: string;
    TT: string;
    TN: string;
    TR: string;
    TV: string;
    TW: string;
    TZ: string;
    UG: string;
    UA: string;
    UM: string;
    UY: string;
    US: string;
    UZ: string;
    VA: string;
    VC: string;
    VE: string;
    VG: string;
    VI: string;
    VN: string;
    VU: string;
    WF: string;
    WS: string;
    YE: string;
    ZA: string;
    ZM: string;
    ZW: string;
} | {
    AW: boolean;
    AF: boolean;
    AO: boolean;
    AI: boolean;
    AX: boolean;
    AL: boolean;
    AD: boolean;
    AE: boolean;
    AR: boolean;
    AM: boolean;
    AS: boolean;
    AQ: boolean;
    TF: boolean;
    AG: boolean;
    AU: boolean;
    AT: boolean;
    AZ: boolean;
    BI: boolean;
    BE: boolean;
    BJ: boolean;
    BF: boolean;
    BD: boolean;
    BG: boolean;
    BH: boolean;
    BS: boolean;
    BA: boolean;
    BL: boolean;
    SH: boolean;
    BY: boolean;
    BZ: boolean;
    BM: boolean;
    BO: boolean;
    BQ: boolean;
    BR: boolean;
    BB: boolean;
    BN: boolean;
    BT: boolean;
    BV: boolean;
    BW: boolean;
    CF: boolean;
    CA: boolean;
    CC: boolean;
    CH: boolean;
    CL: boolean;
    CN: boolean;
    CI: boolean;
    CM: boolean;
    CD: boolean;
    CG: boolean;
    CK: boolean;
    CO: boolean;
    KM: boolean;
    CV: boolean;
    CR: boolean;
    CU: boolean;
    CW: boolean;
    CX: boolean;
    KY: boolean;
    CY: boolean;
    CZ: boolean;
    DE: boolean;
    DJ: boolean;
    DM: boolean;
    DK: boolean;
    DO: boolean;
    DZ: boolean;
    EC: boolean;
    EG: boolean;
    ER: boolean;
    EH: boolean;
    ES: boolean;
    EE: boolean;
    ET: boolean;
    FI: boolean;
    FJ: boolean;
    FK: boolean;
    FR: boolean;
    FO: boolean;
    FM: boolean;
    GA: boolean;
    GB: boolean;
    GE: boolean;
    GG: boolean;
    GH: boolean;
    GI: boolean;
    GN: boolean;
    GP: boolean;
    GM: boolean;
    GW: boolean;
    GQ: boolean;
    GR: boolean;
    GD: boolean;
    GL: boolean;
    GT: boolean;
    GF: boolean;
    GU: boolean;
    GY: boolean;
    HK: boolean;
    HM: boolean;
    HN: boolean;
    HR: boolean;
    HT: boolean;
    HU: boolean;
    ID: boolean;
    IM: boolean;
    IN: boolean;
    IO: boolean;
    IE: boolean;
    IR: boolean;
    IQ: boolean;
    IS: boolean;
    IL: boolean;
    IT: boolean;
    JM: boolean;
    JE: boolean;
    JO: boolean;
    JP: boolean;
    KZ: boolean;
    KE: boolean;
    KG: boolean;
    KH: boolean;
    KI: boolean;
    KN: boolean;
    KR: boolean;
    XK: any;
    KW: boolean;
    LA: boolean;
    LB: boolean;
    LR: boolean;
    LY: boolean;
    LC: boolean;
    LI: boolean;
    LK: boolean;
    LS: boolean;
    LT: boolean;
    LU: boolean;
    LV: boolean;
    MO: boolean;
    MF: boolean;
    MA: boolean;
    MC: boolean;
    MD: boolean;
    MG: boolean;
    MV: boolean;
    MX: boolean;
    MH: boolean;
    MK: boolean;
    ML: boolean;
    MT: boolean;
    MM: boolean;
    ME: boolean;
    MN: boolean;
    MP: boolean;
    MZ: boolean;
    MR: boolean;
    MS: boolean;
    MQ: boolean;
    MU: boolean;
    MW: boolean;
    MY: boolean;
    YT: boolean;
    NA: boolean;
    NC: boolean;
    NE: boolean;
    NF: boolean;
    NG: boolean;
    NI: boolean;
    NU: boolean;
    NL: boolean;
    NO: boolean;
    NP: boolean;
    NR: boolean;
    NZ: boolean;
    OM: boolean;
    PK: boolean;
    PA: boolean;
    PN: boolean;
    PE: boolean;
    PH: boolean;
    PW: boolean;
    PG: boolean;
    PL: boolean;
    PR: boolean;
    KP: boolean;
    PT: boolean;
    PY: boolean;
    PS: boolean;
    PF: boolean;
    QA: boolean;
    RE: boolean;
    RO: boolean;
    RU: boolean;
    RW: boolean;
    SA: boolean;
    SD: boolean;
    SN: boolean;
    SG: boolean;
    GS: boolean;
    SJ: boolean;
    SB: boolean;
    SL: boolean;
    SV: boolean;
    SM: boolean;
    SO: boolean;
    PM: boolean;
    RS: boolean;
    SS: boolean;
    ST: boolean;
    SR: boolean;
    SK: boolean;
    SI: boolean;
    SE: boolean;
    SZ: boolean;
    SX: boolean;
    SC: boolean;
    SY: boolean;
    TC: boolean;
    TD: boolean;
    TG: boolean;
    TH: boolean;
    TJ: boolean;
    TK: boolean;
    TM: boolean;
    TL: boolean;
    TO: boolean;
    TT: boolean;
    TN: boolean;
    TR: boolean;
    TV: boolean;
    TW: boolean;
    TZ: boolean;
    UG: boolean;
    UA: boolean;
    UM: boolean;
    UY: boolean;
    US: boolean;
    UZ: boolean;
    VA: boolean;
    VC: boolean;
    VE: boolean;
    VG: boolean;
    VI: boolean;
    VN: boolean;
    VU: boolean;
    WF: boolean;
    WS: boolean;
    YE: boolean;
    ZA: boolean;
    ZM: boolean;
    ZW: boolean;
} | {
    AW: {
        root: string;
        suffixes: string[];
    };
    AF: {
        root: string;
        suffixes: string[];
    };
    AO: {
        root: string;
        suffixes: string[];
    };
    AI: {
        root: string;
        suffixes: string[];
    };
    AX: {
        root: string;
        suffixes: string[];
    };
    AL: {
        root: string;
        suffixes: string[];
    };
    AD: {
        root: string;
        suffixes: string[];
    };
    AE: {
        root: string;
        suffixes: string[];
    };
    AR: {
        root: string;
        suffixes: string[];
    };
    AM: {
        root: string;
        suffixes: string[];
    };
    AS: {
        root: string;
        suffixes: string[];
    };
    AQ: {
        root: string;
        suffixes: any[];
    };
    TF: {
        root: string;
        suffixes: string[];
    };
    AG: {
        root: string;
        suffixes: string[];
    };
    AU: {
        root: string;
        suffixes: string[];
    };
    AT: {
        root: string;
        suffixes: string[];
    };
    AZ: {
        root: string;
        suffixes: string[];
    };
    BI: {
        root: string;
        suffixes: string[];
    };
    BE: {
        root: string;
        suffixes: string[];
    };
    BJ: {
        root: string;
        suffixes: string[];
    };
    BF: {
        root: string;
        suffixes: string[];
    };
    BD: {
        root: string;
        suffixes: string[];
    };
    BG: {
        root: string;
        suffixes: string[];
    };
    BH: {
        root: string;
        suffixes: string[];
    };
    BS: {
        root: string;
        suffixes: string[];
    };
    BA: {
        root: string;
        suffixes: string[];
    };
    BL: {
        root: string;
        suffixes: string[];
    };
    SH: {
        root: string;
        suffixes: string[];
    };
    BY: {
        root: string;
        suffixes: string[];
    };
    BZ: {
        root: string;
        suffixes: string[];
    };
    BM: {
        root: string;
        suffixes: string[];
    };
    BO: {
        root: string;
        suffixes: string[];
    };
    BQ: {
        root: string;
        suffixes: string[];
    };
    BR: {
        root: string;
        suffixes: string[];
    };
    BB: {
        root: string;
        suffixes: string[];
    };
    BN: {
        root: string;
        suffixes: string[];
    };
    BT: {
        root: string;
        suffixes: string[];
    };
    BV: {
        root: string;
        suffixes: string[];
    };
    BW: {
        root: string;
        suffixes: string[];
    };
    CF: {
        root: string;
        suffixes: string[];
    };
    CA: {
        root: string;
        suffixes: string[];
    };
    CC: {
        root: string;
        suffixes: string[];
    };
    CH: {
        root: string;
        suffixes: string[];
    };
    CL: {
        root: string;
        suffixes: string[];
    };
    CN: {
        root: string;
        suffixes: string[];
    };
    CI: {
        root: string;
        suffixes: string[];
    };
    CM: {
        root: string;
        suffixes: string[];
    };
    CD: {
        root: string;
        suffixes: string[];
    };
    CG: {
        root: string;
        suffixes: string[];
    };
    CK: {
        root: string;
        suffixes: string[];
    };
    CO: {
        root: string;
        suffixes: string[];
    };
    KM: {
        root: string;
        suffixes: string[];
    };
    CV: {
        root: string;
        suffixes: string[];
    };
    CR: {
        root: string;
        suffixes: string[];
    };
    CU: {
        root: string;
        suffixes: string[];
    };
    CW: {
        root: string;
        suffixes: string[];
    };
    CX: {
        root: string;
        suffixes: string[];
    };
    KY: {
        root: string;
        suffixes: string[];
    };
    CY: {
        root: string;
        suffixes: string[];
    };
    CZ: {
        root: string;
        suffixes: string[];
    };
    DE: {
        root: string;
        suffixes: string[];
    };
    DJ: {
        root: string;
        suffixes: string[];
    };
    DM: {
        root: string;
        suffixes: string[];
    };
    DK: {
        root: string;
        suffixes: string[];
    };
    DO: {
        root: string;
        suffixes: string[];
    };
    DZ: {
        root: string;
        suffixes: string[];
    };
    EC: {
        root: string;
        suffixes: string[];
    };
    EG: {
        root: string;
        suffixes: string[];
    };
    ER: {
        root: string;
        suffixes: string[];
    };
    EH: {
        root: string;
        suffixes: string[];
    };
    ES: {
        root: string;
        suffixes: string[];
    };
    EE: {
        root: string;
        suffixes: string[];
    };
    ET: {
        root: string;
        suffixes: string[];
    };
    FI: {
        root: string;
        suffixes: string[];
    };
    FJ: {
        root: string;
        suffixes: string[];
    };
    FK: {
        root: string;
        suffixes: string[];
    };
    FR: {
        root: string;
        suffixes: string[];
    };
    FO: {
        root: string;
        suffixes: string[];
    };
    FM: {
        root: string;
        suffixes: string[];
    };
    GA: {
        root: string;
        suffixes: string[];
    };
    GB: {
        root: string;
        suffixes: string[];
    };
    GE: {
        root: string;
        suffixes: string[];
    };
    GG: {
        root: string;
        suffixes: string[];
    };
    GH: {
        root: string;
        suffixes: string[];
    };
    GI: {
        root: string;
        suffixes: string[];
    };
    GN: {
        root: string;
        suffixes: string[];
    };
    GP: {
        root: string;
        suffixes: string[];
    };
    GM: {
        root: string;
        suffixes: string[];
    };
    GW: {
        root: string;
        suffixes: string[];
    };
    GQ: {
        root: string;
        suffixes: string[];
    };
    GR: {
        root: string;
        suffixes: string[];
    };
    GD: {
        root: string;
        suffixes: string[];
    };
    GL: {
        root: string;
        suffixes: string[];
    };
    GT: {
        root: string;
        suffixes: string[];
    };
    GF: {
        root: string;
        suffixes: string[];
    };
    GU: {
        root: string;
        suffixes: string[];
    };
    GY: {
        root: string;
        suffixes: string[];
    };
    HK: {
        root: string;
        suffixes: string[];
    };
    HM: {
        root: string;
        suffixes: string[];
    };
    HN: {
        root: string;
        suffixes: string[];
    };
    HR: {
        root: string;
        suffixes: string[];
    };
    HT: {
        root: string;
        suffixes: string[];
    };
    HU: {
        root: string;
        suffixes: string[];
    };
    ID: {
        root: string;
        suffixes: string[];
    };
    IM: {
        root: string;
        suffixes: string[];
    };
    IN: {
        root: string;
        suffixes: string[];
    };
    IO: {
        root: string;
        suffixes: string[];
    };
    IE: {
        root: string;
        suffixes: string[];
    };
    IR: {
        root: string;
        suffixes: string[];
    };
    IQ: {
        root: string;
        suffixes: string[];
    };
    IS: {
        root: string;
        suffixes: string[];
    };
    IL: {
        root: string;
        suffixes: string[];
    };
    IT: {
        root: string;
        suffixes: string[];
    };
    JM: {
        root: string;
        suffixes: string[];
    };
    JE: {
        root: string;
        suffixes: string[];
    };
    JO: {
        root: string;
        suffixes: string[];
    };
    JP: {
        root: string;
        suffixes: string[];
    };
    KZ: {
        root: string;
        suffixes: string[];
    };
    KE: {
        root: string;
        suffixes: string[];
    };
    KG: {
        root: string;
        suffixes: string[];
    };
    KH: {
        root: string;
        suffixes: string[];
    };
    KI: {
        root: string;
        suffixes: string[];
    };
    KN: {
        root: string;
        suffixes: string[];
    };
    KR: {
        root: string;
        suffixes: string[];
    };
    XK: {
        root: string;
        suffixes: string[];
    };
    KW: {
        root: string;
        suffixes: string[];
    };
    LA: {
        root: string;
        suffixes: string[];
    };
    LB: {
        root: string;
        suffixes: string[];
    };
    LR: {
        root: string;
        suffixes: string[];
    };
    LY: {
        root: string;
        suffixes: string[];
    };
    LC: {
        root: string;
        suffixes: string[];
    };
    LI: {
        root: string;
        suffixes: string[];
    };
    LK: {
        root: string;
        suffixes: string[];
    };
    LS: {
        root: string;
        suffixes: string[];
    };
    LT: {
        root: string;
        suffixes: string[];
    };
    LU: {
        root: string;
        suffixes: string[];
    };
    LV: {
        root: string;
        suffixes: string[];
    };
    MO: {
        root: string;
        suffixes: string[];
    };
    MF: {
        root: string;
        suffixes: string[];
    };
    MA: {
        root: string;
        suffixes: string[];
    };
    MC: {
        root: string;
        suffixes: string[];
    };
    MD: {
        root: string;
        suffixes: string[];
    };
    MG: {
        root: string;
        suffixes: string[];
    };
    MV: {
        root: string;
        suffixes: string[];
    };
    MX: {
        root: string;
        suffixes: string[];
    };
    MH: {
        root: string;
        suffixes: string[];
    };
    MK: {
        root: string;
        suffixes: string[];
    };
    ML: {
        root: string;
        suffixes: string[];
    };
    MT: {
        root: string;
        suffixes: string[];
    };
    MM: {
        root: string;
        suffixes: string[];
    };
    ME: {
        root: string;
        suffixes: string[];
    };
    MN: {
        root: string;
        suffixes: string[];
    };
    MP: {
        root: string;
        suffixes: string[];
    };
    MZ: {
        root: string;
        suffixes: string[];
    };
    MR: {
        root: string;
        suffixes: string[];
    };
    MS: {
        root: string;
        suffixes: string[];
    };
    MQ: {
        root: string;
        suffixes: string[];
    };
    MU: {
        root: string;
        suffixes: string[];
    };
    MW: {
        root: string;
        suffixes: string[];
    };
    MY: {
        root: string;
        suffixes: string[];
    };
    YT: {
        root: string;
        suffixes: string[];
    };
    NA: {
        root: string;
        suffixes: string[];
    };
    NC: {
        root: string;
        suffixes: string[];
    };
    NE: {
        root: string;
        suffixes: string[];
    };
    NF: {
        root: string;
        suffixes: string[];
    };
    NG: {
        root: string;
        suffixes: string[];
    };
    NI: {
        root: string;
        suffixes: string[];
    };
    NU: {
        root: string;
        suffixes: string[];
    };
    NL: {
        root: string;
        suffixes: string[];
    };
    NO: {
        root: string;
        suffixes: string[];
    };
    NP: {
        root: string;
        suffixes: string[];
    };
    NR: {
        root: string;
        suffixes: string[];
    };
    NZ: {
        root: string;
        suffixes: string[];
    };
    OM: {
        root: string;
        suffixes: string[];
    };
    PK: {
        root: string;
        suffixes: string[];
    };
    PA: {
        root: string;
        suffixes: string[];
    };
    PN: {
        root: string;
        suffixes: string[];
    };
    PE: {
        root: string;
        suffixes: string[];
    };
    PH: {
        root: string;
        suffixes: string[];
    };
    PW: {
        root: string;
        suffixes: string[];
    };
    PG: {
        root: string;
        suffixes: string[];
    };
    PL: {
        root: string;
        suffixes: string[];
    };
    PR: {
        root: string;
        suffixes: string[];
    };
    KP: {
        root: string;
        suffixes: string[];
    };
    PT: {
        root: string;
        suffixes: string[];
    };
    PY: {
        root: string;
        suffixes: string[];
    };
    PS: {
        root: string;
        suffixes: string[];
    };
    PF: {
        root: string;
        suffixes: string[];
    };
    QA: {
        root: string;
        suffixes: string[];
    };
    RE: {
        root: string;
        suffixes: string[];
    };
    RO: {
        root: string;
        suffixes: string[];
    };
    RU: {
        root: string;
        suffixes: string[];
    };
    RW: {
        root: string;
        suffixes: string[];
    };
    SA: {
        root: string;
        suffixes: string[];
    };
    SD: {
        root: string;
        suffixes: string[];
    };
    SN: {
        root: string;
        suffixes: string[];
    };
    SG: {
        root: string;
        suffixes: string[];
    };
    GS: {
        root: string;
        suffixes: string[];
    };
    SJ: {
        root: string;
        suffixes: string[];
    };
    SB: {
        root: string;
        suffixes: string[];
    };
    SL: {
        root: string;
        suffixes: string[];
    };
    SV: {
        root: string;
        suffixes: string[];
    };
    SM: {
        root: string;
        suffixes: string[];
    };
    SO: {
        root: string;
        suffixes: string[];
    };
    PM: {
        root: string;
        suffixes: string[];
    };
    RS: {
        root: string;
        suffixes: string[];
    };
    SS: {
        root: string;
        suffixes: string[];
    };
    ST: {
        root: string;
        suffixes: string[];
    };
    SR: {
        root: string;
        suffixes: string[];
    };
    SK: {
        root: string;
        suffixes: string[];
    };
    SI: {
        root: string;
        suffixes: string[];
    };
    SE: {
        root: string;
        suffixes: string[];
    };
    SZ: {
        root: string;
        suffixes: string[];
    };
    SX: {
        root: string;
        suffixes: string[];
    };
    SC: {
        root: string;
        suffixes: string[];
    };
    SY: {
        root: string;
        suffixes: string[];
    };
    TC: {
        root: string;
        suffixes: string[];
    };
    TD: {
        root: string;
        suffixes: string[];
    };
    TG: {
        root: string;
        suffixes: string[];
    };
    TH: {
        root: string;
        suffixes: string[];
    };
    TJ: {
        root: string;
        suffixes: string[];
    };
    TK: {
        root: string;
        suffixes: string[];
    };
    TM: {
        root: string;
        suffixes: string[];
    };
    TL: {
        root: string;
        suffixes: string[];
    };
    TO: {
        root: string;
        suffixes: string[];
    };
    TT: {
        root: string;
        suffixes: string[];
    };
    TN: {
        root: string;
        suffixes: string[];
    };
    TR: {
        root: string;
        suffixes: string[];
    };
    TV: {
        root: string;
        suffixes: string[];
    };
    TW: {
        root: string;
        suffixes: string[];
    };
    TZ: {
        root: string;
        suffixes: string[];
    };
    UG: {
        root: string;
        suffixes: string[];
    };
    UA: {
        root: string;
        suffixes: string[];
    };
    UM: {
        root: string;
        suffixes: string[];
    };
    UY: {
        root: string;
        suffixes: string[];
    };
    US: {
        root: string;
        suffixes: string[];
    };
    UZ: {
        root: string;
        suffixes: string[];
    };
    VA: {
        root: string;
        suffixes: string[];
    };
    VC: {
        root: string;
        suffixes: string[];
    };
    VE: {
        root: string;
        suffixes: string[];
    };
    VG: {
        root: string;
        suffixes: string[];
    };
    VI: {
        root: string;
        suffixes: string[];
    };
    VN: {
        root: string;
        suffixes: string[];
    };
    VU: {
        root: string;
        suffixes: string[];
    };
    WF: {
        root: string;
        suffixes: string[];
    };
    WS: {
        root: string;
        suffixes: string[];
    };
    YE: {
        root: string;
        suffixes: string[];
    };
    ZA: {
        root: string;
        suffixes: string[];
    };
    ZM: {
        root: string;
        suffixes: string[];
    };
    ZW: {
        root: string;
        suffixes: string[];
    };
} | {
    AW: {
        AWG: {
            name: string;
            symbol: string;
        };
    };
    AF: {
        AFN: {
            name: string;
            symbol: string;
        };
    };
    AO: {
        AOA: {
            name: string;
            symbol: string;
        };
    };
    AI: {
        XCD: {
            name: string;
            symbol: string;
        };
    };
    AX: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    AL: {
        ALL: {
            name: string;
            symbol: string;
        };
    };
    AD: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    AE: {
        AED: {
            name: string;
            symbol: string;
        };
    };
    AR: {
        ARS: {
            name: string;
            symbol: string;
        };
    };
    AM: {
        AMD: {
            name: string;
            symbol: string;
        };
    };
    AS: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    AQ: any[];
    TF: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    AG: {
        XCD: {
            name: string;
            symbol: string;
        };
    };
    AU: {
        AUD: {
            name: string;
            symbol: string;
        };
    };
    AT: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    AZ: {
        AZN: {
            name: string;
            symbol: string;
        };
    };
    BI: {
        BIF: {
            name: string;
            symbol: string;
        };
    };
    BE: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    BJ: {
        XOF: {
            name: string;
            symbol: string;
        };
    };
    BF: {
        XOF: {
            name: string;
            symbol: string;
        };
    };
    BD: {
        BDT: {
            name: string;
            symbol: string;
        };
    };
    BG: {
        BGN: {
            name: string;
            symbol: string;
        };
    };
    BH: {
        BHD: {
            name: string;
            symbol: string;
        };
    };
    BS: {
        BSD: {
            name: string;
            symbol: string;
        };
        USD: {
            name: string;
            symbol: string;
        };
    };
    BA: {
        BAM: {
            name: string;
            symbol: string;
        };
    };
    BL: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    SH: {
        GBP: {
            name: string;
            symbol: string;
        };
        SHP: {
            name: string;
            symbol: string;
        };
    };
    BY: {
        BYN: {
            name: string;
            symbol: string;
        };
    };
    BZ: {
        BZD: {
            name: string;
            symbol: string;
        };
    };
    BM: {
        BMD: {
            name: string;
            symbol: string;
        };
    };
    BO: {
        BOB: {
            name: string;
            symbol: string;
        };
    };
    BQ: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    BR: {
        BRL: {
            name: string;
            symbol: string;
        };
    };
    BB: {
        BBD: {
            name: string;
            symbol: string;
        };
    };
    BN: {
        BND: {
            name: string;
            symbol: string;
        };
        SGD: {
            name: string;
            symbol: string;
        };
    };
    BT: {
        BTN: {
            name: string;
            symbol: string;
        };
        INR: {
            name: string;
            symbol: string;
        };
    };
    BV: any[];
    BW: {
        BWP: {
            name: string;
            symbol: string;
        };
    };
    CF: {
        XAF: {
            name: string;
            symbol: string;
        };
    };
    CA: {
        CAD: {
            name: string;
            symbol: string;
        };
    };
    CC: {
        AUD: {
            name: string;
            symbol: string;
        };
    };
    CH: {
        CHF: {
            name: string;
            symbol: string;
        };
    };
    CL: {
        CLP: {
            name: string;
            symbol: string;
        };
    };
    CN: {
        CNY: {
            name: string;
            symbol: string;
        };
    };
    CI: {
        XOF: {
            name: string;
            symbol: string;
        };
    };
    CM: {
        XAF: {
            name: string;
            symbol: string;
        };
    };
    CD: {
        CDF: {
            name: string;
            symbol: string;
        };
    };
    CG: {
        XAF: {
            name: string;
            symbol: string;
        };
    };
    CK: {
        CKD: {
            name: string;
            symbol: string;
        };
        NZD: {
            name: string;
            symbol: string;
        };
    };
    CO: {
        COP: {
            name: string;
            symbol: string;
        };
    };
    KM: {
        KMF: {
            name: string;
            symbol: string;
        };
    };
    CV: {
        CVE: {
            name: string;
            symbol: string;
        };
    };
    CR: {
        CRC: {
            name: string;
            symbol: string;
        };
    };
    CU: {
        CUC: {
            name: string;
            symbol: string;
        };
        CUP: {
            name: string;
            symbol: string;
        };
    };
    CW: {
        ANG: {
            name: string;
            symbol: string;
        };
    };
    CX: {
        AUD: {
            name: string;
            symbol: string;
        };
    };
    KY: {
        KYD: {
            name: string;
            symbol: string;
        };
    };
    CY: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    CZ: {
        CZK: {
            name: string;
            symbol: string;
        };
    };
    DE: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    DJ: {
        DJF: {
            name: string;
            symbol: string;
        };
    };
    DM: {
        XCD: {
            name: string;
            symbol: string;
        };
    };
    DK: {
        DKK: {
            name: string;
            symbol: string;
        };
    };
    DO: {
        DOP: {
            name: string;
            symbol: string;
        };
    };
    DZ: {
        DZD: {
            name: string;
            symbol: string;
        };
    };
    EC: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    EG: {
        EGP: {
            name: string;
            symbol: string;
        };
    };
    ER: {
        ERN: {
            name: string;
            symbol: string;
        };
    };
    EH: {
        DZD: {
            name: string;
            symbol: string;
        };
        MAD: {
            name: string;
            symbol: string;
        };
        MRU: {
            name: string;
            symbol: string;
        };
    };
    ES: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    EE: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    ET: {
        ETB: {
            name: string;
            symbol: string;
        };
    };
    FI: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    FJ: {
        FJD: {
            name: string;
            symbol: string;
        };
    };
    FK: {
        FKP: {
            name: string;
            symbol: string;
        };
    };
    FR: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    FO: {
        DKK: {
            name: string;
            symbol: string;
        };
        FOK: {
            name: string;
            symbol: string;
        };
    };
    FM: any[];
    GA: {
        XAF: {
            name: string;
            symbol: string;
        };
    };
    GB: {
        GBP: {
            name: string;
            symbol: string;
        };
    };
    GE: {
        GEL: {
            name: string;
            symbol: string;
        };
    };
    GG: {
        GBP: {
            name: string;
            symbol: string;
        };
        GGP: {
            name: string;
            symbol: string;
        };
    };
    GH: {
        GHS: {
            name: string;
            symbol: string;
        };
    };
    GI: {
        GIP: {
            name: string;
            symbol: string;
        };
    };
    GN: {
        GNF: {
            name: string;
            symbol: string;
        };
    };
    GP: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    GM: {
        GMD: {
            name: string;
            symbol: string;
        };
    };
    GW: {
        XOF: {
            name: string;
            symbol: string;
        };
    };
    GQ: {
        XAF: {
            name: string;
            symbol: string;
        };
    };
    GR: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    GD: {
        XCD: {
            name: string;
            symbol: string;
        };
    };
    GL: {
        DKK: {
            name: string;
            symbol: string;
        };
    };
    GT: {
        GTQ: {
            name: string;
            symbol: string;
        };
    };
    GF: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    GU: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    GY: {
        GYD: {
            name: string;
            symbol: string;
        };
    };
    HK: {
        HKD: {
            name: string;
            symbol: string;
        };
    };
    HM: any[];
    HN: {
        HNL: {
            name: string;
            symbol: string;
        };
    };
    HR: {
        HRK: {
            name: string;
            symbol: string;
        };
    };
    HT: {
        HTG: {
            name: string;
            symbol: string;
        };
    };
    HU: {
        HUF: {
            name: string;
            symbol: string;
        };
    };
    ID: {
        IDR: {
            name: string;
            symbol: string;
        };
    };
    IM: {
        GBP: {
            name: string;
            symbol: string;
        };
        IMP: {
            name: string;
            symbol: string;
        };
    };
    IN: {
        INR: {
            name: string;
            symbol: string;
        };
    };
    IO: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    IE: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    IR: {
        IRR: {
            name: string;
            symbol: string;
        };
    };
    IQ: {
        IQD: {
            name: string;
            symbol: string;
        };
    };
    IS: {
        ISK: {
            name: string;
            symbol: string;
        };
    };
    IL: {
        ILS: {
            name: string;
            symbol: string;
        };
    };
    IT: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    JM: {
        JMD: {
            name: string;
            symbol: string;
        };
    };
    JE: {
        GBP: {
            name: string;
            symbol: string;
        };
        JEP: {
            name: string;
            symbol: string;
        };
    };
    JO: {
        JOD: {
            name: string;
            symbol: string;
        };
    };
    JP: {
        JPY: {
            name: string;
            symbol: string;
        };
    };
    KZ: {
        KZT: {
            name: string;
            symbol: string;
        };
    };
    KE: {
        KES: {
            name: string;
            symbol: string;
        };
    };
    KG: {
        KGS: {
            name: string;
            symbol: string;
        };
    };
    KH: {
        KHR: {
            name: string;
            symbol: string;
        };
        USD: {
            name: string;
            symbol: string;
        };
    };
    KI: {
        AUD: {
            name: string;
            symbol: string;
        };
        KID: {
            name: string;
            symbol: string;
        };
    };
    KN: {
        XCD: {
            name: string;
            symbol: string;
        };
    };
    KR: {
        KRW: {
            name: string;
            symbol: string;
        };
    };
    XK: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    KW: {
        KWD: {
            name: string;
            symbol: string;
        };
    };
    LA: {
        LAK: {
            name: string;
            symbol: string;
        };
    };
    LB: {
        LBP: {
            name: string;
            symbol: string;
        };
    };
    LR: {
        LRD: {
            name: string;
            symbol: string;
        };
    };
    LY: {
        LYD: {
            name: string;
            symbol: string;
        };
    };
    LC: {
        XCD: {
            name: string;
            symbol: string;
        };
    };
    LI: {
        CHF: {
            name: string;
            symbol: string;
        };
    };
    LK: {
        LKR: {
            name: string;
            symbol: string;
        };
    };
    LS: {
        LSL: {
            name: string;
            symbol: string;
        };
        ZAR: {
            name: string;
            symbol: string;
        };
    };
    LT: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    LU: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    LV: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    MO: {
        MOP: {
            name: string;
            symbol: string;
        };
    };
    MF: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    MA: {
        MAD: {
            name: string;
            symbol: string;
        };
    };
    MC: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    MD: {
        MDL: {
            name: string;
            symbol: string;
        };
    };
    MG: {
        MGA: {
            name: string;
            symbol: string;
        };
    };
    MV: {
        MVR: {
            name: string;
            symbol: string;
        };
    };
    MX: {
        MXN: {
            name: string;
            symbol: string;
        };
    };
    MH: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    MK: {
        MKD: {
            name: string;
            symbol: string;
        };
    };
    ML: {
        XOF: {
            name: string;
            symbol: string;
        };
    };
    MT: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    MM: {
        MMK: {
            name: string;
            symbol: string;
        };
    };
    ME: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    MN: {
        MNT: {
            name: string;
            symbol: string;
        };
    };
    MP: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    MZ: {
        MZN: {
            name: string;
            symbol: string;
        };
    };
    MR: {
        MRU: {
            name: string;
            symbol: string;
        };
    };
    MS: {
        XCD: {
            name: string;
            symbol: string;
        };
    };
    MQ: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    MU: {
        MUR: {
            name: string;
            symbol: string;
        };
    };
    MW: {
        MWK: {
            name: string;
            symbol: string;
        };
    };
    MY: {
        MYR: {
            name: string;
            symbol: string;
        };
    };
    YT: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    NA: {
        NAD: {
            name: string;
            symbol: string;
        };
        ZAR: {
            name: string;
            symbol: string;
        };
    };
    NC: {
        XPF: {
            name: string;
            symbol: string;
        };
    };
    NE: {
        XOF: {
            name: string;
            symbol: string;
        };
    };
    NF: {
        AUD: {
            name: string;
            symbol: string;
        };
    };
    NG: {
        NGN: {
            name: string;
            symbol: string;
        };
    };
    NI: {
        NIO: {
            name: string;
            symbol: string;
        };
    };
    NU: {
        NZD: {
            name: string;
            symbol: string;
        };
    };
    NL: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    NO: {
        NOK: {
            name: string;
            symbol: string;
        };
    };
    NP: {
        NPR: {
            name: string;
            symbol: string;
        };
    };
    NR: {
        AUD: {
            name: string;
            symbol: string;
        };
    };
    NZ: {
        NZD: {
            name: string;
            symbol: string;
        };
    };
    OM: {
        OMR: {
            name: string;
            symbol: string;
        };
    };
    PK: {
        PKR: {
            name: string;
            symbol: string;
        };
    };
    PA: {
        PAB: {
            name: string;
            symbol: string;
        };
        USD: {
            name: string;
            symbol: string;
        };
    };
    PN: {
        NZD: {
            name: string;
            symbol: string;
        };
    };
    PE: {
        PEN: {
            name: string;
            symbol: string;
        };
    };
    PH: {
        PHP: {
            name: string;
            symbol: string;
        };
    };
    PW: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    PG: {
        PGK: {
            name: string;
            symbol: string;
        };
    };
    PL: {
        PLN: {
            name: string;
            symbol: string;
        };
    };
    PR: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    KP: {
        KPW: {
            name: string;
            symbol: string;
        };
    };
    PT: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    PY: {
        PYG: {
            name: string;
            symbol: string;
        };
    };
    PS: {
        EGP: {
            name: string;
            symbol: string;
        };
        ILS: {
            name: string;
            symbol: string;
        };
        JOD: {
            name: string;
            symbol: string;
        };
    };
    PF: {
        XPF: {
            name: string;
            symbol: string;
        };
    };
    QA: {
        QAR: {
            name: string;
            symbol: string;
        };
    };
    RE: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    RO: {
        RON: {
            name: string;
            symbol: string;
        };
    };
    RU: {
        RUB: {
            name: string;
            symbol: string;
        };
    };
    RW: {
        RWF: {
            name: string;
            symbol: string;
        };
    };
    SA: {
        SAR: {
            name: string;
            symbol: string;
        };
    };
    SD: {
        SDG: {
            name: string;
            symbol: string;
        };
    };
    SN: {
        XOF: {
            name: string;
            symbol: string;
        };
    };
    SG: {
        SGD: {
            name: string;
            symbol: string;
        };
    };
    GS: {
        SHP: {
            name: string;
            symbol: string;
        };
    };
    SJ: {
        NOK: {
            name: string;
            symbol: string;
        };
    };
    SB: {
        SBD: {
            name: string;
            symbol: string;
        };
    };
    SL: {
        SLL: {
            name: string;
            symbol: string;
        };
    };
    SV: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    SM: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    SO: {
        SOS: {
            name: string;
            symbol: string;
        };
    };
    PM: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    RS: {
        RSD: {
            name: string;
            symbol: string;
        };
    };
    SS: {
        SSP: {
            name: string;
            symbol: string;
        };
    };
    ST: {
        STN: {
            name: string;
            symbol: string;
        };
    };
    SR: {
        SRD: {
            name: string;
            symbol: string;
        };
    };
    SK: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    SI: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    SE: {
        SEK: {
            name: string;
            symbol: string;
        };
    };
    SZ: {
        SZL: {
            name: string;
            symbol: string;
        };
        ZAR: {
            name: string;
            symbol: string;
        };
    };
    SX: {
        ANG: {
            name: string;
            symbol: string;
        };
    };
    SC: {
        SCR: {
            name: string;
            symbol: string;
        };
    };
    SY: {
        SYP: {
            name: string;
            symbol: string;
        };
    };
    TC: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    TD: {
        XAF: {
            name: string;
            symbol: string;
        };
    };
    TG: {
        XOF: {
            name: string;
            symbol: string;
        };
    };
    TH: {
        THB: {
            name: string;
            symbol: string;
        };
    };
    TJ: {
        TJS: {
            name: string;
            symbol: string;
        };
    };
    TK: {
        NZD: {
            name: string;
            symbol: string;
        };
    };
    TM: {
        TMT: {
            name: string;
            symbol: string;
        };
    };
    TL: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    TO: {
        TOP: {
            name: string;
            symbol: string;
        };
    };
    TT: {
        TTD: {
            name: string;
            symbol: string;
        };
    };
    TN: {
        TND: {
            name: string;
            symbol: string;
        };
    };
    TR: {
        TRY: {
            name: string;
            symbol: string;
        };
    };
    TV: {
        AUD: {
            name: string;
            symbol: string;
        };
        TVD: {
            name: string;
            symbol: string;
        };
    };
    TW: {
        TWD: {
            name: string;
            symbol: string;
        };
    };
    TZ: {
        TZS: {
            name: string;
            symbol: string;
        };
    };
    UG: {
        UGX: {
            name: string;
            symbol: string;
        };
    };
    UA: {
        UAH: {
            name: string;
            symbol: string;
        };
    };
    UM: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    UY: {
        UYU: {
            name: string;
            symbol: string;
        };
    };
    US: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    UZ: {
        UZS: {
            name: string;
            symbol: string;
        };
    };
    VA: {
        EUR: {
            name: string;
            symbol: string;
        };
    };
    VC: {
        XCD: {
            name: string;
            symbol: string;
        };
    };
    VE: {
        VES: {
            name: string;
            symbol: string;
        };
    };
    VG: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    VI: {
        USD: {
            name: string;
            symbol: string;
        };
    };
    VN: {
        VND: {
            name: string;
            symbol: string;
        };
    };
    VU: {
        VUV: {
            name: string;
            symbol: string;
        };
    };
    WF: {
        XPF: {
            name: string;
            symbol: string;
        };
    };
    WS: {
        WST: {
            name: string;
            symbol: string;
        };
    };
    YE: {
        YER: {
            name: string;
            symbol: string;
        };
    };
    ZA: {
        ZAR: {
            name: string;
            symbol: string;
        };
    };
    ZM: {
        ZMW: {
            name: string;
            symbol: string;
        };
    };
    ZW: {
        BWP: {
            name: string;
            symbol: string;
        };
        CNY: {
            name: string;
            symbol: string;
        };
        EUR: {
            name: string;
            symbol: string;
        };
        GBP: {
            name: string;
            symbol: string;
        };
        INR: {
            name: string;
            symbol: string;
        };
        JPY: {
            name: string;
            symbol: string;
        };
        USD: {
            name: string;
            symbol: string;
        };
        ZAR: {
            name: string;
            symbol: string;
        };
        ZWB: {
            name: string;
            symbol: string;
        };
    };
} | {
    AW: {
        nld: string;
        pap: string;
    };
    AF: {
        prs: string;
        pus: string;
        tuk: string;
    };
    AO: {
        por: string;
    };
    AI: {
        eng: string;
    };
    AX: {
        swe: string;
    };
    AL: {
        sqi: string;
    };
    AD: {
        cat: string;
    };
    AE: {
        ara: string;
    };
    AR: {
        grn: string;
        spa: string;
    };
    AM: {
        hye: string;
    };
    AS: {
        eng: string;
        smo: string;
    };
    AQ: {};
    TF: {
        fra: string;
    };
    AG: {
        eng: string;
    };
    AU: {
        eng: string;
    };
    AT: {
        bar: string;
    };
    AZ: {
        aze: string;
        rus: string;
    };
    BI: {
        fra: string;
        run: string;
    };
    BE: {
        deu: string;
        fra: string;
        nld: string;
    };
    BJ: {
        fra: string;
    };
    BF: {
        fra: string;
    };
    BD: {
        ben: string;
    };
    BG: {
        bul: string;
    };
    BH: {
        ara: string;
    };
    BS: {
        eng: string;
    };
    BA: {
        bos: string;
        hrv: string;
        srp: string;
    };
    BL: {
        fra: string;
    };
    SH: {
        eng: string;
    };
    BY: {
        bel: string;
        rus: string;
    };
    BZ: {
        bjz: string;
        eng: string;
        spa: string;
    };
    BM: {
        eng: string;
    };
    BO: {
        aym: string;
        grn: string;
        que: string;
        spa: string;
    };
    BQ: {
        eng: string;
        nld: string;
        pap: string;
    };
    BR: {
        por: string;
    };
    BB: {
        eng: string;
    };
    BN: {
        msa: string;
    };
    BT: {
        dzo: string;
    };
    BV: {
        nor: string;
    };
    BW: {
        eng: string;
        tsn: string;
    };
    CF: {
        fra: string;
        sag: string;
    };
    CA: {
        eng: string;
        fra: string;
    };
    CC: {
        eng: string;
    };
    CH: {
        fra: string;
        gsw: string;
        ita: string;
        roh: string;
    };
    CL: {
        spa: string;
    };
    CN: {
        zho: string;
    };
    CI: {
        fra: string;
    };
    CM: {
        eng: string;
        fra: string;
    };
    CD: {
        fra: string;
        kon: string;
        lin: string;
        lua: string;
        swa: string;
    };
    CG: {
        fra: string;
        kon: string;
        lin: string;
    };
    CK: {
        eng: string;
        rar: string;
    };
    CO: {
        spa: string;
    };
    KM: {
        ara: string;
        fra: string;
        zdj: string;
    };
    CV: {
        por: string;
    };
    CR: {
        spa: string;
    };
    CU: {
        spa: string;
    };
    CW: {
        eng: string;
        nld: string;
        pap: string;
    };
    CX: {
        eng: string;
    };
    KY: {
        eng: string;
    };
    CY: {
        ell: string;
        tur: string;
    };
    CZ: {
        ces: string;
        slk: string;
    };
    DE: {
        deu: string;
    };
    DJ: {
        ara: string;
        fra: string;
    };
    DM: {
        eng: string;
    };
    DK: {
        dan: string;
    };
    DO: {
        spa: string;
    };
    DZ: {
        ara: string;
    };
    EC: {
        spa: string;
    };
    EG: {
        ara: string;
    };
    ER: {
        ara: string;
        eng: string;
        tir: string;
    };
    EH: {
        ber: string;
        mey: string;
        spa: string;
    };
    ES: {
        spa: string;
    };
    EE: {
        est: string;
    };
    ET: {
        amh: string;
    };
    FI: {
        fin: string;
        swe: string;
    };
    FJ: {
        eng: string;
        fij: string;
        hif: string;
    };
    FK: {
        eng: string;
    };
    FR: {
        fra: string;
    };
    FO: {
        dan: string;
        fao: string;
    };
    FM: {
        eng: string;
    };
    GA: {
        fra: string;
    };
    GB: {
        eng: string;
    };
    GE: {
        kat: string;
    };
    GG: {
        eng: string;
        fra: string;
        nfr: string;
    };
    GH: {
        eng: string;
    };
    GI: {
        eng: string;
    };
    GN: {
        fra: string;
    };
    GP: {
        fra: string;
    };
    GM: {
        eng: string;
    };
    GW: {
        por: string;
        pov: string;
    };
    GQ: {
        fra: string;
        por: string;
        spa: string;
    };
    GR: {
        ell: string;
    };
    GD: {
        eng: string;
    };
    GL: {
        kal: string;
    };
    GT: {
        spa: string;
    };
    GF: {
        fra: string;
    };
    GU: {
        cha: string;
        eng: string;
        spa: string;
    };
    GY: {
        eng: string;
    };
    HK: {
        eng: string;
        zho: string;
    };
    HM: {
        eng: string;
    };
    HN: {
        spa: string;
    };
    HR: {
        hrv: string;
    };
    HT: {
        fra: string;
        hat: string;
    };
    HU: {
        hun: string;
    };
    ID: {
        ind: string;
    };
    IM: {
        eng: string;
        glv: string;
    };
    IN: {
        eng: string;
        hin: string;
        tam: string;
    };
    IO: {
        eng: string;
    };
    IE: {
        eng: string;
        gle: string;
    };
    IR: {
        fas: string;
    };
    IQ: {
        ara: string;
        arc: string;
        ckb: string;
    };
    IS: {
        isl: string;
    };
    IL: {
        ara: string;
        heb: string;
    };
    IT: {
        ita: string;
    };
    JM: {
        eng: string;
        jam: string;
    };
    JE: {
        eng: string;
        fra: string;
        nrf: string;
    };
    JO: {
        ara: string;
    };
    JP: {
        jpn: string;
    };
    KZ: {
        kaz: string;
        rus: string;
    };
    KE: {
        eng: string;
        swa: string;
    };
    KG: {
        kir: string;
        rus: string;
    };
    KH: {
        khm: string;
    };
    KI: {
        eng: string;
        gil: string;
    };
    KN: {
        eng: string;
    };
    KR: {
        kor: string;
    };
    XK: {
        sqi: string;
        srp: string;
    };
    KW: {
        ara: string;
    };
    LA: {
        lao: string;
    };
    LB: {
        ara: string;
        fra: string;
    };
    LR: {
        eng: string;
    };
    LY: {
        ara: string;
    };
    LC: {
        eng: string;
    };
    LI: {
        deu: string;
    };
    LK: {
        sin: string;
        tam: string;
    };
    LS: {
        eng: string;
        sot: string;
    };
    LT: {
        lit: string;
    };
    LU: {
        deu: string;
        fra: string;
        ltz: string;
    };
    LV: {
        lav: string;
    };
    MO: {
        por: string;
        zho: string;
    };
    MF: {
        fra: string;
    };
    MA: {
        ara: string;
        ber: string;
    };
    MC: {
        fra: string;
    };
    MD: {
        ron: string;
    };
    MG: {
        fra: string;
        mlg: string;
    };
    MV: {
        div: string;
    };
    MX: {
        spa: string;
    };
    MH: {
        eng: string;
        mah: string;
    };
    MK: {
        mkd: string;
    };
    ML: {
        fra: string;
    };
    MT: {
        eng: string;
        mlt: string;
    };
    MM: {
        mya: string;
    };
    ME: {
        cnr: string;
    };
    MN: {
        mon: string;
    };
    MP: {
        cal: string;
        cha: string;
        eng: string;
    };
    MZ: {
        por: string;
    };
    MR: {
        ara: string;
    };
    MS: {
        eng: string;
    };
    MQ: {
        fra: string;
    };
    MU: {
        eng: string;
        fra: string;
        mfe: string;
    };
    MW: {
        eng: string;
        nya: string;
    };
    MY: {
        eng: string;
        msa: string;
    };
    YT: {
        fra: string;
    };
    NA: {
        afr: string;
        deu: string;
        eng: string;
        her: string;
        hgm: string;
        kwn: string;
        loz: string;
        ndo: string;
        tsn: string;
    };
    NC: {
        fra: string;
    };
    NE: {
        fra: string;
    };
    NF: {
        eng: string;
        pih: string;
    };
    NG: {
        eng: string;
    };
    NI: {
        spa: string;
    };
    NU: {
        eng: string;
        niu: string;
    };
    NL: {
        nld: string;
    };
    NO: {
        nno: string;
        nob: string;
        smi: string;
    };
    NP: {
        nep: string;
    };
    NR: {
        eng: string;
        nau: string;
    };
    NZ: {
        eng: string;
        mri: string;
        nzs: string;
    };
    OM: {
        ara: string;
    };
    PK: {
        eng: string;
        urd: string;
    };
    PA: {
        spa: string;
    };
    PN: {
        eng: string;
    };
    PE: {
        aym: string;
        que: string;
        spa: string;
    };
    PH: {
        eng: string;
        fil: string;
    };
    PW: {
        eng: string;
        pau: string;
    };
    PG: {
        eng: string;
        hmo: string;
        tpi: string;
    };
    PL: {
        pol: string;
    };
    PR: {
        eng: string;
        spa: string;
    };
    KP: {
        kor: string;
    };
    PT: {
        por: string;
    };
    PY: {
        grn: string;
        spa: string;
    };
    PS: {
        ara: string;
    };
    PF: {
        fra: string;
    };
    QA: {
        ara: string;
    };
    RE: {
        fra: string;
    };
    RO: {
        ron: string;
    };
    RU: {
        rus: string;
    };
    RW: {
        eng: string;
        fra: string;
        kin: string;
    };
    SA: {
        ara: string;
    };
    SD: {
        ara: string;
        eng: string;
    };
    SN: {
        fra: string;
    };
    SG: {
        zho: string;
        eng: string;
        msa: string;
        tam: string;
    };
    GS: {
        eng: string;
    };
    SJ: {
        nor: string;
    };
    SB: {
        eng: string;
    };
    SL: {
        eng: string;
    };
    SV: {
        spa: string;
    };
    SM: {
        ita: string;
    };
    SO: {
        ara: string;
        som: string;
    };
    PM: {
        fra: string;
    };
    RS: {
        srp: string;
    };
    SS: {
        eng: string;
    };
    ST: {
        por: string;
    };
    SR: {
        nld: string;
    };
    SK: {
        slk: string;
    };
    SI: {
        slv: string;
    };
    SE: {
        swe: string;
    };
    SZ: {
        eng: string;
        ssw: string;
    };
    SX: {
        eng: string;
        fra: string;
        nld: string;
    };
    SC: {
        crs: string;
        eng: string;
        fra: string;
    };
    SY: {
        ara: string;
    };
    TC: {
        eng: string;
    };
    TD: {
        ara: string;
        fra: string;
    };
    TG: {
        fra: string;
    };
    TH: {
        tha: string;
    };
    TJ: {
        rus: string;
        tgk: string;
    };
    TK: {
        eng: string;
        smo: string;
        tkl: string;
    };
    TM: {
        rus: string;
        tuk: string;
    };
    TL: {
        por: string;
        tet: string;
    };
    TO: {
        eng: string;
        ton: string;
    };
    TT: {
        eng: string;
    };
    TN: {
        ara: string;
    };
    TR: {
        tur: string;
    };
    TV: {
        eng: string;
        tvl: string;
    };
    TW: {
        zho: string;
    };
    TZ: {
        eng: string;
        swa: string;
    };
    UG: {
        eng: string;
        swa: string;
    };
    UA: {
        ukr: string;
    };
    UM: {
        eng: string;
    };
    UY: {
        spa: string;
    };
    US: {
        eng: string;
    };
    UZ: {
        rus: string;
        uzb: string;
    };
    VA: {
        ita: string;
        lat: string;
    };
    VC: {
        eng: string;
    };
    VE: {
        spa: string;
    };
    VG: {
        eng: string;
    };
    VI: {
        eng: string;
    };
    VN: {
        vie: string;
    };
    VU: {
        bis: string;
        eng: string;
        fra: string;
    };
    WF: {
        fra: string;
    };
    WS: {
        eng: string;
        smo: string;
    };
    YE: {
        ara: string;
    };
    ZA: {
        afr: string;
        eng: string;
        nbl: string;
        nso: string;
        sot: string;
        ssw: string;
        tsn: string;
        tso: string;
        ven: string;
        xho: string;
        zul: string;
    };
    ZM: {
        eng: string;
    };
    ZW: {
        bwg: string;
        eng: string;
        kck: string;
        khi: string;
        ndc: string;
        nde: string;
        nya: string;
        sna: string;
        sot: string;
        toi: string;
        tsn: string;
        tso: string;
        ven: string;
        xho: string;
        zib: string;
    };
} | {
    AW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AF: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AO: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AX: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AL: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AD: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AR: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AM: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AQ: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TF: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AG: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AU: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AT: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    AZ: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BI: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BE: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BJ: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BF: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BD: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BG: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BH: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BS: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BA: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BL: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SH: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BY: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BZ: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BM: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BO: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BQ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BR: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BB: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BN: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BT: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BV: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    BW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CF: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CA: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CC: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CH: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CL: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CN: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
    };
    CI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CM: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CD: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CG: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CK: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CO: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KM: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CV: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CR: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CU: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CX: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KY: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CY: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    CZ: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    DE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    DJ: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    DM: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    DK: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    DO: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    DZ: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    EC: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    EG: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ER: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    EH: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ES: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    EE: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ET: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    FI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    FJ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    FK: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    FR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    FO: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    FM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GB: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GH: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GP: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GQ: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GD: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GL: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GT: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GF: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GU: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    GY: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    HK: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
    };
    HM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    HN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    HR: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    HT: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    HU: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ID: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IO: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IQ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IL: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    IT: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    JM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    JE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    JO: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    JP: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KZ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KH: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    XK: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LB: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LY: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LC: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LK: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LT: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LU: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    LV: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MO: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
    };
    MF: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MC: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MD: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MV: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MX: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MH: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MK: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ML: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MT: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ME: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MP: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MZ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MQ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MU: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    MY: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    YT: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NC: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NF: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NU: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NL: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NO: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NP: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    NZ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    OM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PK: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PH: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PL: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    KP: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PT: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PY: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PF: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    QA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    RE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    RO: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    RU: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    RW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SD: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
    };
    GS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SJ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SB: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SL: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SV: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SO: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    PM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    RS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ST: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SK: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SZ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SX: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SC: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    SY: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TC: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TD: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TH: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TJ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TK: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TL: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TO: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TT: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TR: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TV: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    TW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
    };
    TZ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    UG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    UA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    UM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    UY: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    US: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    UZ: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    VA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    VC: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    VE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    VG: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    VI: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    VN: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    VU: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    WF: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    WS: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    YE: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ZA: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ZM: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    ZW: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
} | {
    AW: number[];
    AF: number[];
    AO: number[];
    AI: number[];
    AX: number[];
    AL: number[];
    AD: number[];
    AE: number[];
    AR: number[];
    AM: number[];
    AS: number[];
    AQ: number[];
    TF: number[];
    AG: number[];
    AU: number[];
    AT: number[];
    AZ: number[];
    BI: number[];
    BE: number[];
    BJ: number[];
    BF: number[];
    BD: number[];
    BG: number[];
    BH: number[];
    BS: number[];
    BA: number[];
    BL: number[];
    SH: number[];
    BY: number[];
    BZ: number[];
    BM: number[];
    BO: number[];
    BQ: number[];
    BR: number[];
    BB: number[];
    BN: number[];
    BT: number[];
    BV: number[];
    BW: number[];
    CF: number[];
    CA: number[];
    CC: number[];
    CH: number[];
    CL: number[];
    CN: number[];
    CI: number[];
    CM: number[];
    CD: number[];
    CG: number[];
    CK: number[];
    CO: number[];
    KM: number[];
    CV: number[];
    CR: number[];
    CU: number[];
    CW: number[];
    CX: number[];
    KY: number[];
    CY: number[];
    CZ: number[];
    DE: number[];
    DJ: number[];
    DM: number[];
    DK: number[];
    DO: number[];
    DZ: number[];
    EC: number[];
    EG: number[];
    ER: number[];
    EH: number[];
    ES: number[];
    EE: number[];
    ET: number[];
    FI: number[];
    FJ: number[];
    FK: number[];
    FR: number[];
    FO: number[];
    FM: number[];
    GA: number[];
    GB: number[];
    GE: number[];
    GG: number[];
    GH: number[];
    GI: number[];
    GN: number[];
    GP: number[];
    GM: number[];
    GW: number[];
    GQ: number[];
    GR: number[];
    GD: number[];
    GL: number[];
    GT: number[];
    GF: number[];
    GU: number[];
    GY: number[];
    HK: number[];
    HM: number[];
    HN: number[];
    HR: number[];
    HT: number[];
    HU: number[];
    ID: number[];
    IM: number[];
    IN: number[];
    IO: number[];
    IE: number[];
    IR: number[];
    IQ: number[];
    IS: number[];
    IL: number[];
    IT: number[];
    JM: number[];
    JE: number[];
    JO: number[];
    JP: number[];
    KZ: number[];
    KE: number[];
    KG: number[];
    KH: number[];
    KI: number[];
    KN: number[];
    KR: number[];
    XK: number[];
    KW: number[];
    LA: number[];
    LB: number[];
    LR: number[];
    LY: number[];
    LC: number[];
    LI: number[];
    LK: number[];
    LS: number[];
    LT: number[];
    LU: number[];
    LV: number[];
    MO: number[];
    MF: number[];
    MA: number[];
    MC: number[];
    MD: number[];
    MG: number[];
    MV: number[];
    MX: number[];
    MH: number[];
    MK: number[];
    ML: number[];
    MT: number[];
    MM: number[];
    ME: number[];
    MN: number[];
    MP: number[];
    MZ: number[];
    MR: number[];
    MS: number[];
    MQ: number[];
    MU: number[];
    MW: number[];
    MY: number[];
    YT: number[];
    NA: number[];
    NC: number[];
    NE: number[];
    NF: number[];
    NG: number[];
    NI: number[];
    NU: number[];
    NL: number[];
    NO: number[];
    NP: number[];
    NR: number[];
    NZ: number[];
    OM: number[];
    PK: number[];
    PA: number[];
    PN: number[];
    PE: number[];
    PH: number[];
    PW: number[];
    PG: number[];
    PL: number[];
    PR: number[];
    KP: number[];
    PT: number[];
    PY: number[];
    PS: number[];
    PF: number[];
    QA: number[];
    RE: number[];
    RO: number[];
    RU: number[];
    RW: number[];
    SA: number[];
    SD: number[];
    SN: number[];
    SG: number[];
    GS: number[];
    SJ: number[];
    SB: number[];
    SL: number[];
    SV: number[];
    SM: number[];
    SO: number[];
    PM: number[];
    RS: number[];
    SS: number[];
    ST: number[];
    SR: number[];
    SK: number[];
    SI: number[];
    SE: number[];
    SZ: number[];
    SX: number[];
    SC: number[];
    SY: number[];
    TC: number[];
    TD: number[];
    TG: number[];
    TH: number[];
    TJ: number[];
    TK: number[];
    TM: number[];
    TL: number[];
    TO: number[];
    TT: number[];
    TN: number[];
    TR: number[];
    TV: number[];
    TW: number[];
    TZ: number[];
    UG: number[];
    UA: number[];
    UM: number[];
    UY: number[];
    US: number[];
    UZ: number[];
    VA: number[];
    VC: number[];
    VE: number[];
    VG: number[];
    VI: number[];
    VN: number[];
    VU: number[];
    WF: number[];
    WS: number[];
    YE: number[];
    ZA: number[];
    ZM: number[];
    ZW: number[];
} | {
    AW: any[];
    AF: string[];
    AO: string[];
    AI: any[];
    AX: any[];
    AL: string[];
    AD: string[];
    AE: string[];
    AR: string[];
    AM: string[];
    AS: any[];
    AQ: any[];
    TF: any[];
    AG: any[];
    AU: any[];
    AT: string[];
    AZ: string[];
    BI: string[];
    BE: string[];
    BJ: string[];
    BF: string[];
    BD: string[];
    BG: string[];
    BH: any[];
    BS: any[];
    BA: string[];
    BL: any[];
    SH: any[];
    BY: string[];
    BZ: string[];
    BM: any[];
    BO: string[];
    BQ: any[];
    BR: string[];
    BB: any[];
    BN: string[];
    BT: string[];
    BV: any[];
    BW: string[];
    CF: string[];
    CA: string[];
    CC: any[];
    CH: string[];
    CL: string[];
    CN: string[];
    CI: string[];
    CM: string[];
    CD: string[];
    CG: string[];
    CK: any[];
    CO: string[];
    KM: any[];
    CV: any[];
    CR: string[];
    CU: any[];
    CW: any[];
    CX: any[];
    KY: any[];
    CY: any[];
    CZ: string[];
    DE: string[];
    DJ: string[];
    DM: any[];
    DK: string[];
    DO: string[];
    DZ: string[];
    EC: string[];
    EG: string[];
    ER: string[];
    EH: string[];
    ES: string[];
    EE: string[];
    ET: string[];
    FI: string[];
    FJ: any[];
    FK: any[];
    FR: string[];
    FO: any[];
    FM: any[];
    GA: string[];
    GB: string[];
    GE: string[];
    GG: any[];
    GH: string[];
    GI: string[];
    GN: string[];
    GP: any[];
    GM: string[];
    GW: string[];
    GQ: string[];
    GR: string[];
    GD: any[];
    GL: any[];
    GT: string[];
    GF: string[];
    GU: any[];
    GY: string[];
    HK: string[];
    HM: any[];
    HN: string[];
    HR: string[];
    HT: string[];
    HU: string[];
    ID: string[];
    IM: any[];
    IN: string[];
    IO: any[];
    IE: string[];
    IR: string[];
    IQ: string[];
    IS: any[];
    IL: string[];
    IT: string[];
    JM: any[];
    JE: any[];
    JO: string[];
    JP: any[];
    KZ: string[];
    KE: string[];
    KG: string[];
    KH: string[];
    KI: any[];
    KN: any[];
    KR: string[];
    XK: string[];
    KW: string[];
    LA: string[];
    LB: string[];
    LR: string[];
    LY: string[];
    LC: any[];
    LI: string[];
    LK: string[];
    LS: string[];
    LT: string[];
    LU: string[];
    LV: string[];
    MO: string[];
    MF: string[];
    MA: string[];
    MC: string[];
    MD: string[];
    MG: any[];
    MV: any[];
    MX: string[];
    MH: any[];
    MK: string[];
    ML: string[];
    MT: any[];
    MM: string[];
    ME: string[];
    MN: string[];
    MP: any[];
    MZ: string[];
    MR: string[];
    MS: any[];
    MQ: any[];
    MU: any[];
    MW: string[];
    MY: string[];
    YT: any[];
    NA: string[];
    NC: any[];
    NE: string[];
    NF: any[];
    NG: string[];
    NI: string[];
    NU: any[];
    NL: string[];
    NO: string[];
    NP: string[];
    NR: any[];
    NZ: any[];
    OM: string[];
    PK: string[];
    PA: string[];
    PN: any[];
    PE: string[];
    PH: any[];
    PW: any[];
    PG: string[];
    PL: string[];
    PR: any[];
    KP: string[];
    PT: string[];
    PY: string[];
    PS: string[];
    PF: any[];
    QA: string[];
    RE: any[];
    RO: string[];
    RU: string[];
    RW: string[];
    SA: string[];
    SD: string[];
    SN: string[];
    SG: any[];
    GS: any[];
    SJ: any[];
    SB: any[];
    SL: string[];
    SV: string[];
    SM: string[];
    SO: string[];
    PM: any[];
    RS: string[];
    SS: string[];
    ST: any[];
    SR: string[];
    SK: string[];
    SI: string[];
    SE: string[];
    SZ: string[];
    SX: string[];
    SC: any[];
    SY: string[];
    TC: any[];
    TD: string[];
    TG: string[];
    TH: string[];
    TJ: string[];
    TK: any[];
    TM: string[];
    TL: string[];
    TO: any[];
    TT: any[];
    TN: string[];
    TR: string[];
    TV: any[];
    TW: any[];
    TZ: string[];
    UG: string[];
    UA: string[];
    UM: any[];
    UY: string[];
    US: string[];
    UZ: string[];
    VA: string[];
    VC: any[];
    VE: string[];
    VG: any[];
    VI: any[];
    VN: string[];
    VU: any[];
    WF: any[];
    WS: any[];
    YE: string[];
    ZA: string[];
    ZM: string[];
    ZW: string[];
} | {
    AW: number;
    AF: number;
    AO: number;
    AI: number;
    AX: number;
    AL: number;
    AD: number;
    AE: number;
    AR: number;
    AM: number;
    AS: number;
    AQ: number;
    TF: number;
    AG: number;
    AU: number;
    AT: number;
    AZ: number;
    BI: number;
    BE: number;
    BJ: number;
    BF: number;
    BD: number;
    BG: number;
    BH: number;
    BS: number;
    BA: number;
    BL: number;
    SH: number;
    BY: number;
    BZ: number;
    BM: number;
    BO: number;
    BQ: number;
    BR: number;
    BB: number;
    BN: number;
    BT: number;
    BV: number;
    BW: number;
    CF: number;
    CA: number;
    CC: number;
    CH: number;
    CL: number;
    CN: number;
    CI: number;
    CM: number;
    CD: number;
    CG: number;
    CK: number;
    CO: number;
    KM: number;
    CV: number;
    CR: number;
    CU: number;
    CW: number;
    CX: number;
    KY: number;
    CY: number;
    CZ: number;
    DE: number;
    DJ: number;
    DM: number;
    DK: number;
    DO: number;
    DZ: number;
    EC: number;
    EG: number;
    ER: number;
    EH: number;
    ES: number;
    EE: number;
    ET: number;
    FI: number;
    FJ: number;
    FK: number;
    FR: number;
    FO: number;
    FM: number;
    GA: number;
    GB: number;
    GE: number;
    GG: number;
    GH: number;
    GI: number;
    GN: number;
    GP: number;
    GM: number;
    GW: number;
    GQ: number;
    GR: number;
    GD: number;
    GL: number;
    GT: number;
    GF: number;
    GU: number;
    GY: number;
    HK: number;
    HM: number;
    HN: number;
    HR: number;
    HT: number;
    HU: number;
    ID: number;
    IM: number;
    IN: number;
    IO: number;
    IE: number;
    IR: number;
    IQ: number;
    IS: number;
    IL: number;
    IT: number;
    JM: number;
    JE: number;
    JO: number;
    JP: number;
    KZ: number;
    KE: number;
    KG: number;
    KH: number;
    KI: number;
    KN: number;
    KR: number;
    XK: number;
    KW: number;
    LA: number;
    LB: number;
    LR: number;
    LY: number;
    LC: number;
    LI: number;
    LK: number;
    LS: number;
    LT: number;
    LU: number;
    LV: number;
    MO: number;
    MF: number;
    MA: number;
    MC: number;
    MD: number;
    MG: number;
    MV: number;
    MX: number;
    MH: number;
    MK: number;
    ML: number;
    MT: number;
    MM: number;
    ME: number;
    MN: number;
    MP: number;
    MZ: number;
    MR: number;
    MS: number;
    MQ: number;
    MU: number;
    MW: number;
    MY: number;
    YT: number;
    NA: number;
    NC: number;
    NE: number;
    NF: number;
    NG: number;
    NI: number;
    NU: number;
    NL: number;
    NO: number;
    NP: number;
    NR: number;
    NZ: number;
    OM: number;
    PK: number;
    PA: number;
    PN: number;
    PE: number;
    PH: number;
    PW: number;
    PG: number;
    PL: number;
    PR: number;
    KP: number;
    PT: number;
    PY: number;
    PS: number;
    PF: number;
    QA: number;
    RE: number;
    RO: number;
    RU: number;
    RW: number;
    SA: number;
    SD: number;
    SN: number;
    SG: number;
    GS: number;
    SJ: number;
    SB: number;
    SL: number;
    SV: number;
    SM: number;
    SO: number;
    PM: number;
    RS: number;
    SS: number;
    ST: number;
    SR: number;
    SK: number;
    SI: number;
    SE: number;
    SZ: number;
    SX: number;
    SC: number;
    SY: number;
    TC: number;
    TD: number;
    TG: number;
    TH: number;
    TJ: number;
    TK: number;
    TM: number;
    TL: number;
    TO: number;
    TT: number;
    TN: number;
    TR: number;
    TV: number;
    TW: number;
    TZ: number;
    UG: number;
    UA: number;
    UM: number;
    UY: number;
    US: number;
    UZ: number;
    VA: number;
    VC: number;
    VE: number;
    VG: number;
    VI: number;
    VN: number;
    VU: number;
    WF: number;
    WS: number;
    YE: number;
    ZA: number;
    ZM: number;
    ZW: number;
} | {
    AW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AX: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AD: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AQ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    AZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BJ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BD: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BQ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BB: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BV: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    BW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CC: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CD: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CV: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CX: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    CZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    DE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    DJ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    DM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    DK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    DO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    DZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    EC: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    EG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ER: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    EH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ES: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    EE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ET: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    FI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    FJ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    FK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    FR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    FO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    FM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GB: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GP: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GQ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GD: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    HK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    HM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    HN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    HR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    HT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    HU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ID: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IQ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    IT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    JM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    JE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    JO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    JP: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    XK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LB: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LC: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    LV: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MC: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MD: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MV: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MX: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ML: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ME: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MP: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MQ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    MY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    YT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NC: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NP: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    NZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    OM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    KP: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    QA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    RE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    RO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    RU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    RW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SD: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    GS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SJ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SB: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SV: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    PM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    RS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ST: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SX: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SC: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    SY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TC: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TD: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TH: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TJ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TK: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TL: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TO: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TT: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TR: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TV: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    TZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    UG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    UA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    UM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    UY: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    US: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    UZ: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    VA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    VC: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    VE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    VG: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    VI: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    VN: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    VU: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    WF: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    WS: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    YE: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ZA: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ZM: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    ZW: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
}>;
/**
 * ### Tagged list of string values
 *
 * Example:
 * ```
 *  const topLevelDomains = lsF('tld');   // [{tld: ['.ht'], cca2: 'HT'}, ...]
 * ```
 * @param {Mappable} property - mappable property
 * @return {string[]} - array of objects.
 */
export function lsF(property?: Mappable): Promise<({
    name: {
        common: string;
        official: string;
        native: {
            nld: {
                official: string;
                common: string;
            };
            pap: {
                official: string;
                common: string;
            };
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            prs: {
                official: string;
                common: string;
            };
            pus: {
                official: string;
                common: string;
            };
            tuk: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            swe: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            sqi: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            cat: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            grn: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            hye: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            smo: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            bar: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            aze: {
                official: string;
                common: string;
            };
            rus: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            run: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            deu: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nld: {
                official: string;
                common: string;
            };
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ben: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            bul: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            bos: {
                official: string;
                common: string;
            };
            hrv: {
                official: string;
                common: string;
            };
            srp: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            bel: {
                official: string;
                common: string;
            };
            rus: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            bjz: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            aym: {
                official: string;
                common: string;
            };
            grn: {
                official: string;
                common: string;
            };
            que: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            msa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            dzo: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            nor: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            tsn: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            sag: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            gsw: {
                official: string;
                common: string;
            };
            ita: {
                official: string;
                common: string;
            };
            roh: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            zho: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            kon: {
                official: string;
                common: string;
            };
            lin: {
                official: string;
                common: string;
            };
            lua: {
                official: string;
                common: string;
            };
            swa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            kon: {
                official: string;
                common: string;
            };
            lin: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            rar: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            zdj: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            nld: {
                official: string;
                common: string;
            };
            pap: {
                official: string;
                common: string;
            };
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ell: {
                official: string;
                common: string;
            };
            tur: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ces: {
                official: string;
                common: string;
            };
            slk: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            deu: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            dan: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            tir: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ber: {
                official: string;
                common: string;
            };
            mey: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            est: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            amh: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fin: {
                official: string;
                common: string;
            };
            swe: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fij: {
                official: string;
                common: string;
            };
            hif: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            dan: {
                official: string;
                common: string;
            };
            fao: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            kat: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nfr: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
            pov: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            por: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ell: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            kal: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            cha: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            zho: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            hrv: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            hat: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            hun: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ind: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            glv: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            hin: {
                official: string;
                common: string;
            };
            tam: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            gle: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fas: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            arc: {
                official: string;
                common: string;
            };
            ckb: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            isl: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            heb: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ita: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            jam: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nrf: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            jpn: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            kaz: {
                official: string;
                common: string;
            };
            rus: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            swa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            kir: {
                official: string;
                common: string;
            };
            rus: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            khm: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            gil: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            kor: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            sqi: {
                official: string;
                common: string;
            };
            srp: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            lao: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            sin: {
                official: string;
                common: string;
            };
            tam: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            sot: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            lit: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            deu: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            ltz: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            lav: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
            zho: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            ber: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ron: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            fra: {
                official: string;
                common: string;
            };
            mlg: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            div: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            mah: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            mkd: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            mlt: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            mya: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            cnr: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            mon: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            cal: {
                official: string;
                common: string;
            };
            cha: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            mfe: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            nya: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            msa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            afr: {
                official: string;
                common: string;
            };
            deu: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            her: {
                official: string;
                common: string;
            };
            hgm: {
                official: string;
                common: string;
            };
            kwn: {
                official: string;
                common: string;
            };
            loz: {
                official: string;
                common: string;
            };
            ndo: {
                official: string;
                common: string;
            };
            tsn: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            pih: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            niu: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            nld: {
                official: string;
                common: string;
            };
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            nno: {
                official: string;
                common: string;
            };
            nob: {
                official: string;
                common: string;
            };
            smi: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            nep: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            nau: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            mri: {
                official: string;
                common: string;
            };
            nzs: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            urd: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            aym: {
                official: string;
                common: string;
            };
            que: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fil: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            pau: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            hmo: {
                official: string;
                common: string;
            };
            tpi: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            pol: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            spa: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            rus: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            kin: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            zho: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            msa: {
                official: string;
                common: string;
            };
            tam: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ara: {
                official: string;
                common: string;
            };
            som: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            srp: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            slk: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            slv: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            ssw: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nld: {
                official: string;
                common: string;
            };
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            crs: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            tha: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            rus: {
                official: string;
                common: string;
            };
            tgk: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            smo: {
                official: string;
                common: string;
            };
            tkl: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            rus: {
                official: string;
                common: string;
            };
            tuk: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            por: {
                official: string;
                common: string;
            };
            tet: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            ton: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            tur: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            eng: {
                official: string;
                common: string;
            };
            tvl: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ukr: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            rus: {
                official: string;
                common: string;
            };
            uzb: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            ita: {
                official: string;
                common: string;
            };
            lat: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            vie: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            eng?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            bis: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            fra: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            tsn?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            sot?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            nbl?: undefined;
            nso?: undefined;
            tso?: undefined;
            ven?: undefined;
            xho?: undefined;
            zul?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            afr: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            nbl: {
                official: string;
                common: string;
            };
            nso: {
                official: string;
                common: string;
            };
            sot: {
                official: string;
                common: string;
            };
            ssw: {
                official: string;
                common: string;
            };
            tsn: {
                official: string;
                common: string;
            };
            tso: {
                official: string;
                common: string;
            };
            ven: {
                official: string;
                common: string;
            };
            xho: {
                official: string;
                common: string;
            };
            zul: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            nya?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            bwg?: undefined;
            kck?: undefined;
            khi?: undefined;
            ndc?: undefined;
            nde?: undefined;
            sna?: undefined;
            toi?: undefined;
            zib?: undefined;
        };
    };
    cca2: string;
} | {
    name: {
        common: string;
        official: string;
        native: {
            bwg: {
                official: string;
                common: string;
            };
            eng: {
                official: string;
                common: string;
            };
            kck: {
                official: string;
                common: string;
            };
            khi: {
                official: string;
                common: string;
            };
            ndc: {
                official: string;
                common: string;
            };
            nde: {
                official: string;
                common: string;
            };
            nya: {
                official: string;
                common: string;
            };
            sna: {
                official: string;
                common: string;
            };
            sot: {
                official: string;
                common: string;
            };
            toi: {
                official: string;
                common: string;
            };
            tsn: {
                official: string;
                common: string;
            };
            tso: {
                official: string;
                common: string;
            };
            ven: {
                official: string;
                common: string;
            };
            xho: {
                official: string;
                common: string;
            };
            zib: {
                official: string;
                common: string;
            };
            nld?: undefined;
            pap?: undefined;
            prs?: undefined;
            pus?: undefined;
            tuk?: undefined;
            por?: undefined;
            swe?: undefined;
            sqi?: undefined;
            cat?: undefined;
            ara?: undefined;
            grn?: undefined;
            spa?: undefined;
            hye?: undefined;
            smo?: undefined;
            fra?: undefined;
            bar?: undefined;
            aze?: undefined;
            rus?: undefined;
            run?: undefined;
            deu?: undefined;
            ben?: undefined;
            bul?: undefined;
            bos?: undefined;
            hrv?: undefined;
            srp?: undefined;
            bel?: undefined;
            bjz?: undefined;
            aym?: undefined;
            que?: undefined;
            msa?: undefined;
            dzo?: undefined;
            nor?: undefined;
            sag?: undefined;
            gsw?: undefined;
            ita?: undefined;
            roh?: undefined;
            zho?: undefined;
            kon?: undefined;
            lin?: undefined;
            lua?: undefined;
            swa?: undefined;
            rar?: undefined;
            zdj?: undefined;
            ell?: undefined;
            tur?: undefined;
            ces?: undefined;
            slk?: undefined;
            dan?: undefined;
            tir?: undefined;
            ber?: undefined;
            mey?: undefined;
            est?: undefined;
            amh?: undefined;
            fin?: undefined;
            fij?: undefined;
            hif?: undefined;
            fao?: undefined;
            kat?: undefined;
            nfr?: undefined;
            pov?: undefined;
            kal?: undefined;
            cha?: undefined;
            hat?: undefined;
            hun?: undefined;
            ind?: undefined;
            glv?: undefined;
            hin?: undefined;
            tam?: undefined;
            gle?: undefined;
            fas?: undefined;
            arc?: undefined;
            ckb?: undefined;
            isl?: undefined;
            heb?: undefined;
            jam?: undefined;
            nrf?: undefined;
            jpn?: undefined;
            kaz?: undefined;
            kir?: undefined;
            khm?: undefined;
            gil?: undefined;
            kor?: undefined;
            lao?: undefined;
            sin?: undefined;
            lit?: undefined;
            ltz?: undefined;
            lav?: undefined;
            ron?: undefined;
            mlg?: undefined;
            div?: undefined;
            mah?: undefined;
            mkd?: undefined;
            mlt?: undefined;
            mya?: undefined;
            cnr?: undefined;
            mon?: undefined;
            cal?: undefined;
            mfe?: undefined;
            afr?: undefined;
            her?: undefined;
            hgm?: undefined;
            kwn?: undefined;
            loz?: undefined;
            ndo?: undefined;
            pih?: undefined;
            niu?: undefined;
            nno?: undefined;
            nob?: undefined;
            smi?: undefined;
            nep?: undefined;
            nau?: undefined;
            mri?: undefined;
            nzs?: undefined;
            urd?: undefined;
            fil?: undefined;
            pau?: undefined;
            hmo?: undefined;
            tpi?: undefined;
            pol?: undefined;
            kin?: undefined;
            som?: undefined;
            slv?: undefined;
            ssw?: undefined;
            crs?: undefined;
            tha?: undefined;
            tgk?: undefined;
            tkl?: undefined;
            tet?: undefined;
            ton?: undefined;
            tvl?: undefined;
            ukr?: undefined;
            uzb?: undefined;
            lat?: undefined;
            vie?: undefined;
            bis?: undefined;
            nbl?: undefined;
            nso?: undefined;
            zul?: undefined;
        };
    };
    cca2: string;
})[] | {
    tld: string[];
    cca2: string;
}[] | {
    ccn3: string;
    cca2: string;
}[] | {
    cca3: string;
    cca2: string;
}[] | {
    cioc: string;
    cca2: string;
}[] | {
    independent: boolean;
    cca2: string;
}[] | {
    idd: {
        root: string;
        suffixes: string[];
    };
    cca2: string;
}[] | {
    countryStatus: string;
    cca2: string;
}[] | ({
    currencies: {
        AWG: {
            name: string;
            symbol: string;
        };
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        AFN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        AOA: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        XCD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        EUR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ALL: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        AED: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ARS: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        AMD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        USD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: any[];
    cca2: string;
} | {
    currencies: {
        AUD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        AZN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BIF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        XOF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BDT: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BGN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BHD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BSD: {
            name: string;
            symbol: string;
        };
        USD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BAM: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GBP: {
            name: string;
            symbol: string;
        };
        SHP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BYN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BZD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BMD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BOB: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BRL: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BBD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BND: {
            name: string;
            symbol: string;
        };
        SGD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BTN: {
            name: string;
            symbol: string;
        };
        INR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BWP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        XAF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CAD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CHF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CLP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CNY: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CDF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CKD: {
            name: string;
            symbol: string;
        };
        NZD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        COP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KMF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CVE: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CRC: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CUC: {
            name: string;
            symbol: string;
        };
        CUP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ANG: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KYD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        CZK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        DJF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        DKK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        DOP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        DZD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        EGP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ERN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        DZD: {
            name: string;
            symbol: string;
        };
        MAD: {
            name: string;
            symbol: string;
        };
        MRU: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ETB: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        FJD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        FKP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        DKK: {
            name: string;
            symbol: string;
        };
        FOK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GBP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GEL: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GBP: {
            name: string;
            symbol: string;
        };
        GGP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GHS: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GIP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GNF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GMD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GTQ: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GYD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        HKD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        HNL: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        HRK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        HTG: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        HUF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        IDR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GBP: {
            name: string;
            symbol: string;
        };
        IMP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        INR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        IRR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        IQD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ISK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ILS: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        JMD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        GBP: {
            name: string;
            symbol: string;
        };
        JEP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        JOD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        JPY: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KZT: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KES: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KGS: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KHR: {
            name: string;
            symbol: string;
        };
        USD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        AUD: {
            name: string;
            symbol: string;
        };
        KID: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KRW: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KWD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        LAK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        LBP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        LRD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        LYD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        LKR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        LSL: {
            name: string;
            symbol: string;
        };
        ZAR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MOP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MAD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MDL: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MGA: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MVR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MXN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MKD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MMK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MNT: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MZN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MRU: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MUR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MWK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        MYR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        NAD: {
            name: string;
            symbol: string;
        };
        ZAR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        XPF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        NGN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        NIO: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        NZD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        NOK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        NPR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        OMR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        PKR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        PAB: {
            name: string;
            symbol: string;
        };
        USD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        PEN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        PHP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        PGK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        PLN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        KPW: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        PYG: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        EGP: {
            name: string;
            symbol: string;
        };
        ILS: {
            name: string;
            symbol: string;
        };
        JOD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        QAR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        RON: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        RUB: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        RWF: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SAR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SDG: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SGD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SHP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SBD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SLL: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SOS: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        RSD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SSP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        STN: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SRD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SEK: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SZL: {
            name: string;
            symbol: string;
        };
        ZAR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SCR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        SYP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        THB: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        TJS: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        TMT: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        TOP: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        TTD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        TND: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        TRY: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        AUD: {
            name: string;
            symbol: string;
        };
        TVD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        TWD: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        TZS: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        UGX: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        UAH: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        UYU: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        UZS: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        VES: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        VND: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        VUV: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        WST: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        YER: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ZAR: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        ZMW: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        EUR?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        USD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        GBP?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        INR?: undefined;
        BWP?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CNY?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        JPY?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        ZAR?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZWB?: undefined;
    };
    cca2: string;
} | {
    currencies: {
        BWP: {
            name: string;
            symbol: string;
        };
        CNY: {
            name: string;
            symbol: string;
        };
        EUR: {
            name: string;
            symbol: string;
        };
        GBP: {
            name: string;
            symbol: string;
        };
        INR: {
            name: string;
            symbol: string;
        };
        JPY: {
            name: string;
            symbol: string;
        };
        USD: {
            name: string;
            symbol: string;
        };
        ZAR: {
            name: string;
            symbol: string;
        };
        ZWB: {
            name: string;
            symbol: string;
        };
        AWG?: undefined;
        AFN?: undefined;
        AOA?: undefined;
        XCD?: undefined;
        ALL?: undefined;
        AED?: undefined;
        ARS?: undefined;
        AMD?: undefined;
        AUD?: undefined;
        AZN?: undefined;
        BIF?: undefined;
        XOF?: undefined;
        BDT?: undefined;
        BGN?: undefined;
        BHD?: undefined;
        BSD?: undefined;
        BAM?: undefined;
        SHP?: undefined;
        BYN?: undefined;
        BZD?: undefined;
        BMD?: undefined;
        BOB?: undefined;
        BRL?: undefined;
        BBD?: undefined;
        BND?: undefined;
        SGD?: undefined;
        BTN?: undefined;
        XAF?: undefined;
        CAD?: undefined;
        CHF?: undefined;
        CLP?: undefined;
        CDF?: undefined;
        CKD?: undefined;
        NZD?: undefined;
        COP?: undefined;
        KMF?: undefined;
        CVE?: undefined;
        CRC?: undefined;
        CUC?: undefined;
        CUP?: undefined;
        ANG?: undefined;
        KYD?: undefined;
        CZK?: undefined;
        DJF?: undefined;
        DKK?: undefined;
        DOP?: undefined;
        DZD?: undefined;
        EGP?: undefined;
        ERN?: undefined;
        MAD?: undefined;
        MRU?: undefined;
        ETB?: undefined;
        FJD?: undefined;
        FKP?: undefined;
        FOK?: undefined;
        GEL?: undefined;
        GGP?: undefined;
        GHS?: undefined;
        GIP?: undefined;
        GNF?: undefined;
        GMD?: undefined;
        GTQ?: undefined;
        GYD?: undefined;
        HKD?: undefined;
        HNL?: undefined;
        HRK?: undefined;
        HTG?: undefined;
        HUF?: undefined;
        IDR?: undefined;
        IMP?: undefined;
        IRR?: undefined;
        IQD?: undefined;
        ISK?: undefined;
        ILS?: undefined;
        JMD?: undefined;
        JEP?: undefined;
        JOD?: undefined;
        KZT?: undefined;
        KES?: undefined;
        KGS?: undefined;
        KHR?: undefined;
        KID?: undefined;
        KRW?: undefined;
        KWD?: undefined;
        LAK?: undefined;
        LBP?: undefined;
        LRD?: undefined;
        LYD?: undefined;
        LKR?: undefined;
        LSL?: undefined;
        MOP?: undefined;
        MDL?: undefined;
        MGA?: undefined;
        MVR?: undefined;
        MXN?: undefined;
        MKD?: undefined;
        MMK?: undefined;
        MNT?: undefined;
        MZN?: undefined;
        MUR?: undefined;
        MWK?: undefined;
        MYR?: undefined;
        NAD?: undefined;
        XPF?: undefined;
        NGN?: undefined;
        NIO?: undefined;
        NOK?: undefined;
        NPR?: undefined;
        OMR?: undefined;
        PKR?: undefined;
        PAB?: undefined;
        PEN?: undefined;
        PHP?: undefined;
        PGK?: undefined;
        PLN?: undefined;
        KPW?: undefined;
        PYG?: undefined;
        QAR?: undefined;
        RON?: undefined;
        RUB?: undefined;
        RWF?: undefined;
        SAR?: undefined;
        SDG?: undefined;
        SBD?: undefined;
        SLL?: undefined;
        SOS?: undefined;
        RSD?: undefined;
        SSP?: undefined;
        STN?: undefined;
        SRD?: undefined;
        SEK?: undefined;
        SZL?: undefined;
        SCR?: undefined;
        SYP?: undefined;
        THB?: undefined;
        TJS?: undefined;
        TMT?: undefined;
        TOP?: undefined;
        TTD?: undefined;
        TND?: undefined;
        TRY?: undefined;
        TVD?: undefined;
        TWD?: undefined;
        TZS?: undefined;
        UGX?: undefined;
        UAH?: undefined;
        UYU?: undefined;
        UZS?: undefined;
        VES?: undefined;
        VND?: undefined;
        VUV?: undefined;
        WST?: undefined;
        YER?: undefined;
        ZMW?: undefined;
    };
    cca2: string;
})[] | {
    region: string;
    cca2: string;
}[] | {
    subRegion: string;
    cca2: string;
}[] | {
    capitals: string[];
    cca2: string;
}[] | ({
    languages: {
        nld: string;
        pap: string;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        prs: string;
        pus: string;
        tuk: string;
        nld?: undefined;
        pap?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        por: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        swe: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        sqi: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        cat: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        grn: string;
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        hye: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        smo: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        bar: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        aze: string;
        rus: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        run: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        deu: string;
        fra: string;
        nld: string;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ben: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        bul: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        bos: string;
        hrv: string;
        srp: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        bel: string;
        rus: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        bjz: string;
        eng: string;
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        aym: string;
        grn: string;
        que: string;
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        nld: string;
        pap: string;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        msa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        dzo: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        nor: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        tsn: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        sag: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        fra: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        gsw: string;
        ita: string;
        roh: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        zho: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        kon: string;
        lin: string;
        lua: string;
        swa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        kon: string;
        lin: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        rar: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        fra: string;
        zdj: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ell: string;
        tur: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ces: string;
        slk: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        deu: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        fra: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        dan: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        eng: string;
        tir: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ber: string;
        mey: string;
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        est: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        amh: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fin: string;
        swe: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        fij: string;
        hif: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        dan: string;
        fao: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        kat: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        fra: string;
        nfr: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        por: string;
        pov: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        por: string;
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ell: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        kal: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        cha: string;
        eng: string;
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        zho: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        hrv: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        hat: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        hun: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ind: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        glv: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        hin: string;
        tam: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        gle: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fas: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        arc: string;
        ckb: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        isl: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        heb: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ita: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        jam: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        fra: string;
        nrf: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        jpn: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        kaz: string;
        rus: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        swa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        kir: string;
        rus: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        khm: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        gil: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        kor: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        sqi: string;
        srp: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        lao: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        sin: string;
        tam: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        sot: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        lit: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        deu: string;
        fra: string;
        ltz: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        lav: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        por: string;
        zho: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        ber: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ron: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        fra: string;
        mlg: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        div: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        mah: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        mkd: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        mlt: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        mya: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        cnr: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        mon: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        cal: string;
        cha: string;
        eng: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        fra: string;
        mfe: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        nya: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        msa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        afr: string;
        deu: string;
        eng: string;
        her: string;
        hgm: string;
        kwn: string;
        loz: string;
        ndo: string;
        tsn: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        pih: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        niu: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        nld: string;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        nno: string;
        nob: string;
        smi: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        nep: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        nau: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        mri: string;
        nzs: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        urd: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        aym: string;
        que: string;
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        fil: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        pau: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        hmo: string;
        tpi: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        pol: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        spa: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        rus: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        fra: string;
        kin: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        eng: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        zho: string;
        eng: string;
        msa: string;
        tam: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ara: string;
        som: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        srp: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        slk: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        slv: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        ssw: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        fra: string;
        nld: string;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        crs: string;
        eng: string;
        fra: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        tha: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        rus: string;
        tgk: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        smo: string;
        tkl: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        rus: string;
        tuk: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        por: string;
        tet: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        ton: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        tur: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        eng: string;
        tvl: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ukr: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        rus: string;
        uzb: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        ita: string;
        lat: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        vie: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        eng?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        bis: string;
        eng: string;
        fra: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        tsn?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        sot?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        nbl?: undefined;
        nso?: undefined;
        tso?: undefined;
        ven?: undefined;
        xho?: undefined;
        zul?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        afr: string;
        eng: string;
        nbl: string;
        nso: string;
        sot: string;
        ssw: string;
        tsn: string;
        tso: string;
        ven: string;
        xho: string;
        zul: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        nya?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        bwg?: undefined;
        kck?: undefined;
        khi?: undefined;
        ndc?: undefined;
        nde?: undefined;
        sna?: undefined;
        toi?: undefined;
        zib?: undefined;
    };
    cca2: string;
} | {
    languages: {
        bwg: string;
        eng: string;
        kck: string;
        khi: string;
        ndc: string;
        nde: string;
        nya: string;
        sna: string;
        sot: string;
        toi: string;
        tsn: string;
        tso: string;
        ven: string;
        xho: string;
        zib: string;
        nld?: undefined;
        pap?: undefined;
        prs?: undefined;
        pus?: undefined;
        tuk?: undefined;
        por?: undefined;
        swe?: undefined;
        sqi?: undefined;
        cat?: undefined;
        ara?: undefined;
        grn?: undefined;
        spa?: undefined;
        hye?: undefined;
        smo?: undefined;
        fra?: undefined;
        bar?: undefined;
        aze?: undefined;
        rus?: undefined;
        run?: undefined;
        deu?: undefined;
        ben?: undefined;
        bul?: undefined;
        bos?: undefined;
        hrv?: undefined;
        srp?: undefined;
        bel?: undefined;
        bjz?: undefined;
        aym?: undefined;
        que?: undefined;
        msa?: undefined;
        dzo?: undefined;
        nor?: undefined;
        sag?: undefined;
        gsw?: undefined;
        ita?: undefined;
        roh?: undefined;
        zho?: undefined;
        kon?: undefined;
        lin?: undefined;
        lua?: undefined;
        swa?: undefined;
        rar?: undefined;
        zdj?: undefined;
        ell?: undefined;
        tur?: undefined;
        ces?: undefined;
        slk?: undefined;
        dan?: undefined;
        tir?: undefined;
        ber?: undefined;
        mey?: undefined;
        est?: undefined;
        amh?: undefined;
        fin?: undefined;
        fij?: undefined;
        hif?: undefined;
        fao?: undefined;
        kat?: undefined;
        nfr?: undefined;
        pov?: undefined;
        kal?: undefined;
        cha?: undefined;
        hat?: undefined;
        hun?: undefined;
        ind?: undefined;
        glv?: undefined;
        hin?: undefined;
        tam?: undefined;
        gle?: undefined;
        fas?: undefined;
        arc?: undefined;
        ckb?: undefined;
        isl?: undefined;
        heb?: undefined;
        jam?: undefined;
        nrf?: undefined;
        jpn?: undefined;
        kaz?: undefined;
        kir?: undefined;
        khm?: undefined;
        gil?: undefined;
        kor?: undefined;
        lao?: undefined;
        sin?: undefined;
        lit?: undefined;
        ltz?: undefined;
        lav?: undefined;
        ron?: undefined;
        mlg?: undefined;
        div?: undefined;
        mah?: undefined;
        mkd?: undefined;
        mlt?: undefined;
        mya?: undefined;
        cnr?: undefined;
        mon?: undefined;
        cal?: undefined;
        mfe?: undefined;
        afr?: undefined;
        her?: undefined;
        hgm?: undefined;
        kwn?: undefined;
        loz?: undefined;
        ndo?: undefined;
        pih?: undefined;
        niu?: undefined;
        nno?: undefined;
        nob?: undefined;
        smi?: undefined;
        nep?: undefined;
        nau?: undefined;
        mri?: undefined;
        nzs?: undefined;
        urd?: undefined;
        fil?: undefined;
        pau?: undefined;
        hmo?: undefined;
        tpi?: undefined;
        pol?: undefined;
        kin?: undefined;
        som?: undefined;
        slv?: undefined;
        ssw?: undefined;
        crs?: undefined;
        tha?: undefined;
        tgk?: undefined;
        tkl?: undefined;
        tet?: undefined;
        ton?: undefined;
        tvl?: undefined;
        ukr?: undefined;
        uzb?: undefined;
        lat?: undefined;
        vie?: undefined;
        bis?: undefined;
        nbl?: undefined;
        nso?: undefined;
        zul?: undefined;
    };
    cca2: string;
})[] | ({
    translations: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
        cym?: undefined;
    };
    cca2: string;
} | {
    translations: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
    };
    cca2: string;
} | {
    translations: {
        ces: {
            official: string;
            common: string;
        };
        cym: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho?: undefined;
    };
    cca2: string;
} | {
    translations: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
        hrv?: undefined;
        jpn?: undefined;
        cym?: undefined;
    };
    cca2: string;
} | {
    translations: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho?: undefined;
        cym?: undefined;
    };
    cca2: string;
} | {
    translations: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        jpn: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
        per?: undefined;
        cym?: undefined;
    };
    cca2: string;
} | {
    translations: {
        ces: {
            official: string;
            common: string;
        };
        deu: {
            official: string;
            common: string;
        };
        est: {
            official: string;
            common: string;
        };
        fin: {
            official: string;
            common: string;
        };
        fra: {
            official: string;
            common: string;
        };
        hrv: {
            official: string;
            common: string;
        };
        hun: {
            official: string;
            common: string;
        };
        ita: {
            official: string;
            common: string;
        };
        kor: {
            official: string;
            common: string;
        };
        nld: {
            official: string;
            common: string;
        };
        per: {
            official: string;
            common: string;
        };
        pol: {
            official: string;
            common: string;
        };
        por: {
            official: string;
            common: string;
        };
        rus: {
            official: string;
            common: string;
        };
        slk: {
            official: string;
            common: string;
        };
        spa: {
            official: string;
            common: string;
        };
        swe: {
            official: string;
            common: string;
        };
        urd: {
            official: string;
            common: string;
        };
        zho: {
            official: string;
            common: string;
        };
        jpn?: undefined;
        cym?: undefined;
    };
    cca2: string;
})[] | {
    latLng: number[];
    cca2: string;
}[] | {
    landlocked: boolean;
    cca2: string;
}[] | {
    borders: string[];
    cca2: string;
}[] | {
    area: number;
    cca2: string;
}[] | {
    demonyms: {
        eng: {
            f: string;
            m: string;
        };
        fra: {
            f: string;
            m: string;
        };
    };
    cca2: string;
}[] | {
    flag: string;
    cca2: string;
}[] | {
    callingCodes: string[];
    cca2: string;
}[]>;
declare function _all(): Promise<Country[]>;
/**
 * ### Get a list of all the countries
 * @return {Country[]} All the countries
 */
export const all: typeof _all;
declare function _find(property: string, value: string): Promise<Country | undefined>;
/**
 * ### Find Countries
 *
 * example:
 * ```javascript
 * const haiti = find("name.common", "Haiti") ;
 * const {capital} = find("name.common", "Canada"); // ["Ottawa"]
 * ```
 * @param {string} property Searchable property
 * @param {string} value Property value
 * @return {Country|undefined}
 */
export const find: typeof _find;
declare function _get(property: string, value: string): Promise<Array<Country>>;
/**
 * ### Search for Countries
 *
 * example:
 * ```javascript
 * const tropicals = get("region", "Caribbean") ;
 * ```
 * @param {string} property Searchable property
 * @param {string} value Property value
 * @return {Country[]}
 */
export const get: typeof _get;

//# sourceMappingURL=types.d.ts.map
