export declare enum LangKey {
    VerifyPhone = "VerifyPhone",
    VerifyEmail = "VerifyEmail",
    VerifyCode = "VerifyCode",
    VerifyHttps = "VerifyHttps",
    VerifyIp = "VerifyIp",
    VerifyNumber = "VerifyNumber",
    VerifyEnglish = "VerifyEnglish",
    VerifyChinese = "VerifyChinese",
    VerifyLength = "VerifyLength",
    VerifyEmpty = "VerifyEmpty"
}
declare const langPackages: {
    readonly en: {
        readonly VerifyPhone: "Phone format is incorrect";
        readonly VerifyEmail: "Email address format is incorrect";
        readonly VerifyCode: "ID card format is incorrect";
        readonly VerifyHttps: "Website format is incorrect";
        readonly VerifyIp: "IP address format is incorrect";
        readonly VerifyNumber: "Only numbers can be entered";
        readonly VerifyEnglish: "Only English characters can be entered";
        readonly VerifyChinese: "Only Chinese characters can be entered";
        readonly VerifyLength: "Character length limit is ";
        readonly VerifyEmpty: "Can't be empty";
    };
    readonly 'zh-cn': {
        readonly VerifyPhone: "手机号格式不正确";
        readonly VerifyEmail: "邮箱地址格式不正确";
        readonly VerifyCode: "身份证格式不正确";
        readonly VerifyHttps: "网址格式不正确";
        readonly VerifyIp: "IP地址格式不正确";
        readonly VerifyNumber: "只能输入数字";
        readonly VerifyEnglish: "只能输入英文字符";
        readonly VerifyChinese: "只能输入中文字符";
        readonly VerifyLength: "字符长度限制为 ";
        readonly VerifyEmpty: "不能为空";
    };
};
export default langPackages;
