//#region src/is-empty-object.d.ts /** * Check if the provided value's type is `{}` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `{}` */ declare const isEmptyObject: (value: unknown) => value is {}; /** * Check if the provided value's type is `null` or `undefined` or `{}` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `null` or `undefined` or `{}` */ declare const isEmptyOrEmptyObject: (value: unknown) => boolean; //#endregion export { isEmptyObject, isEmptyOrEmptyObject }; //# sourceMappingURL=is-empty-object.d.cts.map