declare const countryNameList: readonly string[]; /** * @TJS-type string */ export declare type ICountryName = typeof countryNameList[number]; export declare const isICountryName: (d: any) => d is string; export {};