/**
* Determines if any of the the provided properties are null, undefined, or empty (or whitespace if string-value).
* @param {any} args One or more properties to checked.
* @returns {boolean} If any Property is null, undefined, or empty or has not "length" as property true otherwise false.
* @since 1.3.0
*/
export default function isAnyNullOrEmpty(...args: any[]): boolean;
//# sourceMappingURL=isAnyNullOrEmpty.d.ts.map