How to select AddressableGroup in groups window?

I’m creating a custom editor window where I need to display AddressableGroups button that highlights a corresponding entry in the Addressables Groups window.

I can select an asset with

Selection.activeObject = group;

but it doesn’t select a corresponding entry, only a group asset in the project window.

I need something like this field in the default inspector window:
image

It seems that AddressableAssetsSettingsGroupEditor.SelectGroup(AddressableAssetGroup group, bool fireSelectionChanged) is the function I need but this class is Internal and I can’t access it from my assembly.

Did you find a solution for this? I am trying to do the same.