/** * 检查 `value` 是否是 `object` 类型,不包含 `null` 类型 * * @deprecated since version 1.1.1 * * @example * ```ts * isPlainObject({}) * // => true * isPlainObject(null) * // => false * isPlainObject(new Object()) * // => true * ``` */ export declare function isPlainObject(value: T): value is T extends Record ? T : never;