declare const countryTwoCodeList: readonly string[]; /** * iso-3166-1 alpha3 country code * * @TJS-type string */ export declare type ICountryTwoCode = typeof countryTwoCodeList[number]; export declare const isICountryTwoCode: (d: any) => d is string; export {};