/**
* Determines whether the given value is an object or null.
* @param obj The value to check
* @returns true if the value is an object or null
* @example isObject(null) // true
*/exportdeclarefunctionisObject(obj: any): obj is object | null;
//# sourceMappingURL=shared.d.ts.map