'use strict';
import ReactNative, { NativeModules } from 'react-native';
const MLHelpCenter = NativeModules.MLHelpCenter;
function showFAQs() {
MLHelpCenter.showFAQs();
}
function showConversation() {
MLHelpCenter.showConversation();
}
export default {
showFAQs,
showConversation
};