@class NSString; @protocol FBProcessObserver; @interface FBProcessObserver : NSObject { unsigned long long _observerAddress; Class _observerClass; BOOL _supportsWillExit; BOOL _supportsDidExit; BOOL _supportsStateDidChange; BOOL _supportsApplicationDidExit; BOOL _supportsApplicationWillLaunch; BOOL _supportsApplicationDidLaunch; BOOL _supportsApplicationDebugState; int _invalidated; int _calledWillExit; int _calledDidExit; int _calledWillLaunch; int _calledDidLaunch; } @property (readonly, weak, nonatomic) id observer; @property (readonly) unsigned long long hash; @property (readonly) Class superclass; @property (readonly, copy) NSString *description; @property (readonly, copy) NSString *debugDescription; - (id)initWithObserver:(id)a0; - (void)processWillExit:(id)a0; - (void)invalidate; - (void)processDidExit:(id)a0; - (void)process:(id)a0 stateDidChangeFromState:(id)a1 toState:(id)a2; - (void).cxx_destruct; - (void)applicationProcessWillLaunch:(id)a0; - (void)applicationProcessDidExit:(id)a0 withContext:(id)a1; - (BOOL)isEqual:(id)a0; - (void)applicationProcessDidLaunch:(id)a0; - (void)applicationProcessDebuggingStateDidChange:(id)a0; @end