You can check under your /uploads folder to see if there’s a trash folder containing the media.
If it’s missing, it’s likely that the files have already been deleted manually or by another process, meaning the space shown as being used by the trash is actually 0. This happens when your database isn’t up to date with the actual state of the folder.
To fix this, you can run the following SQL query in your database (always make a reliable backup first):
DELETE FROM wp_mclean_scan WHERE deleted = 1
Most database admin panels have a section where you can manually run SQL queries — simply paste this code there and execute it.
If you’re not sure where that is, your hosting provider can guide you.
If the trash folder still exists and contains files, you can manually delete it, then run the same SQL query to update the database afterwards.