#import "RCTBridgeModule.h"
#import "iflyMSC/IFlyMSC.h"

@class IFlyDataUploader;
@class IFlySpeechUnderstander;

@interface XFlySpeechUnderstander : NSObject <RCTBridgeModule,IFlySpeechRecognizerDelegate>

//语音语义理解对象
@property (nonatomic,strong) IFlySpeechUnderstander *iFlySpeechUnderstander;
//文本语义理解对象
@property (nonatomic,strong) IFlyTextUnderstander *iFlyUnderStand;

@property (nonatomic) BOOL isCanceled;
@property (nonatomic,strong) NSString *result;

@end