1 2 3 4 5 6 7 8 9 10 11 12 13 14package io.hyperswitch.paymentsession import io.hyperswitch.paymentsheet.PaymentSheet interface SDKInterface { fun presentSheet( paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? ): Boolean fun presentSheet(configurationMap: Map<String, Any?>): Boolean fun initializeReactNativeInstance() fun recreateReactContext() }