/** * Checks if value is the language type of Object. * (e.g. arrays, functions, objects, regexes, new Number(0), and new String('')) * Drop-in replacement for lodash/isObject. */ export default function isObject(value: any): value is object;