Purge logs within specified period of time from a directory with find in Linux

First list them all - between 2019-01-01 and 2022-04-30:

find ./logs -type f -newermt 2019-01-01 ! -newermt 2022-04-30 -ls
Next, delete:
find ./logs -type f -newermt 2019-01-01 ! -newermt 2022-04-30 -delete