doum
8 天以前 d5810177a4e77ea273971e51dd150bd84906de6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
import { beaconPicker$ as biz_ATMBle_beaconPicker } from './biz/ATMBle/beaconPicker';
export { IBizATMBleBeaconPickerParams, IBizATMBleBeaconPickerResult } from './biz/ATMBle/beaconPicker';
import { detectFace$ as biz_ATMBle_detectFace } from './biz/ATMBle/detectFace';
export { IBizATMBleDetectFaceParams, IBizATMBleDetectFaceResult } from './biz/ATMBle/detectFace';
import { detectFaceFullScreen$ as biz_ATMBle_detectFaceFullScreen } from './biz/ATMBle/detectFaceFullScreen';
export { IBizATMBleDetectFaceFullScreenParams, IBizATMBleDetectFaceFullScreenResult } from './biz/ATMBle/detectFaceFullScreen';
import { exclusiveLiveCheck$ as biz_ATMBle_exclusiveLiveCheck } from './biz/ATMBle/exclusiveLiveCheck';
export { IBizATMBleExclusiveLiveCheckParams, IBizATMBleExclusiveLiveCheckResult } from './biz/ATMBle/exclusiveLiveCheck';
import { faceManager$ as biz_ATMBle_faceManager } from './biz/ATMBle/faceManager';
export { IBizATMBleFaceManagerParams, IBizATMBleFaceManagerResult } from './biz/ATMBle/faceManager';
import { punchModePicker$ as biz_ATMBle_punchModePicker } from './biz/ATMBle/punchModePicker';
export { IBizATMBlePunchModePickerParams, IBizATMBlePunchModePickerResult } from './biz/ATMBle/punchModePicker';
import { bindAlipay$ as biz_alipay_bindAlipay } from './biz/alipay/bindAlipay';
export { IBizAlipayBindAlipayParams, IBizAlipayBindAlipayResult } from './biz/alipay/bindAlipay';
import { openAuth$ as biz_alipay_openAuth } from './biz/alipay/openAuth';
export { IBizAlipayOpenAuthParams, IBizAlipayOpenAuthResult } from './biz/alipay/openAuth';
import { pay$ as biz_alipay_pay } from './biz/alipay/pay';
export { IBizAlipayPayParams, IBizAlipayPayResult } from './biz/alipay/pay';
import { getLBSWua$ as biz_attend_getLBSWua } from './biz/attend/getLBSWua';
export { IBizAttendGetLBSWuaParams, IBizAttendGetLBSWuaResult } from './biz/attend/getLBSWua';
import { openAccountPwdLoginPage$ as biz_auth_openAccountPwdLoginPage } from './biz/auth/openAccountPwdLoginPage';
export { IBizAuthOpenAccountPwdLoginPageParams, IBizAuthOpenAccountPwdLoginPageResult } from './biz/auth/openAccountPwdLoginPage';
import { requestAuthInfo$ as biz_auth_requestAuthInfo } from './biz/auth/requestAuthInfo';
export { IBizAuthRequestAuthInfoParams, IBizAuthRequestAuthInfoResult } from './biz/auth/requestAuthInfo';
import { chooseDateTime$ as biz_calendar_chooseDateTime } from './biz/calendar/chooseDateTime';
export { IBizCalendarChooseDateTimeParams, IBizCalendarChooseDateTimeResult } from './biz/calendar/chooseDateTime';
import { chooseHalfDay$ as biz_calendar_chooseHalfDay } from './biz/calendar/chooseHalfDay';
export { IBizCalendarChooseHalfDayParams, IBizCalendarChooseHalfDayResult } from './biz/calendar/chooseHalfDay';
import { chooseInterval$ as biz_calendar_chooseInterval } from './biz/calendar/chooseInterval';
export { IBizCalendarChooseIntervalParams, IBizCalendarChooseIntervalResult } from './biz/calendar/chooseInterval';
import { chooseOneDay$ as biz_calendar_chooseOneDay } from './biz/calendar/chooseOneDay';
export { IBizCalendarChooseOneDayParams, IBizCalendarChooseOneDayResult } from './biz/calendar/chooseOneDay';
import { chooseConversationByCorpId$ as biz_chat_chooseConversationByCorpId } from './biz/chat/chooseConversationByCorpId';
export { IBizChatChooseConversationByCorpIdParams, IBizChatChooseConversationByCorpIdResult } from './biz/chat/chooseConversationByCorpId';
import { collectSticker$ as biz_chat_collectSticker } from './biz/chat/collectSticker';
export { IBizChatCollectStickerParams, IBizChatCollectStickerResult } from './biz/chat/collectSticker';
import { createSceneGroup$ as biz_chat_createSceneGroup } from './biz/chat/createSceneGroup';
export { IBizChatCreateSceneGroupParams, IBizChatCreateSceneGroupResult } from './biz/chat/createSceneGroup';
import { getRealmCid$ as biz_chat_getRealmCid } from './biz/chat/getRealmCid';
export { IBizChatGetRealmCidParams, IBizChatGetRealmCidResult } from './biz/chat/getRealmCid';
import { locationChatMessage$ as biz_chat_locationChatMessage } from './biz/chat/locationChatMessage';
export { IBizChatLocationChatMessageParams, IBizChatLocationChatMessageResult } from './biz/chat/locationChatMessage';
import { openSingleChat$ as biz_chat_openSingleChat } from './biz/chat/openSingleChat';
export { IBizChatOpenSingleChatParams, IBizChatOpenSingleChatResult } from './biz/chat/openSingleChat';
import { pickConversation$ as biz_chat_pickConversation } from './biz/chat/pickConversation';
export { IBizChatPickConversationParams, IBizChatPickConversationResult } from './biz/chat/pickConversation';
import { sendEmotion$ as biz_chat_sendEmotion } from './biz/chat/sendEmotion';
export { IBizChatSendEmotionParams, IBizChatSendEmotionResult } from './biz/chat/sendEmotion';
import { toConversation$ as biz_chat_toConversation } from './biz/chat/toConversation';
export { IBizChatToConversationParams, IBizChatToConversationResult } from './biz/chat/toConversation';
import { toConversationByOpenConversationId$ as biz_chat_toConversationByOpenConversationId } from './biz/chat/toConversationByOpenConversationId';
export { IBizChatToConversationByOpenConversationIdParams, IBizChatToConversationByOpenConversationIdResult } from './biz/chat/toConversationByOpenConversationId';
import { setData$ as biz_clipboardData_setData } from './biz/clipboardData/setData';
export { IBizClipboardDataSetDataParams, IBizClipboardDataSetDataResult } from './biz/clipboardData/setData';
import { createCloudCall$ as biz_conference_createCloudCall } from './biz/conference/createCloudCall';
export { IBizConferenceCreateCloudCallParams, IBizConferenceCreateCloudCallResult } from './biz/conference/createCloudCall';
import { getCloudCallInfo$ as biz_conference_getCloudCallInfo } from './biz/conference/getCloudCallInfo';
export { IBizConferenceGetCloudCallInfoParams, IBizConferenceGetCloudCallInfoResult } from './biz/conference/getCloudCallInfo';
import { getCloudCallList$ as biz_conference_getCloudCallList } from './biz/conference/getCloudCallList';
export { IBizConferenceGetCloudCallListParams, IBizConferenceGetCloudCallListResult } from './biz/conference/getCloudCallList';
import { videoConfCall$ as biz_conference_videoConfCall } from './biz/conference/videoConfCall';
export { IBizConferenceVideoConfCallParams, IBizConferenceVideoConfCallResult } from './biz/conference/videoConfCall';
import { choose$ as biz_contact_choose } from './biz/contact/choose';
export { IBizContactChooseParams, IBizContactChooseResult } from './biz/contact/choose';
import { chooseMobileContacts$ as biz_contact_chooseMobileContacts } from './biz/contact/chooseMobileContacts';
export { IBizContactChooseMobileContactsParams, IBizContactChooseMobileContactsResult } from './biz/contact/chooseMobileContacts';
import { complexPicker$ as biz_contact_complexPicker } from './biz/contact/complexPicker';
export { IBizContactComplexPickerParams, IBizContactComplexPickerResult } from './biz/contact/complexPicker';
import { createGroup$ as biz_contact_createGroup } from './biz/contact/createGroup';
export { IBizContactCreateGroupParams, IBizContactCreateGroupResult } from './biz/contact/createGroup';
import { departmentsPicker$ as biz_contact_departmentsPicker } from './biz/contact/departmentsPicker';
export { IBizContactDepartmentsPickerParams, IBizContactDepartmentsPickerResult } from './biz/contact/departmentsPicker';
import { externalComplexPicker$ as biz_contact_externalComplexPicker } from './biz/contact/externalComplexPicker';
export { IBizContactExternalComplexPickerParams, IBizContactExternalComplexPickerResult } from './biz/contact/externalComplexPicker';
import { externalEditForm$ as biz_contact_externalEditForm } from './biz/contact/externalEditForm';
export { IBizContactExternalEditFormParams, IBizContactExternalEditFormResult } from './biz/contact/externalEditForm';
import { rolesPicker$ as biz_contact_rolesPicker } from './biz/contact/rolesPicker';
export { IBizContactRolesPickerParams, IBizContactRolesPickerResult } from './biz/contact/rolesPicker';
import { setRule$ as biz_contact_setRule } from './biz/contact/setRule';
export { IBizContactSetRuleParams, IBizContactSetRuleResult } from './biz/contact/setRule';
import { chooseSpaceDir$ as biz_cspace_chooseSpaceDir } from './biz/cspace/chooseSpaceDir';
export { IBizCspaceChooseSpaceDirParams, IBizCspaceChooseSpaceDirResult } from './biz/cspace/chooseSpaceDir';
import { delete$ as biz_cspace_delete } from './biz/cspace/delete';
export { IBizCspaceDeleteParams, IBizCspaceDeleteResult } from './biz/cspace/delete';
import { preview$ as biz_cspace_preview } from './biz/cspace/preview';
export { IBizCspacePreviewParams, IBizCspacePreviewResult } from './biz/cspace/preview';
import { previewDentryImages$ as biz_cspace_previewDentryImages } from './biz/cspace/previewDentryImages';
export { IBizCspacePreviewDentryImagesParams, IBizCspacePreviewDentryImagesResult } from './biz/cspace/previewDentryImages';
import { saveFile$ as biz_cspace_saveFile } from './biz/cspace/saveFile';
export { IBizCspaceSaveFileParams, IBizCspaceSaveFileResult } from './biz/cspace/saveFile';
import { choose$ as biz_customContact_choose } from './biz/customContact/choose';
export { IBizCustomContactChooseParams, IBizCustomContactChooseResult } from './biz/customContact/choose';
import { multipleChoose$ as biz_customContact_multipleChoose } from './biz/customContact/multipleChoose';
export { IBizCustomContactMultipleChooseParams, IBizCustomContactMultipleChooseResult } from './biz/customContact/multipleChoose';
import { rsa$ as biz_data_rsa } from './biz/data/rsa';
export { IBizDataRsaParams, IBizDataRsaResult } from './biz/data/rsa';
import { create$ as biz_ding_create } from './biz/ding/create';
export { IBizDingCreateParams, IBizDingCreateResult } from './biz/ding/create';
import { post$ as biz_ding_post } from './biz/ding/post';
export { IBizDingPostParams, IBizDingPostResult } from './biz/ding/post';
import { finishMiniCourseByRecordId$ as biz_edu_finishMiniCourseByRecordId } from './biz/edu/finishMiniCourseByRecordId';
export { IBizEduFinishMiniCourseByRecordIdParams, IBizEduFinishMiniCourseByRecordIdResult } from './biz/edu/finishMiniCourseByRecordId';
import { getMiniCourseDraftList$ as biz_edu_getMiniCourseDraftList } from './biz/edu/getMiniCourseDraftList';
export { IBizEduGetMiniCourseDraftListParams, IBizEduGetMiniCourseDraftListResult } from './biz/edu/getMiniCourseDraftList';
import { joinClassroom$ as biz_edu_joinClassroom } from './biz/edu/joinClassroom';
export { IBizEduJoinClassroomParams, IBizEduJoinClassroomResult } from './biz/edu/joinClassroom';
import { makeMiniCourse$ as biz_edu_makeMiniCourse } from './biz/edu/makeMiniCourse';
export { IBizEduMakeMiniCourseParams, IBizEduMakeMiniCourseResult } from './biz/edu/makeMiniCourse';
import { newMsgNotificationStatus$ as biz_edu_newMsgNotificationStatus } from './biz/edu/newMsgNotificationStatus';
export { IBizEduNewMsgNotificationStatusParams, IBizEduNewMsgNotificationStatusResult } from './biz/edu/newMsgNotificationStatus';
import { startAuth$ as biz_edu_startAuth } from './biz/edu/startAuth';
export { IBizEduStartAuthParams, IBizEduStartAuthResult } from './biz/edu/startAuth';
import { tokenFaceImg$ as biz_edu_tokenFaceImg } from './biz/edu/tokenFaceImg';
export { IBizEduTokenFaceImgParams, IBizEduTokenFaceImgResult } from './biz/edu/tokenFaceImg';
import { notifyWeex$ as biz_event_notifyWeex } from './biz/event/notifyWeex';
export { IBizEventNotifyWeexParams, IBizEventNotifyWeexResult } from './biz/event/notifyWeex';
import { downloadFile$ as biz_file_downloadFile } from './biz/file/downloadFile';
export { IBizFileDownloadFileParams, IBizFileDownloadFileResult } from './biz/file/downloadFile';
import { fetchData$ as biz_intent_fetchData } from './biz/intent/fetchData';
export { IBizIntentFetchDataParams, IBizIntentFetchDataResult } from './biz/intent/fetchData';
import { bind$ as biz_iot_bind } from './biz/iot/bind';
export { IBizIotBindParams, IBizIotBindResult } from './biz/iot/bind';
import { bindMeetingRoom$ as biz_iot_bindMeetingRoom } from './biz/iot/bindMeetingRoom';
export { IBizIotBindMeetingRoomParams, IBizIotBindMeetingRoomResult } from './biz/iot/bindMeetingRoom';
import { getDeviceProperties$ as biz_iot_getDeviceProperties } from './biz/iot/getDeviceProperties';
export { IBizIotGetDevicePropertiesParams, IBizIotGetDevicePropertiesResult } from './biz/iot/getDeviceProperties';
import { invokeThingService$ as biz_iot_invokeThingService } from './biz/iot/invokeThingService';
export { IBizIotInvokeThingServiceParams, IBizIotInvokeThingServiceResult } from './biz/iot/invokeThingService';
import { queryMeetingRoomList$ as biz_iot_queryMeetingRoomList } from './biz/iot/queryMeetingRoomList';
export { IBizIotQueryMeetingRoomListParams, IBizIotQueryMeetingRoomListResult } from './biz/iot/queryMeetingRoomList';
import { setDeviceProperties$ as biz_iot_setDeviceProperties } from './biz/iot/setDeviceProperties';
export { IBizIotSetDevicePropertiesParams, IBizIotSetDevicePropertiesResult } from './biz/iot/setDeviceProperties';
import { unbind$ as biz_iot_unbind } from './biz/iot/unbind';
export { IBizIotUnbindParams, IBizIotUnbindResult } from './biz/iot/unbind';
import { startClassRoom$ as biz_live_startClassRoom } from './biz/live/startClassRoom';
export { IBizLiveStartClassRoomParams, IBizLiveStartClassRoomResult } from './biz/live/startClassRoom';
import { startUnifiedLive$ as biz_live_startUnifiedLive } from './biz/live/startUnifiedLive';
export { IBizLiveStartUnifiedLiveParams, IBizLiveStartUnifiedLiveResult } from './biz/live/startUnifiedLive';
import { locate$ as biz_map_locate } from './biz/map/locate';
export { IBizMapLocateParams, IBizMapLocateResult } from './biz/map/locate';
import { search$ as biz_map_search } from './biz/map/search';
export { IBizMapSearchParams, IBizMapSearchResult } from './biz/map/search';
import { view$ as biz_map_view } from './biz/map/view';
export { IBizMapViewParams, IBizMapViewResult } from './biz/map/view';
import { compressVideo$ as biz_media_compressVideo } from './biz/media/compressVideo';
export { IBizMediaCompressVideoParams, IBizMediaCompressVideoResult } from './biz/media/compressVideo';
import { openApp$ as biz_microApp_openApp } from './biz/microApp/openApp';
export { IBizMicroAppOpenAppParams, IBizMicroAppOpenAppResult } from './biz/microApp/openApp';
import { close$ as biz_navigation_close } from './biz/navigation/close';
export { IBizNavigationCloseParams, IBizNavigationCloseResult } from './biz/navigation/close';
import { goBack$ as biz_navigation_goBack } from './biz/navigation/goBack';
export { IBizNavigationGoBackParams, IBizNavigationGoBackResult } from './biz/navigation/goBack';
import { hideBar$ as biz_navigation_hideBar } from './biz/navigation/hideBar';
export { IBizNavigationHideBarParams, IBizNavigationHideBarResult } from './biz/navigation/hideBar';
import { navigateBackPage$ as biz_navigation_navigateBackPage } from './biz/navigation/navigateBackPage';
export { IBizNavigationNavigateBackPageParams, IBizNavigationNavigateBackPageResult } from './biz/navigation/navigateBackPage';
import { navigateToMiniProgram$ as biz_navigation_navigateToMiniProgram } from './biz/navigation/navigateToMiniProgram';
export { IBizNavigationNavigateToMiniProgramParams, IBizNavigationNavigateToMiniProgramResult } from './biz/navigation/navigateToMiniProgram';
import { navigateToPage$ as biz_navigation_navigateToPage } from './biz/navigation/navigateToPage';
export { IBizNavigationNavigateToPageParams, IBizNavigationNavigateToPageResult } from './biz/navigation/navigateToPage';
import { quit$ as biz_navigation_quit } from './biz/navigation/quit';
export { IBizNavigationQuitParams, IBizNavigationQuitResult } from './biz/navigation/quit';
import { replace$ as biz_navigation_replace } from './biz/navigation/replace';
export { IBizNavigationReplaceParams, IBizNavigationReplaceResult } from './biz/navigation/replace';
import { setIcon$ as biz_navigation_setIcon } from './biz/navigation/setIcon';
export { IBizNavigationSetIconParams, IBizNavigationSetIconResult } from './biz/navigation/setIcon';
import { setLeft$ as biz_navigation_setLeft } from './biz/navigation/setLeft';
export { IBizNavigationSetLeftParams, IBizNavigationSetLeftResult } from './biz/navigation/setLeft';
import { setMenu$ as biz_navigation_setMenu } from './biz/navigation/setMenu';
export { IBizNavigationSetMenuParams, IBizNavigationSetMenuResult } from './biz/navigation/setMenu';
import { setRight$ as biz_navigation_setRight } from './biz/navigation/setRight';
export { IBizNavigationSetRightParams, IBizNavigationSetRightResult } from './biz/navigation/setRight';
import { setTitle$ as biz_navigation_setTitle } from './biz/navigation/setTitle';
export { IBizNavigationSetTitleParams, IBizNavigationSetTitleResult } from './biz/navigation/setTitle';
import { componentPunchFromPartner$ as biz_pbp_componentPunchFromPartner } from './biz/pbp/componentPunchFromPartner';
export { IBizPbpComponentPunchFromPartnerParams, IBizPbpComponentPunchFromPartnerResult } from './biz/pbp/componentPunchFromPartner';
import { startMatchRuleFromPartner$ as biz_pbp_startMatchRuleFromPartner } from './biz/pbp/startMatchRuleFromPartner';
export { IBizPbpStartMatchRuleFromPartnerParams, IBizPbpStartMatchRuleFromPartnerResult } from './biz/pbp/startMatchRuleFromPartner';
import { stopMatchRuleFromPartner$ as biz_pbp_stopMatchRuleFromPartner } from './biz/pbp/stopMatchRuleFromPartner';
export { IBizPbpStopMatchRuleFromPartnerParams, IBizPbpStopMatchRuleFromPartnerResult } from './biz/pbp/stopMatchRuleFromPartner';
import { add$ as biz_phoneContact_add } from './biz/phoneContact/add';
export { IBizPhoneContactAddParams, IBizPhoneContactAddResult } from './biz/phoneContact/add';
import { getRealtimeTracingStatus$ as biz_realm_getRealtimeTracingStatus } from './biz/realm/getRealtimeTracingStatus';
export { IBizRealmGetRealtimeTracingStatusParams, IBizRealmGetRealtimeTracingStatusResult } from './biz/realm/getRealtimeTracingStatus';
import { getUserExclusiveInfo$ as biz_realm_getUserExclusiveInfo } from './biz/realm/getUserExclusiveInfo';
export { IBizRealmGetUserExclusiveInfoParams, IBizRealmGetUserExclusiveInfoResult } from './biz/realm/getUserExclusiveInfo';
import { startRealtimeTracing$ as biz_realm_startRealtimeTracing } from './biz/realm/startRealtimeTracing';
export { IBizRealmStartRealtimeTracingParams, IBizRealmStartRealtimeTracingResult } from './biz/realm/startRealtimeTracing';
import { stopRealtimeTracing$ as biz_realm_stopRealtimeTracing } from './biz/realm/stopRealtimeTracing';
export { IBizRealmStopRealtimeTracingParams, IBizRealmStopRealtimeTracingResult } from './biz/realm/stopRealtimeTracing';
import { subscribe$ as biz_realm_subscribe } from './biz/realm/subscribe';
export { IBizRealmSubscribeParams, IBizRealmSubscribeResult } from './biz/realm/subscribe';
import { unsubscribe$ as biz_realm_unsubscribe } from './biz/realm/unsubscribe';
export { IBizRealmUnsubscribeParams, IBizRealmUnsubscribeResult } from './biz/realm/unsubscribe';
import { getInfo$ as biz_resource_getInfo } from './biz/resource/getInfo';
export { IBizResourceGetInfoParams, IBizResourceGetInfoResult } from './biz/resource/getInfo';
import { reportDebugMessage$ as biz_resource_reportDebugMessage } from './biz/resource/reportDebugMessage';
export { IBizResourceReportDebugMessageParams, IBizResourceReportDebugMessageResult } from './biz/resource/reportDebugMessage';
import { addShortCut$ as biz_shortCut_addShortCut } from './biz/shortCut/addShortCut';
export { IBizShortCutAddShortCutParams, IBizShortCutAddShortCutResult } from './biz/shortCut/addShortCut';
import { getHealthAuthorizationStatus$ as biz_sports_getHealthAuthorizationStatus } from './biz/sports/getHealthAuthorizationStatus';
export { IBizSportsGetHealthAuthorizationStatusParams, IBizSportsGetHealthAuthorizationStatusResult } from './biz/sports/getHealthAuthorizationStatus';
import { getHealthData$ as biz_sports_getHealthData } from './biz/sports/getHealthData';
export { IBizSportsGetHealthDataParams, IBizSportsGetHealthDataResult } from './biz/sports/getHealthData';
import { getHealthDeviceData$ as biz_sports_getHealthDeviceData } from './biz/sports/getHealthDeviceData';
export { IBizSportsGetHealthDeviceDataParams, IBizSportsGetHealthDeviceDataResult } from './biz/sports/getHealthDeviceData';
import { requestHealthAuthorization$ as biz_sports_requestHealthAuthorization } from './biz/sports/requestHealthAuthorization';
export { IBizSportsRequestHealthAuthorizationParams, IBizSportsRequestHealthAuthorizationResult } from './biz/sports/requestHealthAuthorization';
import { closeUnpayOrder$ as biz_store_closeUnpayOrder } from './biz/store/closeUnpayOrder';
export { IBizStoreCloseUnpayOrderParams, IBizStoreCloseUnpayOrderResult } from './biz/store/closeUnpayOrder';
import { createOrder$ as biz_store_createOrder } from './biz/store/createOrder';
export { IBizStoreCreateOrderParams, IBizStoreCreateOrderResult } from './biz/store/createOrder';
import { getPayUrl$ as biz_store_getPayUrl } from './biz/store/getPayUrl';
export { IBizStoreGetPayUrlParams, IBizStoreGetPayUrlResult } from './biz/store/getPayUrl';
import { inquiry$ as biz_store_inquiry } from './biz/store/inquiry';
export { IBizStoreInquiryParams, IBizStoreInquiryResult } from './biz/store/inquiry';
import { isTab$ as biz_tabwindow_isTab } from './biz/tabwindow/isTab';
export { IBizTabwindowIsTabParams, IBizTabwindowIsTabResult } from './biz/tabwindow/isTab';
import { call$ as biz_telephone_call } from './biz/telephone/call';
export { IBizTelephoneCallParams, IBizTelephoneCallResult } from './biz/telephone/call';
import { checkBizCall$ as biz_telephone_checkBizCall } from './biz/telephone/checkBizCall';
export { IBizTelephoneCheckBizCallParams, IBizTelephoneCheckBizCallResult } from './biz/telephone/checkBizCall';
import { quickCallList$ as biz_telephone_quickCallList } from './biz/telephone/quickCallList';
export { IBizTelephoneQuickCallListParams, IBizTelephoneQuickCallListResult } from './biz/telephone/quickCallList';
import { showCallMenu$ as biz_telephone_showCallMenu } from './biz/telephone/showCallMenu';
export { IBizTelephoneShowCallMenuParams, IBizTelephoneShowCallMenuResult } from './biz/telephone/showCallMenu';
import { checkPassword$ as biz_user_checkPassword } from './biz/user/checkPassword';
export { IBizUserCheckPasswordParams, IBizUserCheckPasswordResult } from './biz/user/checkPassword';
import { get$ as biz_user_get } from './biz/user/get';
export { IBizUserGetParams, IBizUserGetResult } from './biz/user/get';
import { callComponent$ as biz_util_callComponent } from './biz/util/callComponent';
export { IBizUtilCallComponentParams, IBizUtilCallComponentResult } from './biz/util/callComponent';
import { checkAuth$ as biz_util_checkAuth } from './biz/util/checkAuth';
export { IBizUtilCheckAuthParams, IBizUtilCheckAuthResult } from './biz/util/checkAuth';
import { chooseImage$ as biz_util_chooseImage } from './biz/util/chooseImage';
export { IBizUtilChooseImageParams, IBizUtilChooseImageResult } from './biz/util/chooseImage';
import { chooseRegion$ as biz_util_chooseRegion } from './biz/util/chooseRegion';
export { IBizUtilChooseRegionParams, IBizUtilChooseRegionResult } from './biz/util/chooseRegion';
import { chosen$ as biz_util_chosen } from './biz/util/chosen';
export { IBizUtilChosenParams, IBizUtilChosenResult } from './biz/util/chosen';
import { clearWebStoreCache$ as biz_util_clearWebStoreCache } from './biz/util/clearWebStoreCache';
export { IBizUtilClearWebStoreCacheParams, IBizUtilClearWebStoreCacheResult } from './biz/util/clearWebStoreCache';
import { closePreviewImage$ as biz_util_closePreviewImage } from './biz/util/closePreviewImage';
export { IBizUtilClosePreviewImageParams, IBizUtilClosePreviewImageResult } from './biz/util/closePreviewImage';
import { compressImage$ as biz_util_compressImage } from './biz/util/compressImage';
export { IBizUtilCompressImageParams, IBizUtilCompressImageResult } from './biz/util/compressImage';
import { datepicker$ as biz_util_datepicker } from './biz/util/datepicker';
export { IBizUtilDatepickerParams, IBizUtilDatepickerResult } from './biz/util/datepicker';
import { datetimepicker$ as biz_util_datetimepicker } from './biz/util/datetimepicker';
export { IBizUtilDatetimepickerParams, IBizUtilDatetimepickerResult } from './biz/util/datetimepicker';
import { decrypt$ as biz_util_decrypt } from './biz/util/decrypt';
export { IBizUtilDecryptParams, IBizUtilDecryptResult } from './biz/util/decrypt';
import { downloadFile$ as biz_util_downloadFile } from './biz/util/downloadFile';
export { IBizUtilDownloadFileParams, IBizUtilDownloadFileResult } from './biz/util/downloadFile';
import { encrypt$ as biz_util_encrypt } from './biz/util/encrypt';
export { IBizUtilEncryptParams, IBizUtilEncryptResult } from './biz/util/encrypt';
import { getPerfInfo$ as biz_util_getPerfInfo } from './biz/util/getPerfInfo';
export { IBizUtilGetPerfInfoParams, IBizUtilGetPerfInfoResult } from './biz/util/getPerfInfo';
import { invokeWorkbench$ as biz_util_invokeWorkbench } from './biz/util/invokeWorkbench';
export { IBizUtilInvokeWorkbenchParams, IBizUtilInvokeWorkbenchResult } from './biz/util/invokeWorkbench';
import { isEnableGPUAcceleration$ as biz_util_isEnableGPUAcceleration } from './biz/util/isEnableGPUAcceleration';
export { IBizUtilIsEnableGPUAccelerationParams, IBizUtilIsEnableGPUAccelerationResult } from './biz/util/isEnableGPUAcceleration';
import { isLocalFileExist$ as biz_util_isLocalFileExist } from './biz/util/isLocalFileExist';
export { IBizUtilIsLocalFileExistParams, IBizUtilIsLocalFileExistResult } from './biz/util/isLocalFileExist';
import { multiSelect$ as biz_util_multiSelect } from './biz/util/multiSelect';
export { IBizUtilMultiSelectParams, IBizUtilMultiSelectResult } from './biz/util/multiSelect';
import { open$ as biz_util_open } from './biz/util/open';
export { IBizUtilOpenParams, IBizUtilOpenResult } from './biz/util/open';
import { openBrowser$ as biz_util_openBrowser } from './biz/util/openBrowser';
export { IBizUtilOpenBrowserParams, IBizUtilOpenBrowserResult } from './biz/util/openBrowser';
import { openDocument$ as biz_util_openDocument } from './biz/util/openDocument';
export { IBizUtilOpenDocumentParams, IBizUtilOpenDocumentResult } from './biz/util/openDocument';
import { openLink$ as biz_util_openLink } from './biz/util/openLink';
export { IBizUtilOpenLinkParams, IBizUtilOpenLinkResult } from './biz/util/openLink';
import { openLocalFile$ as biz_util_openLocalFile } from './biz/util/openLocalFile';
export { IBizUtilOpenLocalFileParams, IBizUtilOpenLocalFileResult } from './biz/util/openLocalFile';
import { openModal$ as biz_util_openModal } from './biz/util/openModal';
export { IBizUtilOpenModalParams, IBizUtilOpenModalResult } from './biz/util/openModal';
import { openSlidePanel$ as biz_util_openSlidePanel } from './biz/util/openSlidePanel';
export { IBizUtilOpenSlidePanelParams, IBizUtilOpenSlidePanelResult } from './biz/util/openSlidePanel';
import { presentWindow$ as biz_util_presentWindow } from './biz/util/presentWindow';
export { IBizUtilPresentWindowParams, IBizUtilPresentWindowResult } from './biz/util/presentWindow';
import { previewImage$ as biz_util_previewImage } from './biz/util/previewImage';
export { IBizUtilPreviewImageParams, IBizUtilPreviewImageResult } from './biz/util/previewImage';
import { previewVideo$ as biz_util_previewVideo } from './biz/util/previewVideo';
export { IBizUtilPreviewVideoParams, IBizUtilPreviewVideoResult } from './biz/util/previewVideo';
import { saveImage$ as biz_util_saveImage } from './biz/util/saveImage';
export { IBizUtilSaveImageParams, IBizUtilSaveImageResult } from './biz/util/saveImage';
import { saveImageToPhotosAlbum$ as biz_util_saveImageToPhotosAlbum } from './biz/util/saveImageToPhotosAlbum';
export { IBizUtilSaveImageToPhotosAlbumParams, IBizUtilSaveImageToPhotosAlbumResult } from './biz/util/saveImageToPhotosAlbum';
import { scan$ as biz_util_scan } from './biz/util/scan';
export { IBizUtilScanParams, IBizUtilScanResult } from './biz/util/scan';
import { scanCard$ as biz_util_scanCard } from './biz/util/scanCard';
export { IBizUtilScanCardParams, IBizUtilScanCardResult } from './biz/util/scanCard';
import { setGPUAcceleration$ as biz_util_setGPUAcceleration } from './biz/util/setGPUAcceleration';
export { IBizUtilSetGPUAccelerationParams, IBizUtilSetGPUAccelerationResult } from './biz/util/setGPUAcceleration';
import { setScreenBrightnessAndKeepOn$ as biz_util_setScreenBrightnessAndKeepOn } from './biz/util/setScreenBrightnessAndKeepOn';
export { IBizUtilSetScreenBrightnessAndKeepOnParams, IBizUtilSetScreenBrightnessAndKeepOnResult } from './biz/util/setScreenBrightnessAndKeepOn';
import { setScreenKeepOn$ as biz_util_setScreenKeepOn } from './biz/util/setScreenKeepOn';
export { IBizUtilSetScreenKeepOnParams, IBizUtilSetScreenKeepOnResult } from './biz/util/setScreenKeepOn';
import { share$ as biz_util_share } from './biz/util/share';
export { IBizUtilShareParams, IBizUtilShareResult } from './biz/util/share';
import { shareImage$ as biz_util_shareImage } from './biz/util/shareImage';
export { IBizUtilShareImageParams, IBizUtilShareImageResult } from './biz/util/shareImage';
import { showAuthGuide$ as biz_util_showAuthGuide } from './biz/util/showAuthGuide';
export { IBizUtilShowAuthGuideParams, IBizUtilShowAuthGuideResult } from './biz/util/showAuthGuide';
import { showSharePanel$ as biz_util_showSharePanel } from './biz/util/showSharePanel';
export { IBizUtilShowSharePanelParams, IBizUtilShowSharePanelResult } from './biz/util/showSharePanel';
import { startDocSign$ as biz_util_startDocSign } from './biz/util/startDocSign';
export { IBizUtilStartDocSignParams, IBizUtilStartDocSignResult } from './biz/util/startDocSign';
import { systemShare$ as biz_util_systemShare } from './biz/util/systemShare';
export { IBizUtilSystemShareParams, IBizUtilSystemShareResult } from './biz/util/systemShare';
import { timepicker$ as biz_util_timepicker } from './biz/util/timepicker';
export { IBizUtilTimepickerParams, IBizUtilTimepickerResult } from './biz/util/timepicker';
import { uploadAttachment$ as biz_util_uploadAttachment } from './biz/util/uploadAttachment';
export { IBizUtilUploadAttachmentParams, IBizUtilUploadAttachmentResult } from './biz/util/uploadAttachment';
import { uploadFile$ as biz_util_uploadFile } from './biz/util/uploadFile';
export { IBizUtilUploadFileParams, IBizUtilUploadFileResult } from './biz/util/uploadFile';
import { uploadImage$ as biz_util_uploadImage } from './biz/util/uploadImage';
export { IBizUtilUploadImageParams, IBizUtilUploadImageResult } from './biz/util/uploadImage';
import { uploadImageFromCamera$ as biz_util_uploadImageFromCamera } from './biz/util/uploadImageFromCamera';
export { IBizUtilUploadImageFromCameraParams, IBizUtilUploadImageFromCameraResult } from './biz/util/uploadImageFromCamera';
import { ut$ as biz_util_ut } from './biz/util/ut';
export { IBizUtilUtParams, IBizUtilUtResult } from './biz/util/ut';
import { openBindIDCard$ as biz_verify_openBindIDCard } from './biz/verify/openBindIDCard';
export { IBizVerifyOpenBindIDCardParams, IBizVerifyOpenBindIDCardResult } from './biz/verify/openBindIDCard';
import { startAuth$ as biz_verify_startAuth } from './biz/verify/startAuth';
export { IBizVerifyStartAuthParams, IBizVerifyStartAuthResult } from './biz/verify/startAuth';
import { makeCall$ as biz_voice_makeCall } from './biz/voice/makeCall';
export { IBizVoiceMakeCallParams, IBizVoiceMakeCallResult } from './biz/voice/makeCall';
import { getWatermarkInfo$ as biz_watermarkCamera_getWatermarkInfo } from './biz/watermarkCamera/getWatermarkInfo';
export { IBizWatermarkCameraGetWatermarkInfoParams, IBizWatermarkCameraGetWatermarkInfoResult } from './biz/watermarkCamera/getWatermarkInfo';
import { setWatermarkInfo$ as biz_watermarkCamera_setWatermarkInfo } from './biz/watermarkCamera/setWatermarkInfo';
export { IBizWatermarkCameraSetWatermarkInfoParams, IBizWatermarkCameraSetWatermarkInfoResult } from './biz/watermarkCamera/setWatermarkInfo';
import { requestAuthCode$ as channel_permission_requestAuthCode } from './channel/permission/requestAuthCode';
export { IChannelPermissionRequestAuthCodeParams, IChannelPermissionRequestAuthCodeResult } from './channel/permission/requestAuthCode';
import { clearShake$ as device_accelerometer_clearShake } from './device/accelerometer/clearShake';
export { IDeviceAccelerometerClearShakeParams, IDeviceAccelerometerClearShakeResult } from './device/accelerometer/clearShake';
import { watchShake$ as device_accelerometer_watchShake } from './device/accelerometer/watchShake';
export { IDeviceAccelerometerWatchShakeParams, IDeviceAccelerometerWatchShakeResult } from './device/accelerometer/watchShake';
import { download$ as device_audio_download } from './device/audio/download';
export { IDeviceAudioDownloadParams, IDeviceAudioDownloadResult } from './device/audio/download';
import { onPlayEnd$ as device_audio_onPlayEnd } from './device/audio/onPlayEnd';
export { IDeviceAudioOnPlayEndParams, IDeviceAudioOnPlayEndResult } from './device/audio/onPlayEnd';
import { onRecordEnd$ as device_audio_onRecordEnd } from './device/audio/onRecordEnd';
export { IDeviceAudioOnRecordEndParams, IDeviceAudioOnRecordEndResult } from './device/audio/onRecordEnd';
import { pause$ as device_audio_pause } from './device/audio/pause';
export { IDeviceAudioPauseParams, IDeviceAudioPauseResult } from './device/audio/pause';
import { play$ as device_audio_play } from './device/audio/play';
export { IDeviceAudioPlayParams, IDeviceAudioPlayResult } from './device/audio/play';
import { resume$ as device_audio_resume } from './device/audio/resume';
export { IDeviceAudioResumeParams, IDeviceAudioResumeResult } from './device/audio/resume';
import { startRecord$ as device_audio_startRecord } from './device/audio/startRecord';
export { IDeviceAudioStartRecordParams, IDeviceAudioStartRecordResult } from './device/audio/startRecord';
import { stop$ as device_audio_stop } from './device/audio/stop';
export { IDeviceAudioStopParams, IDeviceAudioStopResult } from './device/audio/stop';
import { stopRecord$ as device_audio_stopRecord } from './device/audio/stopRecord';
export { IDeviceAudioStopRecordParams, IDeviceAudioStopRecordResult } from './device/audio/stopRecord';
import { translateVoice$ as device_audio_translateVoice } from './device/audio/translateVoice';
export { IDeviceAudioTranslateVoiceParams, IDeviceAudioTranslateVoiceResult } from './device/audio/translateVoice';
import { getBatteryInfo$ as device_base_getBatteryInfo } from './device/base/getBatteryInfo';
export { IDeviceBaseGetBatteryInfoParams, IDeviceBaseGetBatteryInfoResult } from './device/base/getBatteryInfo';
import { getInterface$ as device_base_getInterface } from './device/base/getInterface';
export { IDeviceBaseGetInterfaceParams, IDeviceBaseGetInterfaceResult } from './device/base/getInterface';
import { getPhoneInfo$ as device_base_getPhoneInfo } from './device/base/getPhoneInfo';
export { IDeviceBaseGetPhoneInfoParams, IDeviceBaseGetPhoneInfoResult } from './device/base/getPhoneInfo';
import { getScanWifiListAsync$ as device_base_getScanWifiListAsync } from './device/base/getScanWifiListAsync';
export { IDeviceBaseGetScanWifiListAsyncParams, IDeviceBaseGetScanWifiListAsyncResult } from './device/base/getScanWifiListAsync';
import { getUUID$ as device_base_getUUID } from './device/base/getUUID';
export { IDeviceBaseGetUUIDParams, IDeviceBaseGetUUIDResult } from './device/base/getUUID';
import { getWifiStatus$ as device_base_getWifiStatus } from './device/base/getWifiStatus';
export { IDeviceBaseGetWifiStatusParams, IDeviceBaseGetWifiStatusResult } from './device/base/getWifiStatus';
import { openSystemSetting$ as device_base_openSystemSetting } from './device/base/openSystemSetting';
export { IDeviceBaseOpenSystemSettingParams, IDeviceBaseOpenSystemSettingResult } from './device/base/openSystemSetting';
import { getNetworkType$ as device_connection_getNetworkType } from './device/connection/getNetworkType';
export { IDeviceConnectionGetNetworkTypeParams, IDeviceConnectionGetNetworkTypeResult } from './device/connection/getNetworkType';
import { checkPermission$ as device_geolocation_checkPermission } from './device/geolocation/checkPermission';
export { IDeviceGeolocationCheckPermissionParams, IDeviceGeolocationCheckPermissionResult } from './device/geolocation/checkPermission';
import { get$ as device_geolocation_get } from './device/geolocation/get';
export { IDeviceGeolocationGetParams, IDeviceGeolocationGetResult } from './device/geolocation/get';
import { start$ as device_geolocation_start } from './device/geolocation/start';
export { IDeviceGeolocationStartParams, IDeviceGeolocationStartResult } from './device/geolocation/start';
import { status$ as device_geolocation_status } from './device/geolocation/status';
export { IDeviceGeolocationStatusParams, IDeviceGeolocationStatusResult } from './device/geolocation/status';
import { stop$ as device_geolocation_stop } from './device/geolocation/stop';
export { IDeviceGeolocationStopParams, IDeviceGeolocationStopResult } from './device/geolocation/stop';
import { checkInstalledApps$ as device_launcher_checkInstalledApps } from './device/launcher/checkInstalledApps';
export { IDeviceLauncherCheckInstalledAppsParams, IDeviceLauncherCheckInstalledAppsResult } from './device/launcher/checkInstalledApps';
import { launchApp$ as device_launcher_launchApp } from './device/launcher/launchApp';
export { IDeviceLauncherLaunchAppParams, IDeviceLauncherLaunchAppResult } from './device/launcher/launchApp';
import { nfcRead$ as device_nfc_nfcRead } from './device/nfc/nfcRead';
export { IDeviceNfcNfcReadParams, IDeviceNfcNfcReadResult } from './device/nfc/nfcRead';
import { nfcStop$ as device_nfc_nfcStop } from './device/nfc/nfcStop';
export { IDeviceNfcNfcStopParams, IDeviceNfcNfcStopResult } from './device/nfc/nfcStop';
import { nfcWrite$ as device_nfc_nfcWrite } from './device/nfc/nfcWrite';
export { IDeviceNfcNfcWriteParams, IDeviceNfcNfcWriteResult } from './device/nfc/nfcWrite';
import { actionSheet$ as device_notification_actionSheet } from './device/notification/actionSheet';
export { IDeviceNotificationActionSheetParams, IDeviceNotificationActionSheetResult } from './device/notification/actionSheet';
import { alert$ as device_notification_alert } from './device/notification/alert';
export { IDeviceNotificationAlertParams, IDeviceNotificationAlertResult } from './device/notification/alert';
import { confirm$ as device_notification_confirm } from './device/notification/confirm';
export { IDeviceNotificationConfirmParams, IDeviceNotificationConfirmResult } from './device/notification/confirm';
import { extendModal$ as device_notification_extendModal } from './device/notification/extendModal';
export { IDeviceNotificationExtendModalParams, IDeviceNotificationExtendModalResult } from './device/notification/extendModal';
import { hidePreloader$ as device_notification_hidePreloader } from './device/notification/hidePreloader';
export { IDeviceNotificationHidePreloaderParams, IDeviceNotificationHidePreloaderResult } from './device/notification/hidePreloader';
import { modal$ as device_notification_modal } from './device/notification/modal';
export { IDeviceNotificationModalParams, IDeviceNotificationModalResult } from './device/notification/modal';
import { prompt$ as device_notification_prompt } from './device/notification/prompt';
export { IDeviceNotificationPromptParams, IDeviceNotificationPromptResult } from './device/notification/prompt';
import { showPreloader$ as device_notification_showPreloader } from './device/notification/showPreloader';
export { IDeviceNotificationShowPreloaderParams, IDeviceNotificationShowPreloaderResult } from './device/notification/showPreloader';
import { toast$ as device_notification_toast } from './device/notification/toast';
export { IDeviceNotificationToastParams, IDeviceNotificationToastResult } from './device/notification/toast';
import { vibrate$ as device_notification_vibrate } from './device/notification/vibrate';
export { IDeviceNotificationVibrateParams, IDeviceNotificationVibrateResult } from './device/notification/vibrate';
import { getScreenBrightness$ as device_screen_getScreenBrightness } from './device/screen/getScreenBrightness';
export { IDeviceScreenGetScreenBrightnessParams, IDeviceScreenGetScreenBrightnessResult } from './device/screen/getScreenBrightness';
import { insetAdjust$ as device_screen_insetAdjust } from './device/screen/insetAdjust';
export { IDeviceScreenInsetAdjustParams, IDeviceScreenInsetAdjustResult } from './device/screen/insetAdjust';
import { isScreenReaderEnabled$ as device_screen_isScreenReaderEnabled } from './device/screen/isScreenReaderEnabled';
export { IDeviceScreenIsScreenReaderEnabledParams, IDeviceScreenIsScreenReaderEnabledResult } from './device/screen/isScreenReaderEnabled';
import { resetView$ as device_screen_resetView } from './device/screen/resetView';
export { IDeviceScreenResetViewParams, IDeviceScreenResetViewResult } from './device/screen/resetView';
import { rotateView$ as device_screen_rotateView } from './device/screen/rotateView';
export { IDeviceScreenRotateViewParams, IDeviceScreenRotateViewResult } from './device/screen/rotateView';
import { setScreenBrightness$ as device_screen_setScreenBrightness } from './device/screen/setScreenBrightness';
export { IDeviceScreenSetScreenBrightnessParams, IDeviceScreenSetScreenBrightnessResult } from './device/screen/setScreenBrightness';
import { keepAlive$ as media_voiceRecorder_keepAlive } from './media/voiceRecorder/keepAlive';
export { IMediaVoiceRecorderKeepAliveParams, IMediaVoiceRecorderKeepAliveResult } from './media/voiceRecorder/keepAlive';
import { pause$ as media_voiceRecorder_pause } from './media/voiceRecorder/pause';
export { IMediaVoiceRecorderPauseParams, IMediaVoiceRecorderPauseResult } from './media/voiceRecorder/pause';
import { resume$ as media_voiceRecorder_resume } from './media/voiceRecorder/resume';
export { IMediaVoiceRecorderResumeParams, IMediaVoiceRecorderResumeResult } from './media/voiceRecorder/resume';
import { start$ as media_voiceRecorder_start } from './media/voiceRecorder/start';
export { IMediaVoiceRecorderStartParams, IMediaVoiceRecorderStartResult } from './media/voiceRecorder/start';
import { stop$ as media_voiceRecorder_stop } from './media/voiceRecorder/stop';
export { IMediaVoiceRecorderStopParams, IMediaVoiceRecorderStopResult } from './media/voiceRecorder/stop';
import { loginGovNet$ as net_bjGovApn_loginGovNet } from './net/bjGovApn/loginGovNet';
export { INetBjGovApnLoginGovNetParams, INetBjGovApnLoginGovNetResult } from './net/bjGovApn/loginGovNet';
import { exec$ as runtime_h5nuvabridge_exec } from './runtime/h5nuvabridge/exec';
export { IRuntimeH5nuvabridgeExecParams, IRuntimeH5nuvabridgeExecResult } from './runtime/h5nuvabridge/exec';
import { fetch$ as runtime_message_fetch } from './runtime/message/fetch';
export { IRuntimeMessageFetchParams, IRuntimeMessageFetchResult } from './runtime/message/fetch';
import { post$ as runtime_message_post } from './runtime/message/post';
export { IRuntimeMessagePostParams, IRuntimeMessagePostResult } from './runtime/message/post';
import { getLoadTime$ as runtime_monitor_getLoadTime } from './runtime/monitor/getLoadTime';
export { IRuntimeMonitorGetLoadTimeParams, IRuntimeMonitorGetLoadTimeResult } from './runtime/monitor/getLoadTime';
import { requestAuthCode$ as runtime_permission_requestAuthCode } from './runtime/permission/requestAuthCode';
export { IRuntimePermissionRequestAuthCodeParams, IRuntimePermissionRequestAuthCodeResult } from './runtime/permission/requestAuthCode';
import { requestOperateAuthCode$ as runtime_permission_requestOperateAuthCode } from './runtime/permission/requestOperateAuthCode';
export { IRuntimePermissionRequestOperateAuthCodeParams, IRuntimePermissionRequestOperateAuthCodeResult } from './runtime/permission/requestOperateAuthCode';
import { plain$ as ui_input_plain } from './ui/input/plain';
export { IUiInputPlainParams, IUiInputPlainResult } from './ui/input/plain';
import { addToFloat$ as ui_multitask_addToFloat } from './ui/multitask/addToFloat';
export { IUiMultitaskAddToFloatParams, IUiMultitaskAddToFloatResult } from './ui/multitask/addToFloat';
import { removeFromFloat$ as ui_multitask_removeFromFloat } from './ui/multitask/removeFromFloat';
export { IUiMultitaskRemoveFromFloatParams, IUiMultitaskRemoveFromFloatResult } from './ui/multitask/removeFromFloat';
import { close$ as ui_nav_close } from './ui/nav/close';
export { IUiNavCloseParams, IUiNavCloseResult } from './ui/nav/close';
import { getCurrentId$ as ui_nav_getCurrentId } from './ui/nav/getCurrentId';
export { IUiNavGetCurrentIdParams, IUiNavGetCurrentIdResult } from './ui/nav/getCurrentId';
import { go$ as ui_nav_go } from './ui/nav/go';
export { IUiNavGoParams, IUiNavGoResult } from './ui/nav/go';
import { preload$ as ui_nav_preload } from './ui/nav/preload';
export { IUiNavPreloadParams, IUiNavPreloadResult } from './ui/nav/preload';
import { recycle$ as ui_nav_recycle } from './ui/nav/recycle';
export { IUiNavRecycleParams, IUiNavRecycleResult } from './ui/nav/recycle';
import { setColors$ as ui_progressBar_setColors } from './ui/progressBar/setColors';
export { IUiProgressBarSetColorsParams, IUiProgressBarSetColorsResult } from './ui/progressBar/setColors';
import { disable$ as ui_pullToRefresh_disable } from './ui/pullToRefresh/disable';
export { IUiPullToRefreshDisableParams, IUiPullToRefreshDisableResult } from './ui/pullToRefresh/disable';
import { enable$ as ui_pullToRefresh_enable } from './ui/pullToRefresh/enable';
export { IUiPullToRefreshEnableParams, IUiPullToRefreshEnableResult } from './ui/pullToRefresh/enable';
import { stop$ as ui_pullToRefresh_stop } from './ui/pullToRefresh/stop';
export { IUiPullToRefreshStopParams, IUiPullToRefreshStopResult } from './ui/pullToRefresh/stop';
import { disable$ as ui_webViewBounce_disable } from './ui/webViewBounce/disable';
export { IUiWebViewBounceDisableParams, IUiWebViewBounceDisableResult } from './ui/webViewBounce/disable';
import { enable$ as ui_webViewBounce_enable } from './ui/webViewBounce/enable';
export { IUiWebViewBounceEnableParams, IUiWebViewBounceEnableResult } from './ui/webViewBounce/enable';
import { ExternalChannelPublish$ as union_ExternalChannelPublish } from './union/ExternalChannelPublish';
export { IUnionExternalChannelPublishParams, IUnionExternalChannelPublishResult, ExternalChannelPublish$ as ExternalChannelPublish } from './union/ExternalChannelPublish';
import { addPhoneContact$ as union_addPhoneContact } from './union/addPhoneContact';
export { IUnionAddPhoneContactParams, IUnionAddPhoneContactResult, addPhoneContact$ as addPhoneContact } from './union/addPhoneContact';
import { alert$ as union_alert } from './union/alert';
export { IUnionAlertParams, IUnionAlertResult, alert$ as alert } from './union/alert';
import { callUsers$ as union_callUsers } from './union/callUsers';
export { IUnionCallUsersParams, IUnionCallUsersResult, callUsers$ as callUsers } from './union/callUsers';
import { checkAuth$ as union_checkAuth } from './union/checkAuth';
export { IUnionCheckAuthParams, IUnionCheckAuthResult, checkAuth$ as checkAuth } from './union/checkAuth';
import { checkBizCall$ as union_checkBizCall } from './union/checkBizCall';
export { IUnionCheckBizCallParams, IUnionCheckBizCallResult, checkBizCall$ as checkBizCall } from './union/checkBizCall';
import { chooseChat$ as union_chooseChat } from './union/chooseChat';
export { IUnionChooseChatParams, IUnionChooseChatResult, chooseChat$ as chooseChat } from './union/chooseChat';
import { chooseConversation$ as union_chooseConversation } from './union/chooseConversation';
export { IUnionChooseConversationParams, IUnionChooseConversationResult, chooseConversation$ as chooseConversation } from './union/chooseConversation';
import { chooseDateRangeInCalendar$ as union_chooseDateRangeInCalendar } from './union/chooseDateRangeInCalendar';
export { IUnionChooseDateRangeInCalendarParams, IUnionChooseDateRangeInCalendarResult, chooseDateRangeInCalendar$ as chooseDateRangeInCalendar } from './union/chooseDateRangeInCalendar';
import { chooseDateTime$ as union_chooseDateTime } from './union/chooseDateTime';
export { IUnionChooseDateTimeParams, IUnionChooseDateTimeResult, chooseDateTime$ as chooseDateTime } from './union/chooseDateTime';
import { chooseDepartments$ as union_chooseDepartments } from './union/chooseDepartments';
export { IUnionChooseDepartmentsParams, IUnionChooseDepartmentsResult, chooseDepartments$ as chooseDepartments } from './union/chooseDepartments';
import { chooseDingTalkDir$ as union_chooseDingTalkDir } from './union/chooseDingTalkDir';
export { IUnionChooseDingTalkDirParams, IUnionChooseDingTalkDirResult, chooseDingTalkDir$ as chooseDingTalkDir } from './union/chooseDingTalkDir';
import { chooseDistrict$ as union_chooseDistrict } from './union/chooseDistrict';
export { IUnionChooseDistrictParams, IUnionChooseDistrictResult, chooseDistrict$ as chooseDistrict } from './union/chooseDistrict';
import { chooseExternalUsers$ as union_chooseExternalUsers } from './union/chooseExternalUsers';
export { IUnionChooseExternalUsersParams, IUnionChooseExternalUsersResult, chooseExternalUsers$ as chooseExternalUsers } from './union/chooseExternalUsers';
import { chooseFile$ as union_chooseFile } from './union/chooseFile';
export { IUnionChooseFileParams, IUnionChooseFileResult, chooseFile$ as chooseFile } from './union/chooseFile';
import { chooseHalfDayInCalendar$ as union_chooseHalfDayInCalendar } from './union/chooseHalfDayInCalendar';
export { IUnionChooseHalfDayInCalendarParams, IUnionChooseHalfDayInCalendarResult, chooseHalfDayInCalendar$ as chooseHalfDayInCalendar } from './union/chooseHalfDayInCalendar';
import { chooseImage$ as union_chooseImage } from './union/chooseImage';
export { IUnionChooseImageParams, IUnionChooseImageResult, chooseImage$ as chooseImage } from './union/chooseImage';
import { chooseMedia$ as union_chooseMedia } from './union/chooseMedia';
export { IUnionChooseMediaParams, IUnionChooseMediaResult, chooseMedia$ as chooseMedia } from './union/chooseMedia';
import { chooseOneDayInCalendar$ as union_chooseOneDayInCalendar } from './union/chooseOneDayInCalendar';
export { IUnionChooseOneDayInCalendarParams, IUnionChooseOneDayInCalendarResult, chooseOneDayInCalendar$ as chooseOneDayInCalendar } from './union/chooseOneDayInCalendar';
import { chooseOrg$ as union_chooseOrg } from './union/chooseOrg';
export { IUnionChooseOrgParams, IUnionChooseOrgResult, chooseOrg$ as chooseOrg } from './union/chooseOrg';
import { choosePhonebook$ as union_choosePhonebook } from './union/choosePhonebook';
export { IUnionChoosePhonebookParams, IUnionChoosePhonebookResult, choosePhonebook$ as choosePhonebook } from './union/choosePhonebook';
import { chooseStaffForPC$ as union_chooseStaffForPC } from './union/chooseStaffForPC';
export { IUnionChooseStaffForPCParams, IUnionChooseStaffForPCResult, chooseStaffForPC$ as chooseStaffForPC } from './union/chooseStaffForPC';
import { chooseUserFromList$ as union_chooseUserFromList } from './union/chooseUserFromList';
export { IUnionChooseUserFromListParams, IUnionChooseUserFromListResult, chooseUserFromList$ as chooseUserFromList } from './union/chooseUserFromList';
import { clearShake$ as union_clearShake } from './union/clearShake';
export { IUnionClearShakeParams, IUnionClearShakeResult, clearShake$ as clearShake } from './union/clearShake';
import { closeBluetoothAdapter$ as union_closeBluetoothAdapter } from './union/closeBluetoothAdapter';
export { IUnionCloseBluetoothAdapterParams, IUnionCloseBluetoothAdapterResult, closeBluetoothAdapter$ as closeBluetoothAdapter } from './union/closeBluetoothAdapter';
import { closePage$ as union_closePage } from './union/closePage';
export { IUnionClosePageParams, IUnionClosePageResult, closePage$ as closePage } from './union/closePage';
import { complexChoose$ as union_complexChoose } from './union/complexChoose';
export { IUnionComplexChooseParams, IUnionComplexChooseResult, complexChoose$ as complexChoose } from './union/complexChoose';
import { compressImage$ as union_compressImage } from './union/compressImage';
export { IUnionCompressImageParams, IUnionCompressImageResult, compressImage$ as compressImage } from './union/compressImage';
import { confirm$ as union_confirm } from './union/confirm';
export { IUnionConfirmParams, IUnionConfirmResult, confirm$ as confirm } from './union/confirm';
import { connectBLEDevice$ as union_connectBLEDevice } from './union/connectBLEDevice';
export { IUnionConnectBLEDeviceParams, IUnionConnectBLEDeviceResult, connectBLEDevice$ as connectBLEDevice } from './union/connectBLEDevice';
import { createBLEPeripheralServer$ as union_createBLEPeripheralServer } from './union/createBLEPeripheralServer';
export { IUnionCreateBLEPeripheralServerParams, IUnionCreateBLEPeripheralServerResult, createBLEPeripheralServer$ as createBLEPeripheralServer } from './union/createBLEPeripheralServer';
import { createDing$ as union_createDing } from './union/createDing';
export { IUnionCreateDingParams, IUnionCreateDingResult, createDing$ as createDing } from './union/createDing';
import { createDingForPC$ as union_createDingForPC } from './union/createDingForPC';
export { IUnionCreateDingForPCParams, IUnionCreateDingForPCResult, createDingForPC$ as createDingForPC } from './union/createDingForPC';
import { createGroupChat$ as union_createGroupChat } from './union/createGroupChat';
export { IUnionCreateGroupChatParams, IUnionCreateGroupChatResult, createGroupChat$ as createGroupChat } from './union/createGroupChat';
import { createLiveClassRoom$ as union_createLiveClassRoom } from './union/createLiveClassRoom';
export { IUnionCreateLiveClassRoomParams, IUnionCreateLiveClassRoomResult, createLiveClassRoom$ as createLiveClassRoom } from './union/createLiveClassRoom';
import { createPayOrder$ as union_createPayOrder } from './union/createPayOrder';
export { IUnionCreatePayOrderParams, IUnionCreatePayOrderResult, createPayOrder$ as createPayOrder } from './union/createPayOrder';
import { cropImage$ as union_cropImage } from './union/cropImage';
export { IUnionCropImageParams, IUnionCropImageResult, cropImage$ as cropImage } from './union/cropImage';
import { customChooseUsers$ as union_customChooseUsers } from './union/customChooseUsers';
export { IUnionCustomChooseUsersParams, IUnionCustomChooseUsersResult, customChooseUsers$ as customChooseUsers } from './union/customChooseUsers';
import { datePicker$ as union_datePicker } from './union/datePicker';
export { IUnionDatePickerParams, IUnionDatePickerResult, datePicker$ as datePicker } from './union/datePicker';
import { dateRangePicker$ as union_dateRangePicker } from './union/dateRangePicker';
export { IUnionDateRangePickerParams, IUnionDateRangePickerResult, dateRangePicker$ as dateRangePicker } from './union/dateRangePicker';
import { decrypt$ as union_decrypt } from './union/decrypt';
export { IUnionDecryptParams, IUnionDecryptResult, decrypt$ as decrypt } from './union/decrypt';
import { disablePullDownRefresh$ as union_disablePullDownRefresh } from './union/disablePullDownRefresh';
export { IUnionDisablePullDownRefreshParams, IUnionDisablePullDownRefreshResult, disablePullDownRefresh$ as disablePullDownRefresh } from './union/disablePullDownRefresh';
import { disableWebViewBounce$ as union_disableWebViewBounce } from './union/disableWebViewBounce';
export { IUnionDisableWebViewBounceParams, IUnionDisableWebViewBounceResult, disableWebViewBounce$ as disableWebViewBounce } from './union/disableWebViewBounce';
import { disconnectBLEDevice$ as union_disconnectBLEDevice } from './union/disconnectBLEDevice';
export { IUnionDisconnectBLEDeviceParams, IUnionDisconnectBLEDeviceResult, disconnectBLEDevice$ as disconnectBLEDevice } from './union/disconnectBLEDevice';
import { downloadAudio$ as union_downloadAudio } from './union/downloadAudio';
export { IUnionDownloadAudioParams, IUnionDownloadAudioResult, downloadAudio$ as downloadAudio } from './union/downloadAudio';
import { downloadFile$ as union_downloadFile } from './union/downloadFile';
export { IUnionDownloadFileParams, IUnionDownloadFileResult, downloadFile$ as downloadFile } from './union/downloadFile';
import { editExternalUser$ as union_editExternalUser } from './union/editExternalUser';
export { IUnionEditExternalUserParams, IUnionEditExternalUserResult, editExternalUser$ as editExternalUser } from './union/editExternalUser';
import { editPicture$ as union_editPicture } from './union/editPicture';
export { IUnionEditPictureParams, IUnionEditPictureResult, editPicture$ as editPicture } from './union/editPicture';
import { enablePullDownRefresh$ as union_enablePullDownRefresh } from './union/enablePullDownRefresh';
export { IUnionEnablePullDownRefreshParams, IUnionEnablePullDownRefreshResult, enablePullDownRefresh$ as enablePullDownRefresh } from './union/enablePullDownRefresh';
import { enableWebViewBounce$ as union_enableWebViewBounce } from './union/enableWebViewBounce';
export { IUnionEnableWebViewBounceParams, IUnionEnableWebViewBounceResult, enableWebViewBounce$ as enableWebViewBounce } from './union/enableWebViewBounce';
import { encrypt$ as union_encrypt } from './union/encrypt';
export { IUnionEncryptParams, IUnionEncryptResult, encrypt$ as encrypt } from './union/encrypt';
import { exclusiveLiveCheck$ as union_exclusiveLiveCheck } from './union/exclusiveLiveCheck';
export { IUnionExclusiveLiveCheckParams, IUnionExclusiveLiveCheckResult, exclusiveLiveCheck$ as exclusiveLiveCheck } from './union/exclusiveLiveCheck';
import { generateImageFromCode$ as union_generateImageFromCode } from './union/generateImageFromCode';
export { IUnionGenerateImageFromCodeParams, IUnionGenerateImageFromCodeResult, generateImageFromCode$ as generateImageFromCode } from './union/generateImageFromCode';
import { getAccountType$ as union_getAccountType } from './union/getAccountType';
export { IUnionGetAccountTypeParams, IUnionGetAccountTypeResult, getAccountType$ as getAccountType } from './union/getAccountType';
import { getAdvertisingStatus$ as union_getAdvertisingStatus } from './union/getAdvertisingStatus';
export { IUnionGetAdvertisingStatusParams, IUnionGetAdvertisingStatusResult, getAdvertisingStatus$ as getAdvertisingStatus } from './union/getAdvertisingStatus';
import { getAuthCode$ as union_getAuthCode } from './union/getAuthCode';
export { IUnionGetAuthCodeParams, IUnionGetAuthCodeResult, getAuthCode$ as getAuthCode } from './union/getAuthCode';
import { getAuthCodeV2$ as union_getAuthCodeV2 } from './union/getAuthCodeV2';
export { IUnionGetAuthCodeV2Params, IUnionGetAuthCodeV2Result, getAuthCodeV2$ as getAuthCodeV2 } from './union/getAuthCodeV2';
import { getAuthInfo$ as union_getAuthInfo } from './union/getAuthInfo';
export { IUnionGetAuthInfoParams, IUnionGetAuthInfoResult, getAuthInfo$ as getAuthInfo } from './union/getAuthInfo';
import { getBLEDeviceCharacteristics$ as union_getBLEDeviceCharacteristics } from './union/getBLEDeviceCharacteristics';
export { IUnionGetBLEDeviceCharacteristicsParams, IUnionGetBLEDeviceCharacteristicsResult, getBLEDeviceCharacteristics$ as getBLEDeviceCharacteristics } from './union/getBLEDeviceCharacteristics';
import { getBLEDeviceServices$ as union_getBLEDeviceServices } from './union/getBLEDeviceServices';
export { IUnionGetBLEDeviceServicesParams, IUnionGetBLEDeviceServicesResult, getBLEDeviceServices$ as getBLEDeviceServices } from './union/getBLEDeviceServices';
import { getBatteryInfo$ as union_getBatteryInfo } from './union/getBatteryInfo';
export { IUnionGetBatteryInfoParams, IUnionGetBatteryInfoResult, getBatteryInfo$ as getBatteryInfo } from './union/getBatteryInfo';
import { getBeacons$ as union_getBeacons } from './union/getBeacons';
export { IUnionGetBeaconsParams, IUnionGetBeaconsResult, getBeacons$ as getBeacons } from './union/getBeacons';
import { getBluetoothAdapterState$ as union_getBluetoothAdapterState } from './union/getBluetoothAdapterState';
export { IUnionGetBluetoothAdapterStateParams, IUnionGetBluetoothAdapterStateResult, getBluetoothAdapterState$ as getBluetoothAdapterState } from './union/getBluetoothAdapterState';
import { getBluetoothDevices$ as union_getBluetoothDevices } from './union/getBluetoothDevices';
export { IUnionGetBluetoothDevicesParams, IUnionGetBluetoothDevicesResult, getBluetoothDevices$ as getBluetoothDevices } from './union/getBluetoothDevices';
import { getCachedAPIResponse$ as union_getCachedAPIResponse } from './union/getCachedAPIResponse';
export { IUnionGetCachedAPIResponseParams, IUnionGetCachedAPIResponseResult, getCachedAPIResponse$ as getCachedAPIResponse } from './union/getCachedAPIResponse';
import { getCloudCallInfo$ as union_getCloudCallInfo } from './union/getCloudCallInfo';
export { IUnionGetCloudCallInfoParams, IUnionGetCloudCallInfoResult, getCloudCallInfo$ as getCloudCallInfo } from './union/getCloudCallInfo';
import { getCloudCallList$ as union_getCloudCallList } from './union/getCloudCallList';
export { IUnionGetCloudCallListParams, IUnionGetCloudCallListResult, getCloudCallList$ as getCloudCallList } from './union/getCloudCallList';
import { getCurrentCorpId$ as union_getCurrentCorpId } from './union/getCurrentCorpId';
export { IUnionGetCurrentCorpIdParams, IUnionGetCurrentCorpIdResult, getCurrentCorpId$ as getCurrentCorpId } from './union/getCurrentCorpId';
import { getDeviceId$ as union_getDeviceId } from './union/getDeviceId';
export { IUnionGetDeviceIdParams, IUnionGetDeviceIdResult, getDeviceId$ as getDeviceId } from './union/getDeviceId';
import { getDeviceUUID$ as union_getDeviceUUID } from './union/getDeviceUUID';
export { IUnionGetDeviceUUIDParams, IUnionGetDeviceUUIDResult, getDeviceUUID$ as getDeviceUUID } from './union/getDeviceUUID';
import { getImageInfo$ as union_getImageInfo } from './union/getImageInfo';
export { IUnionGetImageInfoParams, IUnionGetImageInfoResult, getImageInfo$ as getImageInfo } from './union/getImageInfo';
import { getLocatingStatus$ as union_getLocatingStatus } from './union/getLocatingStatus';
export { IUnionGetLocatingStatusParams, IUnionGetLocatingStatusResult, getLocatingStatus$ as getLocatingStatus } from './union/getLocatingStatus';
import { getLocation$ as union_getLocation } from './union/getLocation';
export { IUnionGetLocationParams, IUnionGetLocationResult, getLocation$ as getLocation } from './union/getLocation';
import { getNetworkType$ as union_getNetworkType } from './union/getNetworkType';
export { IUnionGetNetworkTypeParams, IUnionGetNetworkTypeResult, getNetworkType$ as getNetworkType } from './union/getNetworkType';
import { getOperateAuthCode$ as union_getOperateAuthCode } from './union/getOperateAuthCode';
export { IUnionGetOperateAuthCodeParams, IUnionGetOperateAuthCodeResult, getOperateAuthCode$ as getOperateAuthCode } from './union/getOperateAuthCode';
import { getPageTerminateInfo$ as union_getPageTerminateInfo } from './union/getPageTerminateInfo';
export { IUnionGetPageTerminateInfoParams, IUnionGetPageTerminateInfoResult, getPageTerminateInfo$ as getPageTerminateInfo } from './union/getPageTerminateInfo';
import { getScreenBrightness$ as union_getScreenBrightness } from './union/getScreenBrightness';
export { IUnionGetScreenBrightnessParams, IUnionGetScreenBrightnessResult, getScreenBrightness$ as getScreenBrightness } from './union/getScreenBrightness';
import { getStorage$ as union_getStorage } from './union/getStorage';
export { IUnionGetStorageParams, IUnionGetStorageResult, getStorage$ as getStorage } from './union/getStorage';
import { getSystemInfo$ as union_getSystemInfo } from './union/getSystemInfo';
export { IUnionGetSystemInfoParams, IUnionGetSystemInfoResult, getSystemInfo$ as getSystemInfo } from './union/getSystemInfo';
import { getSystemSettings$ as union_getSystemSettings } from './union/getSystemSettings';
export { IUnionGetSystemSettingsParams, IUnionGetSystemSettingsResult, getSystemSettings$ as getSystemSettings } from './union/getSystemSettings';
import { getThirdAppConfCustomData$ as union_getThirdAppConfCustomData } from './union/getThirdAppConfCustomData';
export { IUnionGetThirdAppConfCustomDataParams, IUnionGetThirdAppConfCustomDataResult, getThirdAppConfCustomData$ as getThirdAppConfCustomData } from './union/getThirdAppConfCustomData';
import { getThirdAppUserCustomData$ as union_getThirdAppUserCustomData } from './union/getThirdAppUserCustomData';
export { IUnionGetThirdAppUserCustomDataParams, IUnionGetThirdAppUserCustomDataResult, getThirdAppUserCustomData$ as getThirdAppUserCustomData } from './union/getThirdAppUserCustomData';
import { getTodaysStepCount$ as union_getTodaysStepCount } from './union/getTodaysStepCount';
export { IUnionGetTodaysStepCountParams, IUnionGetTodaysStepCountResult, getTodaysStepCount$ as getTodaysStepCount } from './union/getTodaysStepCount';
import { getTranslateStatus$ as union_getTranslateStatus } from './union/getTranslateStatus';
export { IUnionGetTranslateStatusParams, IUnionGetTranslateStatusResult, getTranslateStatus$ as getTranslateStatus } from './union/getTranslateStatus';
import { getUserExclusiveInfo$ as union_getUserExclusiveInfo } from './union/getUserExclusiveInfo';
export { IUnionGetUserExclusiveInfoParams, IUnionGetUserExclusiveInfoResult, getUserExclusiveInfo$ as getUserExclusiveInfo } from './union/getUserExclusiveInfo';
import { getWifiHotspotStatus$ as union_getWifiHotspotStatus } from './union/getWifiHotspotStatus';
export { IUnionGetWifiHotspotStatusParams, IUnionGetWifiHotspotStatusResult, getWifiHotspotStatus$ as getWifiHotspotStatus } from './union/getWifiHotspotStatus';
import { getWifiStatus$ as union_getWifiStatus } from './union/getWifiStatus';
export { IUnionGetWifiStatusParams, IUnionGetWifiStatusResult, getWifiStatus$ as getWifiStatus } from './union/getWifiStatus';
import { goBackPage$ as union_goBackPage } from './union/goBackPage';
export { IUnionGoBackPageParams, IUnionGoBackPageResult, goBackPage$ as goBackPage } from './union/goBackPage';
import { hideLoading$ as union_hideLoading } from './union/hideLoading';
export { IUnionHideLoadingParams, IUnionHideLoadingResult, hideLoading$ as hideLoading } from './union/hideLoading';
import { hideToast$ as union_hideToast } from './union/hideToast';
export { IUnionHideToastParams, IUnionHideToastResult, hideToast$ as hideToast } from './union/hideToast';
import { isInTabWindow$ as union_isInTabWindow } from './union/isInTabWindow';
export { IUnionIsInTabWindowParams, IUnionIsInTabWindowResult, isInTabWindow$ as isInTabWindow } from './union/isInTabWindow';
import { isLocalFileExist$ as union_isLocalFileExist } from './union/isLocalFileExist';
export { IUnionIsLocalFileExistParams, IUnionIsLocalFileExistResult, isLocalFileExist$ as isLocalFileExist } from './union/isLocalFileExist';
import { isScreenReaderEnabled$ as union_isScreenReaderEnabled } from './union/isScreenReaderEnabled';
export { IUnionIsScreenReaderEnabledParams, IUnionIsScreenReaderEnabledResult, isScreenReaderEnabled$ as isScreenReaderEnabled } from './union/isScreenReaderEnabled';
import { locateInMap$ as union_locateInMap } from './union/locateInMap';
export { IUnionLocateInMapParams, IUnionLocateInMapResult, locateInMap$ as locateInMap } from './union/locateInMap';
import { makeCloudCall$ as union_makeCloudCall } from './union/makeCloudCall';
export { IUnionMakeCloudCallParams, IUnionMakeCloudCallResult, makeCloudCall$ as makeCloudCall } from './union/makeCloudCall';
import { makeVideoConfCall$ as union_makeVideoConfCall } from './union/makeVideoConfCall';
export { IUnionMakeVideoConfCallParams, IUnionMakeVideoConfCallResult, makeVideoConfCall$ as makeVideoConfCall } from './union/makeVideoConfCall';
import { minutesCreateFromVideo$ as union_minutesCreateFromVideo } from './union/minutesCreateFromVideo';
export { IUnionMinutesCreateFromVideoParams, IUnionMinutesCreateFromVideoResult, minutesCreateFromVideo$ as minutesCreateFromVideo } from './union/minutesCreateFromVideo';
import { minutesStart$ as union_minutesStart } from './union/minutesStart';
export { IUnionMinutesStartParams, IUnionMinutesStartResult, minutesStart$ as minutesStart } from './union/minutesStart';
import { minutesUploadVideo$ as union_minutesUploadVideo } from './union/minutesUploadVideo';
export { IUnionMinutesUploadVideoParams, IUnionMinutesUploadVideoResult, minutesUploadVideo$ as minutesUploadVideo } from './union/minutesUploadVideo';
import { minutesViewDetail$ as union_minutesViewDetail } from './union/minutesViewDetail';
export { IUnionMinutesViewDetailParams, IUnionMinutesViewDetailResult, minutesViewDetail$ as minutesViewDetail } from './union/minutesViewDetail';
import { multiSelect$ as union_multiSelect } from './union/multiSelect';
export { IUnionMultiSelectParams, IUnionMultiSelectResult, multiSelect$ as multiSelect } from './union/multiSelect';
import { navigateBackPage$ as union_navigateBackPage } from './union/navigateBackPage';
export { IUnionNavigateBackPageParams, IUnionNavigateBackPageResult, navigateBackPage$ as navigateBackPage } from './union/navigateBackPage';
import { navigateToPage$ as union_navigateToPage } from './union/navigateToPage';
export { IUnionNavigateToPageParams, IUnionNavigateToPageResult, navigateToPage$ as navigateToPage } from './union/navigateToPage';
import { nfcReadCardNumber$ as union_nfcReadCardNumber } from './union/nfcReadCardNumber';
export { IUnionNfcReadCardNumberParams, IUnionNfcReadCardNumberResult, nfcReadCardNumber$ as nfcReadCardNumber } from './union/nfcReadCardNumber';
import { notifyBLECharacteristicValueChange$ as union_notifyBLECharacteristicValueChange } from './union/notifyBLECharacteristicValueChange';
export { IUnionNotifyBLECharacteristicValueChangeParams, IUnionNotifyBLECharacteristicValueChangeResult, notifyBLECharacteristicValueChange$ as notifyBLECharacteristicValueChange } from './union/notifyBLECharacteristicValueChange';
import { notifyTranslateEvent$ as union_notifyTranslateEvent } from './union/notifyTranslateEvent';
export { IUnionNotifyTranslateEventParams, IUnionNotifyTranslateEventResult, notifyTranslateEvent$ as notifyTranslateEvent } from './union/notifyTranslateEvent';
import { offBLECharacteristicValueChange$ as union_offBLECharacteristicValueChange } from './union/offBLECharacteristicValueChange';
export { IUnionOffBLECharacteristicValueChangeParams, IUnionOffBLECharacteristicValueChangeResult, offBLECharacteristicValueChange$ as offBLECharacteristicValueChange } from './union/offBLECharacteristicValueChange';
import { offBLEConnectionStateChanged$ as union_offBLEConnectionStateChanged } from './union/offBLEConnectionStateChanged';
export { IUnionOffBLEConnectionStateChangedParams, IUnionOffBLEConnectionStateChangedResult, offBLEConnectionStateChanged$ as offBLEConnectionStateChanged } from './union/offBLEConnectionStateChanged';
import { offBluetoothAdapterStateChange$ as union_offBluetoothAdapterStateChange } from './union/offBluetoothAdapterStateChange';
export { IUnionOffBluetoothAdapterStateChangeParams, IUnionOffBluetoothAdapterStateChangeResult, offBluetoothAdapterStateChange$ as offBluetoothAdapterStateChange } from './union/offBluetoothAdapterStateChange';
import { offBluetoothDeviceFound$ as union_offBluetoothDeviceFound } from './union/offBluetoothDeviceFound';
export { IUnionOffBluetoothDeviceFoundParams, IUnionOffBluetoothDeviceFoundResult, offBluetoothDeviceFound$ as offBluetoothDeviceFound } from './union/offBluetoothDeviceFound';
import { onBLECharacteristicValueChange$ as union_onBLECharacteristicValueChange } from './union/onBLECharacteristicValueChange';
export { IUnionOnBLECharacteristicValueChangeParams, IUnionOnBLECharacteristicValueChangeResult, onBLECharacteristicValueChange$ as onBLECharacteristicValueChange } from './union/onBLECharacteristicValueChange';
import { onBLEConnectionStateChanged$ as union_onBLEConnectionStateChanged } from './union/onBLEConnectionStateChanged';
export { IUnionOnBLEConnectionStateChangedParams, IUnionOnBLEConnectionStateChangedResult, onBLEConnectionStateChanged$ as onBLEConnectionStateChanged } from './union/onBLEConnectionStateChanged';
import { onBLEPeripheralCharacteristicReadRequest$ as union_onBLEPeripheralCharacteristicReadRequest } from './union/onBLEPeripheralCharacteristicReadRequest';
export { IUnionOnBLEPeripheralCharacteristicReadRequestParams, IUnionOnBLEPeripheralCharacteristicReadRequestResult, onBLEPeripheralCharacteristicReadRequest$ as onBLEPeripheralCharacteristicReadRequest } from './union/onBLEPeripheralCharacteristicReadRequest';
import { onBLEPeripheralCharacteristicWriteRequest$ as union_onBLEPeripheralCharacteristicWriteRequest } from './union/onBLEPeripheralCharacteristicWriteRequest';
export { IUnionOnBLEPeripheralCharacteristicWriteRequestParams, IUnionOnBLEPeripheralCharacteristicWriteRequestResult, onBLEPeripheralCharacteristicWriteRequest$ as onBLEPeripheralCharacteristicWriteRequest } from './union/onBLEPeripheralCharacteristicWriteRequest';
import { onBLEPeripheralConnectionStateChanged$ as union_onBLEPeripheralConnectionStateChanged } from './union/onBLEPeripheralConnectionStateChanged';
export { IUnionOnBLEPeripheralConnectionStateChangedParams, IUnionOnBLEPeripheralConnectionStateChangedResult, onBLEPeripheralConnectionStateChanged$ as onBLEPeripheralConnectionStateChanged } from './union/onBLEPeripheralConnectionStateChanged';
import { onBeaconServiceChange$ as union_onBeaconServiceChange } from './union/onBeaconServiceChange';
export { IUnionOnBeaconServiceChangeParams, IUnionOnBeaconServiceChangeResult, onBeaconServiceChange$ as onBeaconServiceChange } from './union/onBeaconServiceChange';
import { onBeaconUpdate$ as union_onBeaconUpdate } from './union/onBeaconUpdate';
export { IUnionOnBeaconUpdateParams, IUnionOnBeaconUpdateResult, onBeaconUpdate$ as onBeaconUpdate } from './union/onBeaconUpdate';
import { onBluetoothAdapterStateChange$ as union_onBluetoothAdapterStateChange } from './union/onBluetoothAdapterStateChange';
export { IUnionOnBluetoothAdapterStateChangeParams, IUnionOnBluetoothAdapterStateChangeResult, onBluetoothAdapterStateChange$ as onBluetoothAdapterStateChange } from './union/onBluetoothAdapterStateChange';
import { onBluetoothDeviceFound$ as union_onBluetoothDeviceFound } from './union/onBluetoothDeviceFound';
export { IUnionOnBluetoothDeviceFoundParams, IUnionOnBluetoothDeviceFoundResult, onBluetoothDeviceFound$ as onBluetoothDeviceFound } from './union/onBluetoothDeviceFound';
import { onPlayAudioEnd$ as union_onPlayAudioEnd } from './union/onPlayAudioEnd';
export { IUnionOnPlayAudioEndParams, IUnionOnPlayAudioEndResult, onPlayAudioEnd$ as onPlayAudioEnd } from './union/onPlayAudioEnd';
import { onRecordEnd$ as union_onRecordEnd } from './union/onRecordEnd';
export { IUnionOnRecordEndParams, IUnionOnRecordEndResult, onRecordEnd$ as onRecordEnd } from './union/onRecordEnd';
import { openBluetoothAdapter$ as union_openBluetoothAdapter } from './union/openBluetoothAdapter';
export { IUnionOpenBluetoothAdapterParams, IUnionOpenBluetoothAdapterResult, openBluetoothAdapter$ as openBluetoothAdapter } from './union/openBluetoothAdapter';
import { openChatByChatId$ as union_openChatByChatId } from './union/openChatByChatId';
export { IUnionOpenChatByChatIdParams, IUnionOpenChatByChatIdResult, openChatByChatId$ as openChatByChatId } from './union/openChatByChatId';
import { openChatByConversationId$ as union_openChatByConversationId } from './union/openChatByConversationId';
export { IUnionOpenChatByConversationIdParams, IUnionOpenChatByConversationIdResult, openChatByConversationId$ as openChatByConversationId } from './union/openChatByConversationId';
import { openChatByUserId$ as union_openChatByUserId } from './union/openChatByUserId';
export { IUnionOpenChatByUserIdParams, IUnionOpenChatByUserIdResult, openChatByUserId$ as openChatByUserId } from './union/openChatByUserId';
import { openDocument$ as union_openDocument } from './union/openDocument';
export { IUnionOpenDocumentParams, IUnionOpenDocumentResult, openDocument$ as openDocument } from './union/openDocument';
import { openLink$ as union_openLink } from './union/openLink';
export { IUnionOpenLinkParams, IUnionOpenLinkResult, openLink$ as openLink } from './union/openLink';
import { openLocalFile$ as union_openLocalFile } from './union/openLocalFile';
export { IUnionOpenLocalFileParams, IUnionOpenLocalFileResult, openLocalFile$ as openLocalFile } from './union/openLocalFile';
import { openLocation$ as union_openLocation } from './union/openLocation';
export { IUnionOpenLocationParams, IUnionOpenLocationResult, openLocation$ as openLocation } from './union/openLocation';
import { openMicroApp$ as union_openMicroApp } from './union/openMicroApp';
export { IUnionOpenMicroAppParams, IUnionOpenMicroAppResult, openMicroApp$ as openMicroApp } from './union/openMicroApp';
import { openPageInMicroApp$ as union_openPageInMicroApp } from './union/openPageInMicroApp';
export { IUnionOpenPageInMicroAppParams, IUnionOpenPageInMicroAppResult, openPageInMicroApp$ as openPageInMicroApp } from './union/openPageInMicroApp';
import { openPageInModalForPC$ as union_openPageInModalForPC } from './union/openPageInModalForPC';
export { IUnionOpenPageInModalForPCParams, IUnionOpenPageInModalForPCResult, openPageInModalForPC$ as openPageInModalForPC } from './union/openPageInModalForPC';
import { openPageInSlidePanelForPC$ as union_openPageInSlidePanelForPC } from './union/openPageInSlidePanelForPC';
export { IUnionOpenPageInSlidePanelForPCParams, IUnionOpenPageInSlidePanelForPCResult, openPageInSlidePanelForPC$ as openPageInSlidePanelForPC } from './union/openPageInSlidePanelForPC';
import { openPageInWorkBenchForPC$ as union_openPageInWorkBenchForPC } from './union/openPageInWorkBenchForPC';
export { IUnionOpenPageInWorkBenchForPCParams, IUnionOpenPageInWorkBenchForPCResult, openPageInWorkBenchForPC$ as openPageInWorkBenchForPC } from './union/openPageInWorkBenchForPC';
import { pauseAudio$ as union_pauseAudio } from './union/pauseAudio';
export { IUnionPauseAudioParams, IUnionPauseAudioResult, pauseAudio$ as pauseAudio } from './union/pauseAudio';
import { playAudio$ as union_playAudio } from './union/playAudio';
export { IUnionPlayAudioParams, IUnionPlayAudioResult, playAudio$ as playAudio } from './union/playAudio';
import { popGesture$ as union_popGesture } from './union/popGesture';
export { IUnionPopGestureParams, IUnionPopGestureResult, popGesture$ as popGesture } from './union/popGesture';
import { previewFileInDingTalk$ as union_previewFileInDingTalk } from './union/previewFileInDingTalk';
export { IUnionPreviewFileInDingTalkParams, IUnionPreviewFileInDingTalkResult, previewFileInDingTalk$ as previewFileInDingTalk } from './union/previewFileInDingTalk';
import { previewImage$ as union_previewImage } from './union/previewImage';
export { IUnionPreviewImageParams, IUnionPreviewImageResult, previewImage$ as previewImage } from './union/previewImage';
import { previewImagesInDingTalkBatch$ as union_previewImagesInDingTalkBatch } from './union/previewImagesInDingTalkBatch';
export { IUnionPreviewImagesInDingTalkBatchParams, IUnionPreviewImagesInDingTalkBatchResult, previewImagesInDingTalkBatch$ as previewImagesInDingTalkBatch } from './union/previewImagesInDingTalkBatch';
import { previewMedia$ as union_previewMedia } from './union/previewMedia';
export { IUnionPreviewMediaParams, IUnionPreviewMediaResult, previewMedia$ as previewMedia } from './union/previewMedia';
import { prompt$ as union_prompt } from './union/prompt';
export { IUnionPromptParams, IUnionPromptResult, prompt$ as prompt } from './union/prompt';
import { quickCallList$ as union_quickCallList } from './union/quickCallList';
export { IUnionQuickCallListParams, IUnionQuickCallListResult, quickCallList$ as quickCallList } from './union/quickCallList';
import { quitPage$ as union_quitPage } from './union/quitPage';
export { IUnionQuitPageParams, IUnionQuitPageResult, quitPage$ as quitPage } from './union/quitPage';
import { readBLECharacteristicValue$ as union_readBLECharacteristicValue } from './union/readBLECharacteristicValue';
export { IUnionReadBLECharacteristicValueParams, IUnionReadBLECharacteristicValueResult, readBLECharacteristicValue$ as readBLECharacteristicValue } from './union/readBLECharacteristicValue';
import { readNFC$ as union_readNFC } from './union/readNFC';
export { IUnionReadNFCParams, IUnionReadNFCResult, readNFC$ as readNFC } from './union/readNFC';
import { removeCachedAPIResponse$ as union_removeCachedAPIResponse } from './union/removeCachedAPIResponse';
export { IUnionRemoveCachedAPIResponseParams, IUnionRemoveCachedAPIResponseResult, removeCachedAPIResponse$ as removeCachedAPIResponse } from './union/removeCachedAPIResponse';
import { removeStorage$ as union_removeStorage } from './union/removeStorage';
export { IUnionRemoveStorageParams, IUnionRemoveStorageResult, removeStorage$ as removeStorage } from './union/removeStorage';
import { replacePage$ as union_replacePage } from './union/replacePage';
export { IUnionReplacePageParams, IUnionReplacePageResult, replacePage$ as replacePage } from './union/replacePage';
import { requestAuthCode$ as union_requestAuthCode } from './union/requestAuthCode';
export { IUnionRequestAuthCodeParams, IUnionRequestAuthCodeResult, requestAuthCode$ as requestAuthCode } from './union/requestAuthCode';
import { requestMoneySubmmitOrder$ as union_requestMoneySubmmitOrder } from './union/requestMoneySubmmitOrder';
export { IUnionRequestMoneySubmmitOrderParams, IUnionRequestMoneySubmmitOrderResult, requestMoneySubmmitOrder$ as requestMoneySubmmitOrder } from './union/requestMoneySubmmitOrder';
import { resetScreenView$ as union_resetScreenView } from './union/resetScreenView';
export { IUnionResetScreenViewParams, IUnionResetScreenViewResult, resetScreenView$ as resetScreenView } from './union/resetScreenView';
import { resumeAudio$ as union_resumeAudio } from './union/resumeAudio';
export { IUnionResumeAudioParams, IUnionResumeAudioResult, resumeAudio$ as resumeAudio } from './union/resumeAudio';
import { rotateScreenView$ as union_rotateScreenView } from './union/rotateScreenView';
export { IUnionRotateScreenViewParams, IUnionRotateScreenViewResult, rotateScreenView$ as rotateScreenView } from './union/rotateScreenView';
import { rsa$ as union_rsa } from './union/rsa';
export { IUnionRsaParams, IUnionRsaResult, rsa$ as rsa } from './union/rsa';
import { saveFileToDingTalk$ as union_saveFileToDingTalk } from './union/saveFileToDingTalk';
export { IUnionSaveFileToDingTalkParams, IUnionSaveFileToDingTalkResult, saveFileToDingTalk$ as saveFileToDingTalk } from './union/saveFileToDingTalk';
import { saveImageToPhotosAlbum$ as union_saveImageToPhotosAlbum } from './union/saveImageToPhotosAlbum';
export { IUnionSaveImageToPhotosAlbumParams, IUnionSaveImageToPhotosAlbumResult, saveImageToPhotosAlbum$ as saveImageToPhotosAlbum } from './union/saveImageToPhotosAlbum';
import { saveVideoToPhotosAlbum$ as union_saveVideoToPhotosAlbum } from './union/saveVideoToPhotosAlbum';
export { IUnionSaveVideoToPhotosAlbumParams, IUnionSaveVideoToPhotosAlbumResult, saveVideoToPhotosAlbum$ as saveVideoToPhotosAlbum } from './union/saveVideoToPhotosAlbum';
import { scan$ as union_scan } from './union/scan';
export { IUnionScanParams, IUnionScanResult, scan$ as scan } from './union/scan';
import { scanCard$ as union_scanCard } from './union/scanCard';
export { IUnionScanCardParams, IUnionScanCardResult, scanCard$ as scanCard } from './union/scanCard';
import { searchMap$ as union_searchMap } from './union/searchMap';
export { IUnionSearchMapParams, IUnionSearchMapResult, searchMap$ as searchMap } from './union/searchMap';
import { setClipboard$ as union_setClipboard } from './union/setClipboard';
export { IUnionSetClipboardParams, IUnionSetClipboardResult, setClipboard$ as setClipboard } from './union/setClipboard';
import { setGestures$ as union_setGestures } from './union/setGestures';
export { IUnionSetGesturesParams, IUnionSetGesturesResult, setGestures$ as setGestures } from './union/setGestures';
import { setKeepScreenOn$ as union_setKeepScreenOn } from './union/setKeepScreenOn';
export { IUnionSetKeepScreenOnParams, IUnionSetKeepScreenOnResult, setKeepScreenOn$ as setKeepScreenOn } from './union/setKeepScreenOn';
import { setNavigationIcon$ as union_setNavigationIcon } from './union/setNavigationIcon';
export { IUnionSetNavigationIconParams, IUnionSetNavigationIconResult, setNavigationIcon$ as setNavigationIcon } from './union/setNavigationIcon';
import { setNavigationLeft$ as union_setNavigationLeft } from './union/setNavigationLeft';
export { IUnionSetNavigationLeftParams, IUnionSetNavigationLeftResult, setNavigationLeft$ as setNavigationLeft } from './union/setNavigationLeft';
import { setNavigationTitle$ as union_setNavigationTitle } from './union/setNavigationTitle';
export { IUnionSetNavigationTitleParams, IUnionSetNavigationTitleResult, setNavigationTitle$ as setNavigationTitle } from './union/setNavigationTitle';
import { setScreenBrightness$ as union_setScreenBrightness } from './union/setScreenBrightness';
export { IUnionSetScreenBrightnessParams, IUnionSetScreenBrightnessResult, setScreenBrightness$ as setScreenBrightness } from './union/setScreenBrightness';
import { setStorage$ as union_setStorage } from './union/setStorage';
export { IUnionSetStorageParams, IUnionSetStorageResult, setStorage$ as setStorage } from './union/setStorage';
import { share$ as union_share } from './union/share';
export { IUnionShareParams, IUnionShareResult, share$ as share } from './union/share';
import { showActionSheet$ as union_showActionSheet } from './union/showActionSheet';
export { IUnionShowActionSheetParams, IUnionShowActionSheetResult, showActionSheet$ as showActionSheet } from './union/showActionSheet';
import { showAuthGuide$ as union_showAuthGuide } from './union/showAuthGuide';
export { IUnionShowAuthGuideParams, IUnionShowAuthGuideResult, showAuthGuide$ as showAuthGuide } from './union/showAuthGuide';
import { showCallMenu$ as union_showCallMenu } from './union/showCallMenu';
export { IUnionShowCallMenuParams, IUnionShowCallMenuResult, showCallMenu$ as showCallMenu } from './union/showCallMenu';
import { showLoading$ as union_showLoading } from './union/showLoading';
export { IUnionShowLoadingParams, IUnionShowLoadingResult, showLoading$ as showLoading } from './union/showLoading';
import { showModal$ as union_showModal } from './union/showModal';
export { IUnionShowModalParams, IUnionShowModalResult, showModal$ as showModal } from './union/showModal';
import { showSharePanel$ as union_showSharePanel } from './union/showSharePanel';
export { IUnionShowSharePanelParams, IUnionShowSharePanelResult, showSharePanel$ as showSharePanel } from './union/showSharePanel';
import { showToast$ as union_showToast } from './union/showToast';
export { IUnionShowToastParams, IUnionShowToastResult, showToast$ as showToast } from './union/showToast';
import { singleSelect$ as union_singleSelect } from './union/singleSelect';
export { IUnionSingleSelectParams, IUnionSingleSelectResult, singleSelect$ as singleSelect } from './union/singleSelect';
import { startAdvertising$ as union_startAdvertising } from './union/startAdvertising';
export { IUnionStartAdvertisingParams, IUnionStartAdvertisingResult, startAdvertising$ as startAdvertising } from './union/startAdvertising';
import { startBeaconDiscovery$ as union_startBeaconDiscovery } from './union/startBeaconDiscovery';
export { IUnionStartBeaconDiscoveryParams, IUnionStartBeaconDiscoveryResult, startBeaconDiscovery$ as startBeaconDiscovery } from './union/startBeaconDiscovery';
import { startBluetoothDevicesDiscovery$ as union_startBluetoothDevicesDiscovery } from './union/startBluetoothDevicesDiscovery';
export { IUnionStartBluetoothDevicesDiscoveryParams, IUnionStartBluetoothDevicesDiscoveryResult, startBluetoothDevicesDiscovery$ as startBluetoothDevicesDiscovery } from './union/startBluetoothDevicesDiscovery';
import { startDingerRecord$ as union_startDingerRecord } from './union/startDingerRecord';
export { IUnionStartDingerRecordParams, IUnionStartDingerRecordResult, startDingerRecord$ as startDingerRecord } from './union/startDingerRecord';
import { startLocating$ as union_startLocating } from './union/startLocating';
export { IUnionStartLocatingParams, IUnionStartLocatingResult, startLocating$ as startLocating } from './union/startLocating';
import { startRecord$ as union_startRecord } from './union/startRecord';
export { IUnionStartRecordParams, IUnionStartRecordResult, startRecord$ as startRecord } from './union/startRecord';
import { stopAdvertising$ as union_stopAdvertising } from './union/stopAdvertising';
export { IUnionStopAdvertisingParams, IUnionStopAdvertisingResult, stopAdvertising$ as stopAdvertising } from './union/stopAdvertising';
import { stopAudio$ as union_stopAudio } from './union/stopAudio';
export { IUnionStopAudioParams, IUnionStopAudioResult, stopAudio$ as stopAudio } from './union/stopAudio';
import { stopBeaconDiscovery$ as union_stopBeaconDiscovery } from './union/stopBeaconDiscovery';
export { IUnionStopBeaconDiscoveryParams, IUnionStopBeaconDiscoveryResult, stopBeaconDiscovery$ as stopBeaconDiscovery } from './union/stopBeaconDiscovery';
import { stopBluetoothDevicesDiscovery$ as union_stopBluetoothDevicesDiscovery } from './union/stopBluetoothDevicesDiscovery';
export { IUnionStopBluetoothDevicesDiscoveryParams, IUnionStopBluetoothDevicesDiscoveryResult, stopBluetoothDevicesDiscovery$ as stopBluetoothDevicesDiscovery } from './union/stopBluetoothDevicesDiscovery';
import { stopDingerRecord$ as union_stopDingerRecord } from './union/stopDingerRecord';
export { IUnionStopDingerRecordParams, IUnionStopDingerRecordResult, stopDingerRecord$ as stopDingerRecord } from './union/stopDingerRecord';
import { stopLocating$ as union_stopLocating } from './union/stopLocating';
export { IUnionStopLocatingParams, IUnionStopLocatingResult, stopLocating$ as stopLocating } from './union/stopLocating';
import { stopPullDownRefresh$ as union_stopPullDownRefresh } from './union/stopPullDownRefresh';
export { IUnionStopPullDownRefreshParams, IUnionStopPullDownRefreshResult, stopPullDownRefresh$ as stopPullDownRefresh } from './union/stopPullDownRefresh';
import { stopRecord$ as union_stopRecord } from './union/stopRecord';
export { IUnionStopRecordParams, IUnionStopRecordResult, stopRecord$ as stopRecord } from './union/stopRecord';
import { subscribe$ as union_subscribe } from './union/subscribe';
export { IUnionSubscribeParams, IUnionSubscribeResult, subscribe$ as subscribe } from './union/subscribe';
import { timePicker$ as union_timePicker } from './union/timePicker';
export { IUnionTimePickerParams, IUnionTimePickerResult, timePicker$ as timePicker } from './union/timePicker';
import { translate$ as union_translate } from './union/translate';
export { IUnionTranslateParams, IUnionTranslateResult, translate$ as translate } from './union/translate';
import { translateVoice$ as union_translateVoice } from './union/translateVoice';
export { IUnionTranslateVoiceParams, IUnionTranslateVoiceResult, translateVoice$ as translateVoice } from './union/translateVoice';
import { uploadAttachmentToDingTalk$ as union_uploadAttachmentToDingTalk } from './union/uploadAttachmentToDingTalk';
export { IUnionUploadAttachmentToDingTalkParams, IUnionUploadAttachmentToDingTalkResult, uploadAttachmentToDingTalk$ as uploadAttachmentToDingTalk } from './union/uploadAttachmentToDingTalk';
import { uploadFile$ as union_uploadFile } from './union/uploadFile';
export { IUnionUploadFileParams, IUnionUploadFileResult, uploadFile$ as uploadFile } from './union/uploadFile';
import { vibrate$ as union_vibrate } from './union/vibrate';
export { IUnionVibrateParams, IUnionVibrateResult, vibrate$ as vibrate } from './union/vibrate';
import { watchShake$ as union_watchShake } from './union/watchShake';
export { IUnionWatchShakeParams, IUnionWatchShakeResult, watchShake$ as watchShake } from './union/watchShake';
import { writeBLECharacteristicValue$ as union_writeBLECharacteristicValue } from './union/writeBLECharacteristicValue';
export { IUnionWriteBLECharacteristicValueParams, IUnionWriteBLECharacteristicValueResult, writeBLECharacteristicValue$ as writeBLECharacteristicValue } from './union/writeBLECharacteristicValue';
import { writeBLEPeripheralCharacteristicValue$ as union_writeBLEPeripheralCharacteristicValue } from './union/writeBLEPeripheralCharacteristicValue';
export { IUnionWriteBLEPeripheralCharacteristicValueParams, IUnionWriteBLEPeripheralCharacteristicValueResult, writeBLEPeripheralCharacteristicValue$ as writeBLEPeripheralCharacteristicValue } from './union/writeBLEPeripheralCharacteristicValue';
import { writeNFC$ as union_writeNFC } from './union/writeNFC';
export { IUnionWriteNFCParams, IUnionWriteNFCResult, writeNFC$ as writeNFC } from './union/writeNFC';
import { getItem$ as util_domainStorage_getItem } from './util/domainStorage/getItem';
export { IUtilDomainStorageGetItemParams, IUtilDomainStorageGetItemResult } from './util/domainStorage/getItem';
import { getStorageInfo$ as util_domainStorage_getStorageInfo } from './util/domainStorage/getStorageInfo';
export { IUtilDomainStorageGetStorageInfoParams, IUtilDomainStorageGetStorageInfoResult } from './util/domainStorage/getStorageInfo';
import { removeItem$ as util_domainStorage_removeItem } from './util/domainStorage/removeItem';
export { IUtilDomainStorageRemoveItemParams, IUtilDomainStorageRemoveItemResult } from './util/domainStorage/removeItem';
import { setItem$ as util_domainStorage_setItem } from './util/domainStorage/setItem';
export { IUtilDomainStorageSetItemParams, IUtilDomainStorageSetItemResult } from './util/domainStorage/setItem';
import { getData$ as util_openTemporary_getData } from './util/openTemporary/getData';
export { IUtilOpenTemporaryGetDataParams, IUtilOpenTemporaryGetDataResult } from './util/openTemporary/getData';
export declare const apiObj: {
    biz: {
        ATMBle: {
            beaconPicker: typeof biz_ATMBle_beaconPicker;
            detectFace: typeof biz_ATMBle_detectFace;
            detectFaceFullScreen: typeof biz_ATMBle_detectFaceFullScreen;
            exclusiveLiveCheck: typeof biz_ATMBle_exclusiveLiveCheck;
            faceManager: typeof biz_ATMBle_faceManager;
            punchModePicker: typeof biz_ATMBle_punchModePicker;
        };
        alipay: {
            bindAlipay: typeof biz_alipay_bindAlipay;
            openAuth: typeof biz_alipay_openAuth;
            pay: typeof biz_alipay_pay;
        };
        attend: {
            getLBSWua: typeof biz_attend_getLBSWua;
        };
        auth: {
            openAccountPwdLoginPage: typeof biz_auth_openAccountPwdLoginPage;
            requestAuthInfo: typeof biz_auth_requestAuthInfo;
        };
        calendar: {
            chooseDateTime: typeof biz_calendar_chooseDateTime;
            chooseHalfDay: typeof biz_calendar_chooseHalfDay;
            chooseInterval: typeof biz_calendar_chooseInterval;
            chooseOneDay: typeof biz_calendar_chooseOneDay;
        };
        chat: {
            chooseConversationByCorpId: typeof biz_chat_chooseConversationByCorpId;
            collectSticker: typeof biz_chat_collectSticker;
            createSceneGroup: typeof biz_chat_createSceneGroup;
            getRealmCid: typeof biz_chat_getRealmCid;
            locationChatMessage: typeof biz_chat_locationChatMessage;
            openSingleChat: typeof biz_chat_openSingleChat;
            pickConversation: typeof biz_chat_pickConversation;
            sendEmotion: typeof biz_chat_sendEmotion;
            toConversation: typeof biz_chat_toConversation;
            toConversationByOpenConversationId: typeof biz_chat_toConversationByOpenConversationId;
        };
        clipboardData: {
            setData: typeof biz_clipboardData_setData;
        };
        conference: {
            createCloudCall: typeof biz_conference_createCloudCall;
            getCloudCallInfo: typeof biz_conference_getCloudCallInfo;
            getCloudCallList: typeof biz_conference_getCloudCallList;
            videoConfCall: typeof biz_conference_videoConfCall;
        };
        contact: {
            choose: typeof biz_contact_choose;
            chooseMobileContacts: typeof biz_contact_chooseMobileContacts;
            complexPicker: typeof biz_contact_complexPicker;
            createGroup: typeof biz_contact_createGroup;
            departmentsPicker: typeof biz_contact_departmentsPicker;
            externalComplexPicker: typeof biz_contact_externalComplexPicker;
            externalEditForm: typeof biz_contact_externalEditForm;
            rolesPicker: typeof biz_contact_rolesPicker;
            setRule: typeof biz_contact_setRule;
        };
        cspace: {
            chooseSpaceDir: typeof biz_cspace_chooseSpaceDir;
            delete: typeof biz_cspace_delete;
            preview: typeof biz_cspace_preview;
            previewDentryImages: typeof biz_cspace_previewDentryImages;
            saveFile: typeof biz_cspace_saveFile;
        };
        customContact: {
            choose: typeof biz_customContact_choose;
            multipleChoose: typeof biz_customContact_multipleChoose;
        };
        data: {
            rsa: typeof biz_data_rsa;
        };
        ding: {
            create: typeof biz_ding_create;
            post: typeof biz_ding_post;
        };
        edu: {
            finishMiniCourseByRecordId: typeof biz_edu_finishMiniCourseByRecordId;
            getMiniCourseDraftList: typeof biz_edu_getMiniCourseDraftList;
            joinClassroom: typeof biz_edu_joinClassroom;
            makeMiniCourse: typeof biz_edu_makeMiniCourse;
            newMsgNotificationStatus: typeof biz_edu_newMsgNotificationStatus;
            startAuth: typeof biz_edu_startAuth;
            tokenFaceImg: typeof biz_edu_tokenFaceImg;
        };
        event: {
            notifyWeex: typeof biz_event_notifyWeex;
        };
        file: {
            downloadFile: typeof biz_file_downloadFile;
        };
        intent: {
            fetchData: typeof biz_intent_fetchData;
        };
        iot: {
            bind: typeof biz_iot_bind;
            bindMeetingRoom: typeof biz_iot_bindMeetingRoom;
            getDeviceProperties: typeof biz_iot_getDeviceProperties;
            invokeThingService: typeof biz_iot_invokeThingService;
            queryMeetingRoomList: typeof biz_iot_queryMeetingRoomList;
            setDeviceProperties: typeof biz_iot_setDeviceProperties;
            unbind: typeof biz_iot_unbind;
        };
        live: {
            startClassRoom: typeof biz_live_startClassRoom;
            startUnifiedLive: typeof biz_live_startUnifiedLive;
        };
        map: {
            locate: typeof biz_map_locate;
            search: typeof biz_map_search;
            view: typeof biz_map_view;
        };
        media: {
            compressVideo: typeof biz_media_compressVideo;
        };
        microApp: {
            openApp: typeof biz_microApp_openApp;
        };
        navigation: {
            close: typeof biz_navigation_close;
            goBack: typeof biz_navigation_goBack;
            hideBar: typeof biz_navigation_hideBar;
            navigateBackPage: typeof biz_navigation_navigateBackPage;
            navigateToMiniProgram: typeof biz_navigation_navigateToMiniProgram;
            navigateToPage: typeof biz_navigation_navigateToPage;
            quit: typeof biz_navigation_quit;
            replace: typeof biz_navigation_replace;
            setIcon: typeof biz_navigation_setIcon;
            setLeft: typeof biz_navigation_setLeft;
            setMenu: typeof biz_navigation_setMenu;
            setRight: typeof biz_navigation_setRight;
            setTitle: typeof biz_navigation_setTitle;
        };
        pbp: {
            componentPunchFromPartner: typeof biz_pbp_componentPunchFromPartner;
            startMatchRuleFromPartner: typeof biz_pbp_startMatchRuleFromPartner;
            stopMatchRuleFromPartner: typeof biz_pbp_stopMatchRuleFromPartner;
        };
        phoneContact: {
            add: typeof biz_phoneContact_add;
        };
        realm: {
            getRealtimeTracingStatus: typeof biz_realm_getRealtimeTracingStatus;
            getUserExclusiveInfo: typeof biz_realm_getUserExclusiveInfo;
            startRealtimeTracing: typeof biz_realm_startRealtimeTracing;
            stopRealtimeTracing: typeof biz_realm_stopRealtimeTracing;
            subscribe: typeof biz_realm_subscribe;
            unsubscribe: typeof biz_realm_unsubscribe;
        };
        resource: {
            getInfo: typeof biz_resource_getInfo;
            reportDebugMessage: typeof biz_resource_reportDebugMessage;
        };
        shortCut: {
            addShortCut: typeof biz_shortCut_addShortCut;
        };
        sports: {
            getHealthAuthorizationStatus: typeof biz_sports_getHealthAuthorizationStatus;
            getHealthData: typeof biz_sports_getHealthData;
            getHealthDeviceData: typeof biz_sports_getHealthDeviceData;
            requestHealthAuthorization: typeof biz_sports_requestHealthAuthorization;
        };
        store: {
            closeUnpayOrder: typeof biz_store_closeUnpayOrder;
            createOrder: typeof biz_store_createOrder;
            getPayUrl: typeof biz_store_getPayUrl;
            inquiry: typeof biz_store_inquiry;
        };
        tabwindow: {
            isTab: typeof biz_tabwindow_isTab;
        };
        telephone: {
            call: typeof biz_telephone_call;
            checkBizCall: typeof biz_telephone_checkBizCall;
            quickCallList: typeof biz_telephone_quickCallList;
            showCallMenu: typeof biz_telephone_showCallMenu;
        };
        user: {
            checkPassword: typeof biz_user_checkPassword;
            get: typeof biz_user_get;
        };
        util: {
            callComponent: typeof biz_util_callComponent;
            checkAuth: typeof biz_util_checkAuth;
            chooseImage: typeof biz_util_chooseImage;
            chooseRegion: typeof biz_util_chooseRegion;
            chosen: typeof biz_util_chosen;
            clearWebStoreCache: typeof biz_util_clearWebStoreCache;
            closePreviewImage: typeof biz_util_closePreviewImage;
            compressImage: typeof biz_util_compressImage;
            datepicker: typeof biz_util_datepicker;
            datetimepicker: typeof biz_util_datetimepicker;
            decrypt: typeof biz_util_decrypt;
            downloadFile: typeof biz_util_downloadFile;
            encrypt: typeof biz_util_encrypt;
            getPerfInfo: typeof biz_util_getPerfInfo;
            invokeWorkbench: typeof biz_util_invokeWorkbench;
            isEnableGPUAcceleration: typeof biz_util_isEnableGPUAcceleration;
            isLocalFileExist: typeof biz_util_isLocalFileExist;
            multiSelect: typeof biz_util_multiSelect;
            open: typeof biz_util_open;
            openBrowser: typeof biz_util_openBrowser;
            openDocument: typeof biz_util_openDocument;
            openLink: typeof biz_util_openLink;
            openLocalFile: typeof biz_util_openLocalFile;
            openModal: typeof biz_util_openModal;
            openSlidePanel: typeof biz_util_openSlidePanel;
            presentWindow: typeof biz_util_presentWindow;
            previewImage: typeof biz_util_previewImage;
            previewVideo: typeof biz_util_previewVideo;
            saveImage: typeof biz_util_saveImage;
            saveImageToPhotosAlbum: typeof biz_util_saveImageToPhotosAlbum;
            scan: typeof biz_util_scan;
            scanCard: typeof biz_util_scanCard;
            setGPUAcceleration: typeof biz_util_setGPUAcceleration;
            setScreenBrightnessAndKeepOn: typeof biz_util_setScreenBrightnessAndKeepOn;
            setScreenKeepOn: typeof biz_util_setScreenKeepOn;
            share: typeof biz_util_share;
            shareImage: typeof biz_util_shareImage;
            showAuthGuide: typeof biz_util_showAuthGuide;
            showSharePanel: typeof biz_util_showSharePanel;
            startDocSign: typeof biz_util_startDocSign;
            systemShare: typeof biz_util_systemShare;
            timepicker: typeof biz_util_timepicker;
            uploadAttachment: typeof biz_util_uploadAttachment;
            uploadFile: typeof biz_util_uploadFile;
            uploadImage: typeof biz_util_uploadImage;
            uploadImageFromCamera: typeof biz_util_uploadImageFromCamera;
            ut: typeof biz_util_ut;
        };
        verify: {
            openBindIDCard: typeof biz_verify_openBindIDCard;
            startAuth: typeof biz_verify_startAuth;
        };
        voice: {
            makeCall: typeof biz_voice_makeCall;
        };
        watermarkCamera: {
            getWatermarkInfo: typeof biz_watermarkCamera_getWatermarkInfo;
            setWatermarkInfo: typeof biz_watermarkCamera_setWatermarkInfo;
        };
    };
    channel: {
        permission: {
            requestAuthCode: typeof channel_permission_requestAuthCode;
        };
    };
    device: {
        accelerometer: {
            clearShake: typeof device_accelerometer_clearShake;
            watchShake: typeof device_accelerometer_watchShake;
        };
        audio: {
            download: typeof device_audio_download;
            onPlayEnd: typeof device_audio_onPlayEnd;
            onRecordEnd: typeof device_audio_onRecordEnd;
            pause: typeof device_audio_pause;
            play: typeof device_audio_play;
            resume: typeof device_audio_resume;
            startRecord: typeof device_audio_startRecord;
            stop: typeof device_audio_stop;
            stopRecord: typeof device_audio_stopRecord;
            translateVoice: typeof device_audio_translateVoice;
        };
        base: {
            getBatteryInfo: typeof device_base_getBatteryInfo;
            getInterface: typeof device_base_getInterface;
            getPhoneInfo: typeof device_base_getPhoneInfo;
            getScanWifiListAsync: typeof device_base_getScanWifiListAsync;
            getUUID: typeof device_base_getUUID;
            getWifiStatus: typeof device_base_getWifiStatus;
            openSystemSetting: typeof device_base_openSystemSetting;
        };
        connection: {
            getNetworkType: typeof device_connection_getNetworkType;
        };
        geolocation: {
            checkPermission: typeof device_geolocation_checkPermission;
            get: typeof device_geolocation_get;
            start: typeof device_geolocation_start;
            status: typeof device_geolocation_status;
            stop: typeof device_geolocation_stop;
        };
        launcher: {
            checkInstalledApps: typeof device_launcher_checkInstalledApps;
            launchApp: typeof device_launcher_launchApp;
        };
        nfc: {
            nfcRead: typeof device_nfc_nfcRead;
            nfcStop: typeof device_nfc_nfcStop;
            nfcWrite: typeof device_nfc_nfcWrite;
        };
        notification: {
            actionSheet: typeof device_notification_actionSheet;
            alert: typeof device_notification_alert;
            confirm: typeof device_notification_confirm;
            extendModal: typeof device_notification_extendModal;
            hidePreloader: typeof device_notification_hidePreloader;
            modal: typeof device_notification_modal;
            prompt: typeof device_notification_prompt;
            showPreloader: typeof device_notification_showPreloader;
            toast: typeof device_notification_toast;
            vibrate: typeof device_notification_vibrate;
        };
        screen: {
            getScreenBrightness: typeof device_screen_getScreenBrightness;
            insetAdjust: typeof device_screen_insetAdjust;
            isScreenReaderEnabled: typeof device_screen_isScreenReaderEnabled;
            resetView: typeof device_screen_resetView;
            rotateView: typeof device_screen_rotateView;
            setScreenBrightness: typeof device_screen_setScreenBrightness;
        };
    };
    media: {
        voiceRecorder: {
            keepAlive: typeof media_voiceRecorder_keepAlive;
            pause: typeof media_voiceRecorder_pause;
            resume: typeof media_voiceRecorder_resume;
            start: typeof media_voiceRecorder_start;
            stop: typeof media_voiceRecorder_stop;
        };
    };
    net: {
        bjGovApn: {
            loginGovNet: typeof net_bjGovApn_loginGovNet;
        };
    };
    runtime: {
        h5nuvabridge: {
            exec: typeof runtime_h5nuvabridge_exec;
        };
        message: {
            fetch: typeof runtime_message_fetch;
            post: typeof runtime_message_post;
        };
        monitor: {
            getLoadTime: typeof runtime_monitor_getLoadTime;
        };
        permission: {
            requestAuthCode: typeof runtime_permission_requestAuthCode;
            requestOperateAuthCode: typeof runtime_permission_requestOperateAuthCode;
        };
    };
    ui: {
        input: {
            plain: typeof ui_input_plain;
        };
        multitask: {
            addToFloat: typeof ui_multitask_addToFloat;
            removeFromFloat: typeof ui_multitask_removeFromFloat;
        };
        nav: {
            close: typeof ui_nav_close;
            getCurrentId: typeof ui_nav_getCurrentId;
            go: typeof ui_nav_go;
            preload: typeof ui_nav_preload;
            recycle: typeof ui_nav_recycle;
        };
        progressBar: {
            setColors: typeof ui_progressBar_setColors;
        };
        pullToRefresh: {
            disable: typeof ui_pullToRefresh_disable;
            enable: typeof ui_pullToRefresh_enable;
            stop: typeof ui_pullToRefresh_stop;
        };
        webViewBounce: {
            disable: typeof ui_webViewBounce_disable;
            enable: typeof ui_webViewBounce_enable;
        };
    };
    ExternalChannelPublish: typeof union_ExternalChannelPublish;
    addPhoneContact: typeof union_addPhoneContact;
    alert: typeof union_alert;
    callUsers: typeof union_callUsers;
    checkAuth: typeof union_checkAuth;
    checkBizCall: typeof union_checkBizCall;
    chooseChat: typeof union_chooseChat;
    chooseConversation: typeof union_chooseConversation;
    chooseDateRangeInCalendar: typeof union_chooseDateRangeInCalendar;
    chooseDateTime: typeof union_chooseDateTime;
    chooseDepartments: typeof union_chooseDepartments;
    chooseDingTalkDir: typeof union_chooseDingTalkDir;
    chooseDistrict: typeof union_chooseDistrict;
    chooseExternalUsers: typeof union_chooseExternalUsers;
    chooseFile: typeof union_chooseFile;
    chooseHalfDayInCalendar: typeof union_chooseHalfDayInCalendar;
    chooseImage: typeof union_chooseImage;
    chooseMedia: typeof union_chooseMedia;
    chooseOneDayInCalendar: typeof union_chooseOneDayInCalendar;
    chooseOrg: typeof union_chooseOrg;
    choosePhonebook: typeof union_choosePhonebook;
    chooseStaffForPC: typeof union_chooseStaffForPC;
    chooseUserFromList: typeof union_chooseUserFromList;
    clearShake: typeof union_clearShake;
    closeBluetoothAdapter: typeof union_closeBluetoothAdapter;
    closePage: typeof union_closePage;
    complexChoose: typeof union_complexChoose;
    compressImage: typeof union_compressImage;
    confirm: typeof union_confirm;
    connectBLEDevice: typeof union_connectBLEDevice;
    createBLEPeripheralServer: typeof union_createBLEPeripheralServer;
    createDing: typeof union_createDing;
    createDingForPC: typeof union_createDingForPC;
    createGroupChat: typeof union_createGroupChat;
    createLiveClassRoom: typeof union_createLiveClassRoom;
    createPayOrder: typeof union_createPayOrder;
    cropImage: typeof union_cropImage;
    customChooseUsers: typeof union_customChooseUsers;
    datePicker: typeof union_datePicker;
    dateRangePicker: typeof union_dateRangePicker;
    decrypt: typeof union_decrypt;
    disablePullDownRefresh: typeof union_disablePullDownRefresh;
    disableWebViewBounce: typeof union_disableWebViewBounce;
    disconnectBLEDevice: typeof union_disconnectBLEDevice;
    downloadAudio: typeof union_downloadAudio;
    downloadFile: typeof union_downloadFile;
    editExternalUser: typeof union_editExternalUser;
    editPicture: typeof union_editPicture;
    enablePullDownRefresh: typeof union_enablePullDownRefresh;
    enableWebViewBounce: typeof union_enableWebViewBounce;
    encrypt: typeof union_encrypt;
    exclusiveLiveCheck: typeof union_exclusiveLiveCheck;
    generateImageFromCode: typeof union_generateImageFromCode;
    getAccountType: typeof union_getAccountType;
    getAdvertisingStatus: typeof union_getAdvertisingStatus;
    getAuthCode: typeof union_getAuthCode;
    getAuthCodeV2: typeof union_getAuthCodeV2;
    getAuthInfo: typeof union_getAuthInfo;
    getBLEDeviceCharacteristics: typeof union_getBLEDeviceCharacteristics;
    getBLEDeviceServices: typeof union_getBLEDeviceServices;
    getBatteryInfo: typeof union_getBatteryInfo;
    getBeacons: typeof union_getBeacons;
    getBluetoothAdapterState: typeof union_getBluetoothAdapterState;
    getBluetoothDevices: typeof union_getBluetoothDevices;
    getCachedAPIResponse: typeof union_getCachedAPIResponse;
    getCloudCallInfo: typeof union_getCloudCallInfo;
    getCloudCallList: typeof union_getCloudCallList;
    getCurrentCorpId: typeof union_getCurrentCorpId;
    getDeviceId: typeof union_getDeviceId;
    getDeviceUUID: typeof union_getDeviceUUID;
    getImageInfo: typeof union_getImageInfo;
    getLocatingStatus: typeof union_getLocatingStatus;
    getLocation: typeof union_getLocation;
    getNetworkType: typeof union_getNetworkType;
    getOperateAuthCode: typeof union_getOperateAuthCode;
    getPageTerminateInfo: typeof union_getPageTerminateInfo;
    getScreenBrightness: typeof union_getScreenBrightness;
    getStorage: typeof union_getStorage;
    getSystemInfo: typeof union_getSystemInfo;
    getSystemSettings: typeof union_getSystemSettings;
    getThirdAppConfCustomData: typeof union_getThirdAppConfCustomData;
    getThirdAppUserCustomData: typeof union_getThirdAppUserCustomData;
    getTodaysStepCount: typeof union_getTodaysStepCount;
    getTranslateStatus: typeof union_getTranslateStatus;
    getUserExclusiveInfo: typeof union_getUserExclusiveInfo;
    getWifiHotspotStatus: typeof union_getWifiHotspotStatus;
    getWifiStatus: typeof union_getWifiStatus;
    goBackPage: typeof union_goBackPage;
    hideLoading: typeof union_hideLoading;
    hideToast: typeof union_hideToast;
    isInTabWindow: typeof union_isInTabWindow;
    isLocalFileExist: typeof union_isLocalFileExist;
    isScreenReaderEnabled: typeof union_isScreenReaderEnabled;
    locateInMap: typeof union_locateInMap;
    makeCloudCall: typeof union_makeCloudCall;
    makeVideoConfCall: typeof union_makeVideoConfCall;
    minutesCreateFromVideo: typeof union_minutesCreateFromVideo;
    minutesStart: typeof union_minutesStart;
    minutesUploadVideo: typeof union_minutesUploadVideo;
    minutesViewDetail: typeof union_minutesViewDetail;
    multiSelect: typeof union_multiSelect;
    navigateBackPage: typeof union_navigateBackPage;
    navigateToPage: typeof union_navigateToPage;
    nfcReadCardNumber: typeof union_nfcReadCardNumber;
    notifyBLECharacteristicValueChange: typeof union_notifyBLECharacteristicValueChange;
    notifyTranslateEvent: typeof union_notifyTranslateEvent;
    offBLECharacteristicValueChange: typeof union_offBLECharacteristicValueChange;
    offBLEConnectionStateChanged: typeof union_offBLEConnectionStateChanged;
    offBluetoothAdapterStateChange: typeof union_offBluetoothAdapterStateChange;
    offBluetoothDeviceFound: typeof union_offBluetoothDeviceFound;
    onBLECharacteristicValueChange: typeof union_onBLECharacteristicValueChange;
    onBLEConnectionStateChanged: typeof union_onBLEConnectionStateChanged;
    onBLEPeripheralCharacteristicReadRequest: typeof union_onBLEPeripheralCharacteristicReadRequest;
    onBLEPeripheralCharacteristicWriteRequest: typeof union_onBLEPeripheralCharacteristicWriteRequest;
    onBLEPeripheralConnectionStateChanged: typeof union_onBLEPeripheralConnectionStateChanged;
    onBeaconServiceChange: typeof union_onBeaconServiceChange;
    onBeaconUpdate: typeof union_onBeaconUpdate;
    onBluetoothAdapterStateChange: typeof union_onBluetoothAdapterStateChange;
    onBluetoothDeviceFound: typeof union_onBluetoothDeviceFound;
    onPlayAudioEnd: typeof union_onPlayAudioEnd;
    onRecordEnd: typeof union_onRecordEnd;
    openBluetoothAdapter: typeof union_openBluetoothAdapter;
    openChatByChatId: typeof union_openChatByChatId;
    openChatByConversationId: typeof union_openChatByConversationId;
    openChatByUserId: typeof union_openChatByUserId;
    openDocument: typeof union_openDocument;
    openLink: typeof union_openLink;
    openLocalFile: typeof union_openLocalFile;
    openLocation: typeof union_openLocation;
    openMicroApp: typeof union_openMicroApp;
    openPageInMicroApp: typeof union_openPageInMicroApp;
    openPageInModalForPC: typeof union_openPageInModalForPC;
    openPageInSlidePanelForPC: typeof union_openPageInSlidePanelForPC;
    openPageInWorkBenchForPC: typeof union_openPageInWorkBenchForPC;
    pauseAudio: typeof union_pauseAudio;
    playAudio: typeof union_playAudio;
    popGesture: typeof union_popGesture;
    previewFileInDingTalk: typeof union_previewFileInDingTalk;
    previewImage: typeof union_previewImage;
    previewImagesInDingTalkBatch: typeof union_previewImagesInDingTalkBatch;
    previewMedia: typeof union_previewMedia;
    prompt: typeof union_prompt;
    quickCallList: typeof union_quickCallList;
    quitPage: typeof union_quitPage;
    readBLECharacteristicValue: typeof union_readBLECharacteristicValue;
    readNFC: typeof union_readNFC;
    removeCachedAPIResponse: typeof union_removeCachedAPIResponse;
    removeStorage: typeof union_removeStorage;
    replacePage: typeof union_replacePage;
    requestAuthCode: typeof union_requestAuthCode;
    requestMoneySubmmitOrder: typeof union_requestMoneySubmmitOrder;
    resetScreenView: typeof union_resetScreenView;
    resumeAudio: typeof union_resumeAudio;
    rotateScreenView: typeof union_rotateScreenView;
    rsa: typeof union_rsa;
    saveFileToDingTalk: typeof union_saveFileToDingTalk;
    saveImageToPhotosAlbum: typeof union_saveImageToPhotosAlbum;
    saveVideoToPhotosAlbum: typeof union_saveVideoToPhotosAlbum;
    scan: typeof union_scan;
    scanCard: typeof union_scanCard;
    searchMap: typeof union_searchMap;
    setClipboard: typeof union_setClipboard;
    setGestures: typeof union_setGestures;
    setKeepScreenOn: typeof union_setKeepScreenOn;
    setNavigationIcon: typeof union_setNavigationIcon;
    setNavigationLeft: typeof union_setNavigationLeft;
    setNavigationTitle: typeof union_setNavigationTitle;
    setScreenBrightness: typeof union_setScreenBrightness;
    setStorage: typeof union_setStorage;
    share: typeof union_share;
    showActionSheet: typeof union_showActionSheet;
    showAuthGuide: typeof union_showAuthGuide;
    showCallMenu: typeof union_showCallMenu;
    showLoading: typeof union_showLoading;
    showModal: typeof union_showModal;
    showSharePanel: typeof union_showSharePanel;
    showToast: typeof union_showToast;
    singleSelect: typeof union_singleSelect;
    startAdvertising: typeof union_startAdvertising;
    startBeaconDiscovery: typeof union_startBeaconDiscovery;
    startBluetoothDevicesDiscovery: typeof union_startBluetoothDevicesDiscovery;
    startDingerRecord: typeof union_startDingerRecord;
    startLocating: typeof union_startLocating;
    startRecord: typeof union_startRecord;
    stopAdvertising: typeof union_stopAdvertising;
    stopAudio: typeof union_stopAudio;
    stopBeaconDiscovery: typeof union_stopBeaconDiscovery;
    stopBluetoothDevicesDiscovery: typeof union_stopBluetoothDevicesDiscovery;
    stopDingerRecord: typeof union_stopDingerRecord;
    stopLocating: typeof union_stopLocating;
    stopPullDownRefresh: typeof union_stopPullDownRefresh;
    stopRecord: typeof union_stopRecord;
    subscribe: typeof union_subscribe;
    timePicker: typeof union_timePicker;
    translate: typeof union_translate;
    translateVoice: typeof union_translateVoice;
    uploadAttachmentToDingTalk: typeof union_uploadAttachmentToDingTalk;
    uploadFile: typeof union_uploadFile;
    vibrate: typeof union_vibrate;
    watchShake: typeof union_watchShake;
    writeBLECharacteristicValue: typeof union_writeBLECharacteristicValue;
    writeBLEPeripheralCharacteristicValue: typeof union_writeBLEPeripheralCharacteristicValue;
    writeNFC: typeof union_writeNFC;
    util: {
        domainStorage: {
            getItem: typeof util_domainStorage_getItem;
            getStorageInfo: typeof util_domainStorage_getStorageInfo;
            removeItem: typeof util_domainStorage_removeItem;
            setItem: typeof util_domainStorage_setItem;
        };
        openTemporary: {
            getData: typeof util_openTemporary_getData;
        };
    };
};