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