import { Any, AnyObject, Options } from "../../../types";
/**
 * Applies a regular expression (regex) to a string and returns a boolean that indicates if a match is found or not.
 */
export declare const $regexMatch: (obj: AnyObject, expr: Any, options: Options) => Any;
