The property can be accessed through the companion object.
On the Kotlin side, they declared an extension property for the companion object of a regular class:
class ExtensionPropertiesCompanionObjectUsualClass {
companion object {
}
}
val ExtensionPropertiesCompanionObjectUsualClass.Companion.EXT_PROP: String get() = "456"
From Swift, this property is accessed through an object companion, which can be accessed through a class:
ExtensionPropertiesCompanionObjectUsualClass.companion.EXT_PROP