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