#import #import @import UserNotifications; @interface RNNotificationCenter : NSObject - (void)isRegisteredForRemoteNotifications:(RCTPromiseResolveBlock)resolve; - (void)requestPermissionsWithCategories:(NSArray *)json; - (void)checkPermissions:(RCTPromiseResolveBlock)resolve; - (void)sendLocalNotification:(NSDictionary *)notification withId:(NSString *)notificationId; - (void)cancelLocalNotification:(NSString *)notificationId; - (void)removeAllDeliveredNotifications; - (void)removeDeliveredNotifications:(NSArray *)identifiers; - (void)getDeliveredNotifications:(RCTResponseSenderBlock)callback; - (void)cancelAllLocalNotifications; @end