/**
 * Checks if the value is created by the `Object` constructor.
 */
declare function isPlainObject(value: any): value is Object;
export default isPlainObject;
