/**
 * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`,
 * `SyntaxError`, `TypeError`, or `URIError` object.
 *
 * @since 5.6.0
 * @category Lang
 * @param value The value to check.
 * @returns Returns `true` if `value` is an error object, else `false`.
 * @example
 *
 * ```js
 * isError(new Error)
 * // => true
 *
 * isError(Error)
 * // => false
 * ```
 */
export declare function isError(value: any): value is Error;
export default isError;
