#import "RCTBridgeModule.h"
#import "iflyMSC/iflyMSC.h"
#import "iflyMSC/IFlySpeechRecognizer.h"
#import "iflyMSC/IFlySpeechRecognizerDelegate.h"
#import "iflyMSC/IFlySpeechUtility.h"
#import "iflyMSC/IFlyRecognizerViewDelegate.h"

@class IFlySpeechRecognizer;

@interface XunfeiManager : NSObject <RCTBridgeModule,IFlySpeechRecognizerDelegate,IFlyRecognizerViewDelegate>

@property (nonatomic, strong) IFlySpeechRecognizer *iFlySpeechRecognizer;
@property (nonatomic, strong) IFlySpeechSynthesizer * iFlySpeechSynthesizer;
@property (nonatomic, strong) NSString * result;
@property (nonatomic, assign) BOOL isCanceled;

@end