/** * Checks if the value `null` or `undefined`. * * @param value Value to check for `null` and `undefined`. * @returns Returns `true` if `value` is `null` or `undefined`, else `false`. */ export declare const isNullable: (value: T) => value is null | undefined;