import { Nullish } from'./types.mjs';
/**
* Checks whether or not a value is `null` or `undefined`
* @param value The value to check
*/declarefunctionisNullOrUndefined(value: unknown): value is Nullish;
export { isNullOrUndefined, isNullOrUndefined as isNullish };