import { ValidationRule, ErrorMessages } from '../types'; /** Check that the value match the specified pattern */ export declare function doMatchPatternFn(pattern: RegExp, errorMessages?: ErrorMessages): ValidationRule;