Version: 1.0.01.0.11.0.21.2.0
/**
* Returns whether the value is a valid `RegExp` object with the `[[RegExpMatcher]]` internal slot.
*/
declare function isRegex(value: any): value is RegExp;
export = isRegex;