As I understand it not if you use groups as a means of splitting up geometry. You need to set up your geometry as objects in Houdini for Unity to get the information of transformation.
As far as the object level geometry node. You can set up a houdini python script to do this. The SideFX Labs static fracture export will do this for the static frames. You will need to add this to bottom of your SOP network, and adjust the script so it writes it within an editable object level HDA.
You can do instances too. Instances will be more performant than as geometry nodes are straight GameObject conversions. You can use the Copy To Points sop node set to pack, or use the instancer at object level. The former setup is quick and straightforward. The later is more complex but more scalable. EDIT: this method does give each instance it's own transform like you were asking
A third option is to use the Tree or Prefab instancer https://www.sidefx.com/docs/unity/_terrain.html#Terrain_Scatterring. I do not believe this will carry the parent transform though as originally requested.