/** * Determine if the value is a plain object. * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. */ declare const isPlainObject: (value: any) => boolean; export default isPlainObject;