/** * Checks if a value is empty. A value is considered empty if it is: * - null or undefined * - an empty string * - an empty array * - an empty object * - a number that is 0 */ declare const isEmpty: (value: any) => boolean; export default isEmpty;