/** * Returns true if the value is null or undefined * * @since v0.0.1 * @category Value * @param {*} value - The value to check * @returns {boolean} * @example * isNill(null) //=> true * isNill(undefined) //=> true * isNill('') //=> false * isNill([]) //=> false * isNill({}) //=> false * * // if ANY isNill: * isNil.any('test', 0, 1, ['test'], null) //=> true * * // if ALL isNill: * isNil.all(undefined, null) //=> true */ declare const isNil: { (value: unknown): boolean; any(...args: any[]): boolean; all(...args: any[]): boolean; }; export { isNil };