import type { CountryCode } from '../types'; /** * 预设的国家码列表(24个常见国家) * * 包含: * - 亚洲:中国、香港、澳门、台湾、日本、韩国、新加坡、马来西亚、泰国、印度 * - 欧洲:英国、法国、德国、意大利、西班牙、俄罗斯 * - 美洲:美国、加拿大、墨西哥、巴西 * - 大洋洲:澳大利亚、新西兰 * - 中东:阿联酋、沙特阿拉伯 */ export declare const PRESET_COUNTRY_CODES: CountryCode[]; /** * 默认国家码 */ export declare const DEFAULT_COUNTRY_CODE = "+86"; /** * 常用国家码(可作为默认的 commonCountryCodes) */ export declare const COMMON_COUNTRY_CODES: string[];