@class NSString, OFUIView, CAAnimation, NSDictionary; @interface OKWidgetContentEffect : NSObject { NSString *_uuid; NSDictionary *_settings; BOOL _isPaused; BOOL _needsApplySettings; } @property (nonatomic) OFUIView *animatedView; @property (retain, nonatomic) CAAnimation *animation; @property (nonatomic) BOOL loop; @property (nonatomic) BOOL autoplay; @property (nonatomic) double defaultDuration; @property (readonly) unsigned long long hash; @property (readonly) Class superclass; @property (readonly, copy) NSString *description; @property (readonly, copy) NSString *debugDescription; + (id)animationKeyPrefix; + (id)supportedSettings; - (void)pauseAnimation; - (id)init; - (void)animationDidStop:(id)a0 finished:(BOOL)a1; - (void)dealloc; - (void)setUserSettingObject:(id)a0 forKey:(id)a1; - (void)startAnimation; - (BOOL)isAnimating; - (void)stopAnimation; - (id)initWithSettings:(id)a0; - (id)settingObjectForKey:(id)a0; - (void)resumeAnimation; - (void)applySettings; - (void)applySettingsIfNeeded; - (void)needsApplySettings; - (void)prepareContentEffectWithView:(id)a0; - (double)remainingPlayDuration; @end