/**
 * 判断是否RegExp对象
 *
 * @param {object} obj 对象
 * @return {boolean}
 */
declare const isRegExp: (obj: any) => boolean;
export default isRegExp;
