// DEV-only fault-injection module. Compiled only when DEBUG=1.
// Reached via @nsure-ai/react-native-client-sdk/crashLab.

#if DEBUG

#if __has_include("RCTBridgeModule.h")
#import "RCTBridgeModule.h"
#else
#import <React/RCTBridgeModule.h>
#endif

@interface NSureSDKCrashLab : NSObject <RCTBridgeModule>

@end

#endif // DEBUG
