package io.rebble.libpebblecommon.calls import kotlinx.coroutines.flow.Flow import kotlin.time.Instant interface SystemCallLog { suspend fun getMissedCalls(start: Instant): List fun registerForMissedCallChanges(): Flow fun hasPermission(): Boolean }