#import #import @interface RNNNavigationOptions : NSObject @property (nonatomic, strong) NSNumber* topBarBackgroundColor; @property (nonatomic, strong) NSNumber* topBarTextColor; @property (nonatomic, strong) NSNumber* statusBarHidden; @property (nonatomic, strong) NSString* title; @property (nonatomic, strong) NSNumber* screenBackgroundColor; @property (nonatomic, strong) NSString* setTabBadge; @property (nonatomic, strong) NSString* topBarTextFontFamily; -(instancetype)init; -(instancetype)initWithDict:(NSDictionary *)navigationOptions; -(void)applyOn:(UIViewController*)viewController; -(void)mergeWith:(NSDictionary*)otherOptions; @end