You can call public member functions from Swift. Internal or private declarations aren't visible.
Let's declare a simple class on the Kotlin code side:
class UsualClassFunction {
fun someFunction() {
// do something
}
}
On the Swift side, we will get the same class with a function that matches the signature:
let myClass = UsualClassFunction()
myClass.someFunction()