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