/** * Checks if a value is a plain object (i.e., an object created by the Object constructor). * @param obj The object to check * @returns True if the value is a plain object, false otherwise */ export declare function isPlainObject(obj: unknown): boolean;