type ISO3166CountryCode = {
    numeric: number;
    name: string;
    alpha2: string;
    alpha3: string;
};
declare const ISO_3601_1: ISO3166CountryCode[];

export { type ISO3166CountryCode, ISO_3601_1 };
