//#region src/is-non-null-object.d.ts /** * Check if the provided value's type is `Object` and is not `null` or `undefined` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `Object` and is not `null` or `undefined` */ declare const isNonNullObject: (value: any) => value is NonNullable; //#endregion export { isNonNullObject }; //# sourceMappingURL=is-non-null-object.d.mts.map