/** * checkStr 正则方法 * @param {String} str 要检验的数据 * @param {String} type 类型 phone | card | email | number | english | chinese | lower | upper * @returns {Boolean} true or false */ declare const checkStr: (str: string, type: string) => boolean; export default checkStr;