/**
* Determines if all 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 all properties are null, undefined, or empty or has not "length" as property true otherwise false.
* @since 1.3.0
*/
export default function allAreNullOrEmpty(...args: any[]): boolean;
//# sourceMappingURL=allAreNullOrEmpty.d.ts.map