Kotlinx html append native node

I’m using kotlinx html builders with Kotlin-JS. I’d like to append a native DOM-Node while inside a kotlinx builder. Is it possible?

document.create.div {
            val elem: HTMLElement = someFun()
            // append is not defined. How can I do this?
            append(elem)
}

append is a jQuery method. The native DOM method is called appendChild.

Yes. But appendChild is not available as well. The problem is, the div is not instantiated yet. Any ideas?