/** * 默认国家数据 */ declare const CountryData: { name: string; cities: { code: string; en: string; cn: string; }[]; }[]; export default CountryData;