/** * it Verify if a variable is not an empty object * @param {object | any} variable Variable to verify * @returns {boolean} If the variable is not an empty object returns true, otherwise */ declare const isNotEmptyObject: (variable: any) => boolean; export { isNotEmptyObject };