import { Nullish } from '@flowr/types'; /** * Checks whether or not a value is `null`, `undefined` or `''`, `[]` * @param value The value to check */ declare function isNullOrUndefinedOrEmpty(value: unknown): value is Nullish | ''; export { isNullOrUndefinedOrEmpty };