/** * Checks if the given value is an object. * * @param {unknown} thing - The value to check. * @returns {boolean} - Returns `true` if the value is an object and not `null`, otherwise `false`. */ export declare const isObject: (thing: unknown) => boolean;