//#region src/is-regexp.d.ts /** * Checks if `value` is classified as a `isRegExp` object. * * @example * ```typescript * isRegExp(new Date) * // => true * * isRegExp('Mon April 23 2012') * // => false * ``` * * @param value - The value to check. * @returns Returns `true` if `obj` is a isRegExp object, else `false`. */ declare const isRegExp: (value: unknown) => value is RegExp; //#endregion export { isRegExp }; //# sourceMappingURL=is-regexp.d.mts.map