import type { Validator } from '../Validator.js'; export type RegexValidatorOptions = { regex: RegExp; message: (params: { value: string; }) => string; }; export declare function regexValidator(options: RegexValidatorOptions): Validator;