/** * This will return true if object is empty, string is empty, number is 0 or array is empty * In lodash _.isEmpty(1); returns true, unable to test number * @param {Record|string|number|unknown[]} value * @returns boolean */ declare function isEmptyOrZero(value: Record | string | number | unknown[]): boolean; export default isEmptyOrZero;