/** * to check being undefined or null * @param value */ export declare function isNullOrUndefined(value: unknown): value is undefined | null;