On a host running PHP 8.2 (with display of error messages enabled), every very time a CSV is imported, a PHP deprecated function message is as follows appear:
Deprecated function: Creation of dynamic property Drupal\user_csv_import\Form\UserCsvImportForm::$file is deprecated in Drupal\user_csv_import\Form\UserCsvImportForm->validateForm() (line 316 of modules/contrib/user_csv_import/src/Form/UserCsvImportForm.php).
Repeat the above after changing your host's PHP version to 8.1 and you should see no messages about the issue.
According to this document on php.net, creation of dynamic properties is deprecated.
Background: php.watch.
We need to update the code to be compatible with PHP 8.2.