It is part of the Core. So nothing extra is needed.
How do you declare the Main.BtnGroupe(i) array?
If you declare the Array As View, you are right, there is no Typeface, since not all views have this.
The solution is to include the XUI library, which has B4XView which is a much smarter wrapper for Views.
'Private xui As XUI, include this in process globals
Dim vArray() As B4XView = Array As B4XView(eb, Button1)
For Each vw As B4XView In vArray
vw.Font = xui.CreateFont(Typeface.MONOSPACE, 16)
Next
Or.. If you already have lots of code with these arrays, use the new Inline casting feature:
Dim vArray() As View = Array As View(eb, Button1)
For Each vw As View In vArray
vw.As(B4XView).Font = xui.CreateFont(Typeface.MONOSPACE, 16)
Next