### multiModalInputClickDragDrop
```kotlin
fun multiModalInputClickDragDrop() {
    composeTestRule.onNodeWithTag("myComponent").performMultiModalInput {
        touch { click(center) }
        advanceEventTime(500)
        mouse { dragAndDrop(topLeft, bottomRight) }
    }
}
```