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