/** * Checks if a given value is empty. * * A value is considered empty if it is: * - undefined * - null * - NaN * - an empty string * - an empty object (no enumerable properties) * - an empty array * * @param {unknown} value - The value to check. * @returns {boolean} True if the value is empty, false otherwise. */ export default function isEmpty(value: unknown): boolean; //# sourceMappingURL=is-empty.d.ts.map