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