#ifdef RCT_NEW_ARCH_ENABLED #import #import #import #import "UIViewController+CreateExtension.h" NS_ASSUME_NONNULL_BEGIN @interface RNCPagerViewComponentView : RCTViewComponentView @property(strong, nonatomic, readonly) UIPageViewController *nativePageViewController; @property(nonatomic, strong) NSMutableArray *nativeChildrenViewControllers; @property(nonatomic) NSInteger initialPage; @property(nonatomic) NSInteger currentIndex; @property(nonatomic) NSInteger destinationIndex; @property(nonatomic) NSString* layoutDirection; @property(nonatomic) BOOL overdrag; - (void)setPage:(NSInteger)number; - (void)setPageWithoutAnimation:(NSInteger)number; @end NS_ASSUME_NONNULL_END #endif