/**
 * 校验
 * @example
 * ```ts
 * import { useValidator } from 'mine-h5-ui'
 *
 * const { phone, password, email, idCard, imgs, thousand, thousandFloat } = useValidator()
 * console.log(phone.test('')) // 输出: false
 * ```
 */
export declare const useValidator: () => {
    phone: RegExp;
    password: RegExp;
    email: RegExp;
    idCard: RegExp;
    imgs: RegExp;
    thousand: RegExp;
    thousandFloat: RegExp;
};
