import type { FormItemRule } from 'element-plus';
export type TValidator = FormItemRule['validator'];
/**
 *  邮箱验证
 * @param {*} rule
 * @param {*} value
 * @param {Function} callback
 */
export declare const emailValidator: TValidator;
/**
 * 身份证号校验
 * @param {*} rule
 * @param {*} value
 * @param {Function} callback
 */
export declare const identityCardValidator: TValidator;
/**
 * 手机号校验
 * @param {*} rule
 * @param {*} value
 * @param {Function} callback
 */
export declare const mobilePhoneValidator: TValidator;
/**
 * sql语句简单校验校验
 * @param {*} rule
 * @param {*} value
 * @param {Function} callback
 */
export declare const sqlSimpleValidator: TValidator;
