Overloaded 'millis()' is ambiguous

Hi all, I'm using arduino to program an eps32 with interface written using eez studio. I would like use millis() function but following error appears:

error: call of overloaded 'millis()' is ambiguous

...\AppData\Local\Arduino15\packages\esp32\hardware\esp32\3.2.0\cores\esp32/esp32-hal.h:139:15: note: candidate: 'long unsigned int millis()'

...eez-flow.h:2024:10: note: candidate: 'uint32_t eez::millis()'
 2024 | uint32_t millis();

seems that the function is define twice. Which is the best approach to solve problems.
many thanks
best regards

Is that an Arduino Nano ESP32 or something else?

Did you create a function with the name millis() in your sketch?

It appears that eez also defines millis(). Find a different library that plays nice? Edit eez to remove the definition (probably a bad idea since they probably use it)?