If the target table that will get the exported data has GENERATED AS ALWAYS, then the IMPORT/LOAD would fail since one is supplying values for IDENTITY column. I would recommend defining GENERATED BY DEFAULT. So you could export/import to the target table and then any new inserts would use the values specified by the INDENTITY definitions. You would, as stated above, have to ALTER TABLE such that the IDENTITY column would start with the max value + whatever is desired.
HTH,
Ruby