import Schema, { Rules, ValidateCallback, ValidateOption, Values } from "./async-validator"; declare function validator(rules: Rules): Schema; declare function validate(rules: Rules, source_: Values, o?: ValidateOption | any, oc?: ValidateCallback | any): Promise; declare function validateId(content: any): boolean; declare function validatePhone(content: any): boolean; declare function isChinese(content: string): boolean; declare function isNumber(content: string): boolean; declare function isFloat(content: string): boolean; declare function isPhoneNumber(content: any): boolean; declare const _default: { validateId: typeof validateId; validatePhone: typeof validatePhone; validator: typeof validator; validate: typeof validate; isChinese: typeof isChinese; isNumber: typeof isNumber; isFloat: typeof isFloat; isPhoneNumber: typeof isPhoneNumber; }; export default _default;