import type { BuildInValidatorInitialFunc } from "../types"; /** * 应用了 {@link allowCharsOrCustomize} 的表单项的值只能包含指定的字符集或自定义字符集中的字符. * 内置字符集: * * zh: 中文字符 * * en: 英文字符 * * number: 数字 * * @param buildIn 内置字符集组成的数组 * @param custom 自定义字符集 * @param message 校验失败时的提示信息 */ export declare function allowCharsOrCustomize(buildIn: Array<"zh" | "en" | "number">, custom?: string, message?: string): BuildInValidatorInitialFunc; /** * 应用了 {@link allowCharsOrCustomize} 的表单项的值只能包含指定的字符集中的字符. * 内置字符集同 {@link allowCharsOrCustomize}. * @param buildIn * @param message */ export declare function allowChars(buildIn: Array<"zh" | "en" | "number">, message?: string): BuildInValidatorInitialFunc;