@class NSString; @protocol MPVolumeControllerDataSource, MPVolumeControllerDelegate; @interface MPVolumeController : NSObject { int _volumeChangeCoalescingCount; } @property (weak, nonatomic) id delegate; @property (readonly, nonatomic, getter=isVolumeControlAvailable) BOOL volumeControlAvailable; @property (readonly, nonatomic) unsigned int volumeCapabilities; @property (readonly, copy, nonatomic) NSString *volumeControlLabel; @property (copy, nonatomic) NSString *volumeAudioCategory; @property (nonatomic) float volumeValue; @property (nonatomic, getter=isMuted) BOOL muted; @property (retain, nonatomic) id dataSource; @property (readonly, nonatomic) BOOL volumeWarningEnabled; @property (readonly, nonatomic) long long volumeWarningState; @property (readonly, nonatomic) float EUVolumeLimit; @property (readonly) unsigned long long hash; @property (readonly) Class superclass; @property (readonly, copy) NSString *description; @property (readonly, copy) NSString *debugDescription; + (id)descriptionForWarningState:(long long)a0; - (BOOL)muted; - (void)decreaseVolume; - (void)increaseVolume; - (id)init; - (void)volumeControllerDataSource:(id)a0 didChangeVolumeCapabilities:(unsigned int)a1; - (void)beginDecreasingRelativeVolume; - (void)updateVolumeValue; - (void)getVolumeValueWithCompletion:(id /* block */)a0; - (void)setVolume:(float)a0 withNoticationDelay:(float)a1; - (void)endIncreasingRelativeVolume; - (void)volumeControllerDataSource:(id)a0 didChangeMuted:(BOOL)a1; - (void)volumeControllerDataSource:(id)a0 didChangeVolumeLabel:(id)a1; - (id)initWithDataSource:(id)a0; - (void)volumeControllerDataSource:(id)a0 didChangeVolume:(float)a1; - (void)endDecreasingRelativeVolume; - (void).cxx_destruct; - (void)beginIncreasingRelativeVolume; - (void)volumeControllerDataSource:(id)a0 didChangeVolumeControlAvailability:(BOOL)a1; - (void)adjustVolumeValue:(float)a0; - (void)volumeControllerDataSource:(id)a0 didChangeVolumeAudioCategory:(id)a1; - (void)updateVolumeWarningState; - (void)volumeControllerDataSource:(id)a0 didChangeVolume:(float)a1 silenceVolumeHUD:(BOOL)a2; - (void)setVolume:(float)a0 withNotificationDelay:(float)a1; @end