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