declare const countryThreeCodeList: readonly string[]; /** * iso-3166-1 alpha2 country code * * @TJS-type string */ export declare type ICountryThreeCode = typeof countryThreeCodeList[number]; export declare const isICountryThreeCode: (d: any) => d is string; export {};