How to Remove or Deactivate “Application Passwords” in WordPress

Yes, it’s wp_is_application_passwords_available to globally disable them:

add_filter( 'wp_is_application_passwords_available', '__return_false' );

or wp_is_application_passwords_available_for_user to turn them on and off by role or individually.