/** * Checks if value is a plain object, that is, an object created by the * Object constructor or one with a [[Prototype]] of null. * Drop-in replacement for lodash/isPlainObject. */ export default function isPlainObject(value: any): value is Record;