import Foundation import LoopKitUI enum Home { enum Config {} } protocol HomeProvider: Provider { func heartbeatNow() func pumpSettings() async -> PumpSettings func getBasalProfile() async -> [BasalProfileEntry] func tempTargets(hours: Int) -> [TempTarget] func pumpReservoir() async -> Decimal? func tempTarget() -> TempTarget? func getBGTargets() async -> BGTargets }