/** * Returns true if the value is a true object (i.e. not a primitive type). */ export declare function isObject(value: unknown): value is object; /** * Returns true if the value is a plain object with no own enumerable properties. */ export declare function isEmptyObject(value: unknown): boolean;