//#region src/is/isPlainObject.d.ts /** * Checks if value is a plain object, that is, an object created by the Object constructor * or one with a [[Prototype]] of null. * * @param value - The value to check * @returns Returns true if value is a plain object, else false * * @example * isPlainObject({}) // => true * isPlainObject({ a: 1 }) // => true * isPlainObject(Object.create(null)) // => true * isPlainObject([]) // => false * isPlainObject(() => {}) // => false * isPlainObject(new Date()) // => false */ declare function isPlainObject(value: unknown): value is Record; //#endregion export { isPlainObject }; //# sourceMappingURL=isPlainObject.d.mts.map