#import #import extern const NSInteger BLUR_STATUS_TAG; extern const NSInteger BLUR_TOPBAR_TAG; @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* topBarTextFontFamily; @property (nonatomic, strong) NSNumber* topBarHidden; @property (nonatomic, strong) NSNumber* topBarHideOnScroll; @property (nonatomic, strong) NSNumber* topBarButtonColor; @property (nonatomic, strong) NSNumber* topBarTranslucent; @property (nonatomic, strong) NSString* tabBadge; @property (nonatomic, strong) NSNumber* topBarTextFontSize; @property (nonatomic, strong) id orientation; @property (nonatomic, strong) NSArray* leftButtons; @property (nonatomic, strong) NSArray* rightButtons; @property (nonatomic, strong) NSNumber* topBarNoBorder; @property (nonatomic, strong) NSNumber* statusBarBlur; @property (nonatomic, strong) NSNumber* statusBarHideWithTopBar; @property (nonatomic, strong) NSNumber* tabBarHidden; @property (nonatomic, strong) NSNumber* topBarBlur; - (UIInterfaceOrientationMask)supportedOrientations; -(instancetype)init; -(instancetype)initWithDict:(NSDictionary *)navigationOptions; -(void)applyOn:(UIViewController*)viewController; -(void)mergeWith:(NSDictionary*)otherOptions; @end