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