保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
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
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
// Type definitions for Swiper 5.4
// Project: https://github.com/nolimits4web/Swiper, http://www.idangero.us/swiper
// Definitions by: Sebastián Galiano <https://github.com/sgaliano>
//                 Luca Trazzi <https://github.com/lucax88x>
//                 Eugene Matseruk <https://github.com/ematseruk>
//                 Luiz M. <https://github.com/odahcam>
//                 Justin Abene <https://github.com/jmca>
//                 Asif Rahman <https://github.com/daem0ndev>
//                 Liad Idan <https://github.com/LiadIdan>
//                 Sangwon Lee <https://github.com/john015>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.9
 
/**
 * Common Swiper events.
 */
export type CommonEvent =
    | 'init'
    | 'beforeDestroy'
    | 'slideChange'
    | 'slideChangeTransitionStart'
    | 'slideChangeTransitionEnd'
    | 'slideNextTransitionStart'
    | 'slideNextTransitionEnd'
    | 'slidePrevTransitionStart'
    | 'slidePrevTransitionEnd'
    | 'transitionStart'
    | 'transitionEnd'
    | 'touchStart'
    | 'touchMove'
    | 'touchMoveOpposite'
    | 'sliderMove'
    | 'touchEnd'
    | 'click'
    | 'tap'
    | 'doubleTap'
    | 'imagesReady'
    | 'progress'
    | 'reachBeginning'
    | 'reachEnd'
    | 'fromEdge'
    | 'setTranslate'
    | 'setTransition'
    | 'resize'
    | 'observerUpdate'
    | 'beforeLoopFix'
    | 'loopFix';
 
/**
 * Swiper pagination event names.
 */
export type PaginationEvent = 'paginationRender' | 'paginationUpdate';
 
/**
 * Swiper autoplay event names.
 */
export type AutoplayEvent = 'autoplayStart' | 'autoplayStop' | 'autoplay';
 
/**
 * Swiper lazy-loading event names.
 */
export type LazyLoadingEvent = 'lazyImageLoad' | 'lazyImageReady';
 
/**
 * Swiper hash-navigation event names.
 */
export type HashNavigationEvent = 'hashChange' | 'hashSet';
 
/**
 * Swiper event names.
 */
export type SwiperEvent = CommonEvent | PaginationEvent | AutoplayEvent | LazyLoadingEvent | HashNavigationEvent;
 
/**
 * Swiper module types.
 */
export type SwiperModule =
    | Navigation
    | Pagination
    | Scrollbar
    | Autoplay
    | Parallax
    | Lazy
    | EffectFade
    | EffectCoverflow
    | EffectFlip
    | EffectCube
    | Zoom
    | Keyboard
    | Mousewheel
    | Virtual
    | HashNavigation
    | History
    | Controller
    | A11y;
 
export type DOM7Element = any;
export type SelectableElement = string | HTMLElement;
 
/*
 * Swiper options and events.
 */
 
/**
 * Main constructor options.
 */
export interface SwiperOptions {
    /**
     * Whether Swiper should be initialised automatically when you create an instance.
     * If disabled, then you need to init it manually by calling mySwiper.init()
     *
     * @default true
     */
    init?: boolean | undefined;
 
    /**
     * Swiper will recalculate slides position on window resize (orientationchange)
     *
     * @default true
     */
    updateOnWindowResize?: boolean | undefined;
 
    /**
     * Index number of initial slide.
     *
     * @default 0
     */
    initialSlide?: number | undefined;
 
    /**
     * Could be 'horizontal' or 'vertical' (for vertical slider).
     *
     * @default 'horizontal'
     */
    direction?: 'horizontal' | 'vertical' | undefined;
 
    /**
     * Duration of transition between slides (in ms)
     *
     * @default 300
     */
    speed?: number | undefined;
 
    /**
     * Enabled this option and plugin will set width/height on swiper wrapper equal to total size of all slides.
     * Mostly should be used as compatibility fallback option for browser that don't support flexbox layout well
     */
    setWrapperSize?: boolean | undefined;
 
    /**
     * Enabled this option and swiper will be operated as usual except it will not move, real translate values on wrapper will not be set.
     * Useful when you may need to create custom slide transition
     */
    virtualTranslate?: boolean | undefined;
 
    /**
     * Swiper width (in px). Parameter allows to force Swiper width.
     * Useful only if you initialize Swiper when it is hidden.
     *
     * @note Setting this parameter will make Swiper not responsive
     */
    width?: number | undefined;
 
    /**
     * Swiper height (in px). Parameter allows to force Swiper height.
     * Useful only if you initialize Swiper when it is hidden.
     *
     * @note Setting this parameter will make Swiper not responsive
     */
    height?: number | undefined;
 
    /**
     * Set to true and slider wrapper will adopt its height to the height of the currently active slide
     *
     * @default false
     */
    autoHeight?: boolean | undefined;
 
    /**
     * Set to true to round values of slides width and height to prevent blurry texts on usual
     * resolution screens (if you have such)
     *
     * @default false
     */
    roundLengths?: boolean | undefined;
 
    /**
     * Set to true on  Swiper for correct touch events interception. Use only on
     * swipers that use same direction as the parent one
     *
     * @default false
     */
    nested?: boolean | undefined;
 
    /**
     * If enabled (by default) and navigation elements' parameters passed as a string (like ".pagination")
     * then Swiper will look for such elements through child elements first.
     * Applies for pagination, prev/next buttons and scrollbar elements
     *
     * @default true
     */
    uniqueNavElements?: boolean | undefined;
 
    /**
     * Tranisition effect. Could be "slide", "fade", "cube", "coverflow" or "flip"
     *
     * @default 'slide'
     */
    effect?: 'slide' | 'fade' | 'cube' | 'coverflow' | 'flip' | undefined;
 
    /**
     * Fire [Transition/SlideChange][Start/End] events on swiper initialization.
     * Such events will be fired on initialization in case of your initialSlide is not 0, or you use loop mode
     *
     * @default true
     */
    runCallbacksOnInit?: boolean | undefined;
 
    /**
     * When enabled Swiper will be disabled and hide navigation buttons on
     * case there are not enough slides for sliding.
     *
     * @default false
     */
    watchOverflow?: boolean | undefined;
 
    /**
     * Register event handlers.
     */
    on?: {
        [key in Exclude<SwiperEvent, LazyLoadingEvent>]?: (this: Swiper, swiper: Swiper) => void;
    } & {
        [key in LazyLoadingEvent]?: (this: Swiper, slideEl: HTMLElement, imageEl: HTMLImageElement) => void;
    } | undefined;
 
    // CSS Scroll Snap
 
    /**
     * When enabled it will use modern CSS Scroll Snap API.
     * It doesn't support all of Swiper's features, but potentially should bring a much better performance in simple configurations.
     *
     * @default false
     */
    cssMode?: boolean | undefined;
 
    // Slides grid
 
    /**
     * Distance between slides in px.
     */
    spaceBetween?: number | undefined;
 
    /**
     * Number of slides per view (slides visible at the same time on slider's container).
     * If you use it with "auto" value and along with loop: true then you need to specify loopedSlides parameter with amount of slides to loop (duplicate)
     * slidesPerView: 'auto' is currently not compatible with multirow mode, when slidesPerColumn > 1
     */
    slidesPerView?: number | 'auto' | undefined;
 
    /**
     * Number of slides per column, for multirow layout
     * slidesPerColumn > 1 is currently not compatible with loop mode (loop: true)
     */
    slidesPerColumn?: number | undefined;
 
    /**
     * Could be 'column' or 'row'. Defines how slides should fill rows, by column or by row
     */
    slidesPerColumnFill?: 'row' | 'column' | undefined;
 
    /**
     * Set numbers of slides to define and enable group sliding. Useful to use with slidesPerView > 1
     */
    slidesPerGroup?: number | undefined;
 
    /**
     * The parameter works in the following way: If slidesPerGroupSkip equals 0 (default), no slides are excluded from grouping, and the resulting behaviour is the same as without this change.
     * If slidesPerGroupSkip is equal or greater than 1 the first X slides are treated as single groups, whereas all following slides are grouped by the slidesPerGroup value.
     *
     * @default 0
     */
    slidesPerGroupSkip?: number | undefined;
 
    /**
     * If true, then active slide will be centered, not always on the left side.
     */
    centeredSlides?: boolean | undefined;
 
    /**
     * If true, then active slide will be centered without adding gaps at the beginning and end of slider.
     * Required centeredSlides: true. Not intended to be used with loop or pagination
     *
     * @default false
     */
    centeredSlidesBounds?: boolean | undefined;
 
    /**
     * Add (in px) additional slide offset in the beginning of the container (before all slides)
     */
    slidesOffsetBefore?: number | undefined;
 
    /**
     * Add (in px) additional slide offset in the end of the container (after all slides)
     */
    slidesOffsetAfter?: number | undefined;
 
    /**
     * Normalize slide index.
     */
    normalizeSlideIndex?: boolean | undefined;
 
    /**
     * When enabled it center slides if the amount of slides less than `slidesPerView`. Not intended to be used loop mode and slidesPerColumn
     */
    centerInsufficientSlides?: boolean | undefined;
 
    // Grab Cursor
    grabCursor?: boolean | undefined;
 
    // Touches
 
    /**
     * Target element to listen touch events on. Can be 'container' (to listen for touch events on swiper-container) or 'wrapper'
     * (to listen for touch events on swiper-wrapper)
     */
    touchEventsTarget?: 'container' | 'wrapper' | undefined;
 
    /**
     * Touch ratio
     */
    touchRatio?: number | undefined;
 
    /**
     * Allowable angle (in degrees) to trigger touch move
     */
    touchAngle?: number | undefined;
 
    /**
     * If true, Swiper will accept mouse events like touch events (click and drag to change slides)
     */
    simulateTouch?: boolean | undefined;
 
    /**
     * Set to false if you want to disable short swipes
     */
    shortSwipes?: boolean | undefined;
 
    /**
     * Set to false if you want to disable long swipes
     */
    longSwipes?: boolean | undefined;
 
    /**
     * Ratio to trigger swipe to next/previous slide during long swipes
     */
    longSwipesRatio?: number | undefined;
 
    /**
     * Minimal duration (in ms) to trigger swipe to next/previous slide during long swipes
     */
    longSwipesMs?: number | undefined;
 
    /**
     * If disabled, then slider will be animated only when you release it, it will not move while you hold your finger on it
     */
    followFinger?: boolean | undefined;
 
    /**
     * If false, then the only way to switch the slide is use of external API functions like slidePrev or slideNext
     */
    allowTouchMove?: boolean | undefined;
 
    /**
     * Threshold value in px. If "touch distance" will be lower than this value then swiper will not move
     */
    threshold?: number | undefined;
 
    /**
     * If disabled, `touchstart` (`mousedown`) event won't be prevented
     */
    touchStartPreventDefault?: boolean | undefined;
 
    /**
     * Force to always prevent default for `touchstart` (`mousedown`) event
     */
    touchStartForcePreventDefault?: boolean | undefined;
 
    /**
     * If enabled, then propagation of "touchmove" will be stopped
     */
    touchMoveStopPropagation?: boolean | undefined;
 
    /**
     * Enable to release Swiper events for swipe-to-go-back work in iOS UIWebView
     */
    iOSEdgeSwipeDetection?: boolean | undefined;
 
    /**
     * Area (in px) from left edge of the screen to release touch events for swipe-to-go-back in iOS UIWebView
     */
    iOSEdgeSwipeThreshold?: number | undefined;
 
    /**
     * Enable to release touch events on slider edge position (beginning, end) to allow for further page scrolling
     */
    touchReleaseOnEdges?: boolean | undefined;
 
    /**
     * Passive event listeners will be used by default where possible to improve scrolling performance on mobile devices.
     * But if you need to use `e.preventDefault` and you have conflict with it, then you should disable this parameter
     */
    passiveListeners?: boolean | undefined;
 
    // Touch Resistance
 
    /**
     * Set to false if you want to disable resistant bounds
     */
    resistance?: boolean | undefined;
 
    /**
     * This option allows you to control resistance ratio
     */
    resistanceRatio?: number | undefined;
 
    // Swiping / No swiping
    preventInteractionOnTransition?: boolean | undefined;
    allowSlidePrev?: boolean | undefined;
    allowSlideNext?: boolean | undefined;
    noSwiping?: boolean | undefined;
    noSwipingClass?: string | undefined;
    noSwipingSelector?: string | undefined;
    swipeHandler?: SelectableElement | undefined;
 
    // Clicks
    preventClicks?: boolean | undefined;
    preventClicksPropagation?: boolean | undefined;
    slideToClickedSlide?: boolean | undefined;
 
    // Freemode
    freeMode?: boolean | undefined;
    freeModeMomentum?: boolean | undefined;
    freeModeMomentumRatio?: number | undefined;
    freeModeMomentumVelocityRatio?: number | undefined;
    freeModeMomentumBounce?: boolean | undefined;
    freeModeMomentumBounceRatio?: number | undefined;
    freeModeMinimumVelocity?: number | undefined;
    freeModeSticky?: boolean | undefined;
 
    // Progress
    watchSlidesProgress?: boolean | undefined;
    watchSlidesVisibility?: boolean | undefined;
 
    // Images
    preloadImages?: boolean | undefined;
    updateOnImagesReady?: boolean | undefined;
 
    // Loop
    loop?: boolean | undefined;
    loopAdditionalSlides?: number | undefined;
    loopedSlides?: number | undefined;
    loopFillGroupWithBlank?: boolean | undefined;
 
    // Breakpoints
    breakpoints?: {
        [index: number]: SwiperOptions;
    } | undefined;
    breakpointsInverse?: boolean | undefined;
 
    // Observer
 
    /**
     * Set to true if you also need to watch Mutations for Swiper slide children elements
     *
     * @default false
     */
    observeSlideChildren?: boolean | undefined;
 
    observer?: boolean | undefined;
    observeParents?: boolean | undefined;
 
    // Namespace
    containerModifierClass?: string | undefined;
    slideClass?: string | undefined;
    slideActiveClass?: string | undefined;
    slideDuplicateActiveClass?: string | undefined;
    slideVisibleClass?: string | undefined;
    slideDuplicateClass?: string | undefined;
    slideNextClass?: string | undefined;
    slideDuplicateNextClass?: string | undefined;
    slidePrevClass?: string | undefined;
    slideDuplicatePrevClass?: string | undefined;
    wrapperClass?: string | undefined;
 
    // Components
    controller?: ControllerOptions | boolean | undefined;
    navigation?: NavigationOptions | undefined;
    pagination?: PaginationOptions | undefined;
    scrollbar?: ScrollbarOptions | undefined;
    autoplay?: AutoplayOptions | boolean | undefined;
    parallax?: boolean | undefined;
    lazy?: LazyOptions | boolean | undefined;
    fadeEffect?: FadeEffectOptions | undefined;
    coverflowEffect?: CoverflowEffectOptions | undefined;
    flipEffect?: FlipEffectOptions | undefined;
    cubeEffect?: CubeEffectOptions | undefined;
    thumbs?: ThumbsOptions | undefined;
    zoom?: ZoomOptions | boolean | undefined;
    keyboard?: KeyboardOptions | boolean | undefined;
    mousewheel?: MousewheelOptions | boolean | undefined;
    virtual?: VirtualOptions | boolean | undefined;
    hashNavigation?: HashNavigationOptions | boolean | undefined;
    history?: HistoryNavigationOptions | boolean | undefined;
    a11y?: A11yOptions | boolean | undefined;
}
 
export interface EventsOptions {
    /**
     * Fired right after Swiper initialization.
     * Note that with swiper.on('init') syntax it will
     * work only in case you set init: false parameter.
     *
     * @example
     * var swiper = new Swiper('.swiper-container', {
     *   init: false,
     *   // other parameters
     * });
     *
     * @example
     * swiper.on('init', function() {
     *  // do something
     * });
     *
     * @example
     * // init Swiper
     * swiper.init();
     *
     * @example
     * // Otherwise use it as the parameter:
     * var swiper = new Swiper('.swiper-container', {
     *   // other parameters
     *   on: {
     *     init: function () {
     *       // do something
     *     },
     *   }
     * });
     */
    init?: (() => any) | undefined;
 
    /**
     * Triggered right beforey Swiper destoryed
     */
    beforeDestroy?: (() => any) | undefined;
 
    /**
     * Triggered when currently active slide is changed
     */
    slideChange?: (() => any) | undefined;
 
    /**
     * Triggered in the beginning of animation to other slide (next or previous).
     */
    slideChangeTransitionStart?: (() => any) | undefined;
 
    /**
     * Triggered after animation to other slide (next or previous).
     */
    slideChangeTransitionEnd?: (() => any) | undefined;
 
    /**
     * Same as "slideChangeTransitionStart" but for "forward" direction only
     */
    slideNextTransitionStart?: (() => any) | undefined;
 
    /**
     * Same as "slideChangeTransitionEnd" but for "forward" direction only
     */
    slideNextTransitionEnd?: (() => any) | undefined;
 
    /**
     * Same as "slideChangeTransitionStart" but for "backward" direction only
     */
    slidePrevTransitionStart?: (() => any) | undefined;
 
    /**
     * Same as "slideChangeTransitionEnd" but for "backward" direction only
     */
    slidePrevTransitionEnd?: (() => any) | undefined;
 
    /**
     * Triggered in the beginning of transition.
     */
    transitionStart?: (() => any) | undefined;
 
    /**
     * Triggered after transition.
     */
    transitionEnd?: (() => any) | undefined;
 
    /**
     * Triggered when user touch Swiper. Receives 'touchstart' event as an arguments.
     */
    touchStart?: ((event: any) => any) | undefined;
 
    /**
     * Triggered when user touch and move finger over Swiper. Receives 'touchmove' event as an arguments.
     */
    touchMove?: ((event: any) => any) | undefined;
 
    /**
     * Fired when user touch and move finger over
     * Swiper in direction opposite to direction parameter.
     * Receives 'touchmove' event as an arguments.
     */
    touchMoveOpposite?: ((event: any) => any) | undefined;
 
    /**
     * Triggered when user touch and move finger over Swiper and move it.
     * Receives 'touchmove' event as an arguments.
     */
    sliderMove?: ((event: any) => any) | undefined;
 
    /**
     * Triggered when user release Swiper. Receives 'touchend' event as an arguments.
     */
    touchEnd?: ((event: any) => any) | undefined;
 
    /**
     * Triggered when user click/tap on Swiper after 300ms delay. Receives 'touchend' event as an arguments.
     */
    click?: ((event: any) => any) | undefined;
 
    /**
     * Triggered when user click/tap on Swiper. Receives 'touchend' event as an arguments.
     */
    tap?: ((event: any) => any) | undefined;
 
    /**
     * Triggered when user double tap on Swiper's container. Receives 'touchend' event as an arguments
     */
    doubleTap?: ((event: any) => any) | undefined;
 
    /**
     * Triggered right after all inner images are loaded. updateOnImagesReady should be also enabled
     */
    imagesReady?: (() => any) | undefined;
 
    /**
     * Triggered when Swiper progress is changed, as an arguments it receives
     * progress that is always from 0 to 1
     */
    progress?: ((progress: any) => any) | undefined;
 
    /**
     * Triggered when Swiper reach its beginning (initial position)
     */
    reachBeginning?: (() => any) | undefined;
 
    /**
     * Triggered when Swiper reach last slide
     */
    reachEnd?: (() => any) | undefined;
 
    /**
     * Triggered when Swiper goes from beginning or end position
     */
    fromEdge?: (() => any) | undefined;
 
    /**
     * Triggered when swiper's wrapper change its position. Receives current translate value as an arguments
     */
    setTranslate?: ((translate: any) => any) | undefined;
 
    /**
     * Triggered everytime when swiper starts animation.
     * Receives current transition duration (in ms) as an arguments,
     */
    setTransition?: ((transition: any) => any) | undefined;
 
    /**
     * Triggered on window resize right before swiper's onresize manipulation
     */
    resize?: (() => any) | undefined;
 
    /**
     * Event will be fired if observer is enabled and it detects DOM mutations
     */
    observerUpdate?: (() => any) | undefined;
 
    /**
     * Event will be fired right before "loop fix"
     */
    beforeLoopFix?: (() => any) | undefined;
 
    /**
     * Event will be fired after "loop fix"
     */
    loopFix?: (() => any) | undefined;
}
 
export interface NavigationOptions {
    /**
     * String with CSS selector or HTML element of the element that will work
     * like "next" button after click on it
     *
     * @default null
     */
    nextEl?: SelectableElement | undefined;
 
    /**
     * String with CSS selector or HTML element of the element that will work
     * like "prev" button after click on it
     *
     * @default null
     */
    prevEl?: SelectableElement | undefined;
 
    /**
     * buttons visibility after click on Slider's container
     *
     * @default false Toggle navigation
     */
    hideOnClick?: boolean | undefined;
 
    /**
     * CSS class name added to navigation button when it becomes disabled
     *
     * @default 'swiper-button-disabled'
     */
    disabledClass?: string | undefined;
 
    /**
     * CSS class name added to navigation button when it becomes hidden
     *
     * @default 'swiper-button-hidden'
     */
    hiddenClass?: string | undefined;
}
 
export interface PaginationOptions {
    /**
     * String with CSS selector or HTML element of the container with pagination
     */
    el: SelectableElement;
 
    /**
     * String with type of pagination. Can be "bullets", "fraction", "progressbar" or "custom"
     */
    type?: 'bullets' | 'fraction' | 'progressbar' | 'custom' | undefined;
 
    /**
     * Defines which HTML tag will be use to represent single pagination bullet. Only for bullets pagination type.
     */
    bulletElement?: string | undefined;
 
    /**
     * Good to enable if you use bullets pagination with a lot of slides. So it will keep only few bullets visible at the same time.
     */
    dynamicBullets?: boolean | undefined;
 
    /**
     * The number of main bullets visible when dynamicBullets enabled.
     */
    dynamicMainBullets?: number | undefined;
 
    /**
     * Toggle (hide/true) pagination container visibility after click on Slider's container
     */
    hideOnClick?: boolean | undefined;
 
    /**
     * If true then clicking on pagination button will cause transition to appropriate slide. Only for bullets pagination type
     */
    clickable?: boolean | undefined;
 
    /**
     * Makes pagination progressbar opposite to Swiper's `direction` parameter, means vertical progressbar for horizontal swiper
     * direction and horizontal progressbar for vertical swiper direction
     */
    progressbarOpposite?: boolean | undefined;
 
    /**
     * format fraction pagination current number. Function receives current number,
     * and you need to return formatted value
     */
    formatFractionCurrent?: ((number: number) => number) | undefined;
 
    /**
     * format fraction pagination total number. Function receives total number, and you
     * need to return formatted value
     */
    formatFractionTotal?: ((number: number) => number) | undefined;
 
    /**
     * This parameter allows totally customize pagination bullets, you need to pass here a function that accepts index number of
     * pagination bullet and required element class name (className). Only for bullets pagination type
     */
    renderBullet?: ((index: number, className: string) => void) | undefined;
 
    /**
     * This parameter allows to customize "fraction" pagination html. Only for fraction pagination type
     */
    renderFraction?: ((currentClass: string, totalClass: string) => void) | undefined;
 
    /**
     * This parameter allows to customize "progress" pagination. Only for progress pagination type
     */
    renderProgressbar?: ((progressbarFillClass: string) => void) | undefined;
 
    /**
     * This parameter is required for custom pagination type where you have to specify
     * how it should be rendered.
     *
     * @example
     * var swiper = new Swiper('.swiper-container', {
     *   //...
     *   renderCustom: function (swiper, current, total) {
     *     return current + ' of ' + total;
     *   }
     * });
     */
    renderCustom?: ((swiper: Swiper, current: number, total: number) => void) | undefined;
 
    /**
     * CSS class name of single pagination bullet
     */
    bulletClass?: string | undefined;
 
    /**
     * CSS class name of currently active pagination bullet
     */
    bulletActiveClass?: string | undefined;
 
    /**
     * The beginning of the modifier CSS class name that will be added to pagination depending on parameters
     */
    modifierClass?: string | undefined;
 
    /**
     * CSS class name of the element with currently active index in "fraction" pagination
     */
    currentClass?: string | undefined;
 
    /**
     * CSS class name of the element with total number of "snaps" in "fraction" pagination
     */
    totalClass?: string | undefined;
 
    /**
     * CSS class name of pagination when it becomes inactive
     */
    hiddenClass?: string | undefined;
 
    /**
     * CSS class name of pagination progressbar fill element
     */
    progressbarFillClass?: string | undefined;
 
    /**
     * CSS class name set to pagination when it is clickable
     */
    clickableClass?: string | undefined;
}
 
/**
 * Object with scrollbar parameters.
 *
 * @example
 * var mySwiper = new Swiper('.swiper-container', {
 *   scrollbar: {
 *     el: '.swiper-scrollbar',
 *     draggable: true,
 *   },
 * });
 */
export interface ScrollbarOptions {
    /**
     * String with CSS selector or HTML element of the container with scrollbar.
     */
    el: SelectableElement;
 
    /**
     * Hide scrollbar automatically after user interaction
     *
     * @default true
     */
    hide?: boolean | undefined;
 
    /**
     * Set to true to enable make scrollbar draggable that allows you to control slider position
     *
     * @default true
     */
    draggable?: boolean | undefined;
 
    /**
     * Set to true to snap slider position to slides when you release scrollbar
     *
     * @default false
     */
    snapOnRelease?: boolean | undefined;
 
    /**
     * Size of scrollbar draggable element in px
     *
     * @default 'auto'
     */
    dragSize?: 'auto' | number | undefined;
 
    /**
     * Scrollbar element additional CSS class when it is disabled
     *
     * @default 'swiper-scrollbar-lock'
     */
    lockClass?: string | undefined;
 
    /**
     *     Scrollbar draggable element CSS class
     *
     * @default 'swiper-scrollbar-drag'
     */
    dragClass?: string | undefined;
}
 
/**
 * Object with autoplay parameters or boolean true to enable with default settings.
 *
 * @example
 * var mySwiper = new Swiper('.swiper-container', {
 *   autoplay: {
 *     delay: 5000,
 *   },
 * });
 */
export interface AutoplayOptions {
    /**
     * Delay between transitions (in ms). If this parameter is not specified, auto play will be disabled
     *
     * If you need to specify different delay for specifi slides you can do it by using
     * data-swiper-autoplay (in ms) attribute on slide.
     *
     * @example
     * <!-- hold this slide for 2 seconds -->
     * <div class="swiper-slide" data-swiper-autoplay="2000">
     *
     * @default 3000
     */
    delay?: number | undefined;
 
    /**
     * Enable this parameter and autoplay will be stopped when it reaches last slide (has no effect in loop mode)
     *
     * @default false
     */
    stopOnLastSlide?: boolean | undefined;
 
    /**
     * Set to false and autoplay will not be disabled after
     * user interactions (swipes), it will be restarted
     * every time after interaction
     *
     * @default true
     */
    disableOnInteraction?: boolean | undefined;
 
    /**
     * Enables autoplay in reverse direction
     *
     * @default false
     */
    reverseDirection?: boolean | undefined;
 
    /**
     * When enabled autoplay will wait for wrapper transition to continue.
     * Can be disabled in case of using Virtual Translate when your
     * slider may not have transition
     *
     * @default true
     */
    waitForTransition?: boolean | undefined;
}
 
export interface LazyOptions {
    loadPrevNext?: boolean | undefined;
    loadPrevNextAmount?: number | undefined;
    loadOnTransitionStart?: boolean | undefined;
    elementClass?: string | undefined;
    loadingClass?: string | undefined;
    loadedClass?: string | undefined;
    preloaderClass?: string | undefined;
}
 
/*
 * Options - Effect
 */
 
export interface FadeEffectOptions {
    crossFade?: boolean | undefined;
}
 
export interface CoverflowEffectOptions {
    slideShadows?: boolean | undefined;
    rotate?: number | undefined;
    stretch?: number | undefined;
    depth?: number | undefined;
    modifier?: number | undefined;
}
 
export interface FlipEffectOptions {
    slideShadows?: boolean | undefined;
    limitRotation?: boolean | undefined;
}
 
export interface CubeEffectOptions {
    slideShadows?: boolean | undefined;
    shadow?: boolean | undefined;
    shadowOffset?: number | undefined;
    shadowScale?: number | undefined;
}
 
export interface ThumbsOptions {
    swiper?: Swiper | undefined;
    slideThumbActiveClass?: string | undefined;
    thumbsContainerClass?: string | undefined;
    multipleActiveThumbs?: boolean | undefined;
    autoScrollOffset?: number | undefined;
}
 
export interface ZoomOptions {
    maxRatio?: number | undefined;
    minRatio?: number | undefined;
    toggle?: boolean | undefined;
    containerClass?: string | undefined;
    zoomedSlideClass?: string | undefined;
}
 
export interface KeyboardOptions {
    enabled?: boolean | undefined;
    onlyInViewport?: boolean | undefined;
}
 
export interface MousewheelOptions {
    forceToAxis?: boolean | undefined;
    releaseOnEdges?: boolean | undefined;
    invert?: boolean | undefined;
    sensitivity?: number | undefined;
    eventsTarged?: SelectableElement | undefined;
}
 
export interface VirtualOptions {
    slides?: any[] | undefined;
    cache?: boolean | undefined;
    addSlidesBefore?: number | undefined;
    addSlidesAfter?: number | undefined;
    renderSlide?: ((slide: any, index: any) => any) | undefined;
    renderExternal?: ((data: any) => any) | undefined;
}
 
export interface HashNavigationOptions {
    /**
     * Set to true to enable also navigation through slides (when hashnav
     * is enabled) by browser history or by setting directly hash on document location
     *
     * @default false
     */
    watchState?: boolean | undefined;
 
    /**
     * Works in addition to hashnav to replace current url state with the
     * new one instead of adding it to history
     *
     * @default     false
     */
    replaceState?: boolean | undefined;
}
 
export interface HistoryNavigationOptions {
    /**
     * Works in addition to hashnav or history to replace current url state with the
     * new one instead of adding it to history
     *
     * @default false
     */
    replaceState?: boolean | undefined;
 
    /**
     * Url key for slides
     *
     * @default 'slides'
     */
    key?: string | undefined;
}
 
/**
 * Object with controller parameters or boolean true to enable with default settings. For example:
 *
 * @example
 * var mySwiper = new Swiper('.swiper-container', {
 *   controller: {
 *     inverse: true,
 *   },
 * });
 */
export interface ControllerOptions {
    /**
     * Pass here another Swiper instance or array with Swiper instances that should be controlled
     * by this Swiper
     */
    control?: Swiper | undefined;
 
    /**
     * Set to true and controlling will be in inverse direction
     *
     * @default false
     */
    inverse?: boolean | undefined;
 
    /**
     * Can be 'slide' or 'container'. Defines a way how to control another slider: slide by slide
     * (with respect to other slider's grid) or depending on all slides/container
     * (depending on total slider percentage).
     *
     * @default 'slide'
     */
    by?: 'slide' | 'container' | undefined;
}
 
export interface A11yOptions {
    /**
     * Enables A11y
     *
     * @default true
     */
    enabled?: boolean | undefined;
 
    /**
     * Message for screen readers for previous button
     *
     * @default 'Previous slide'
     */
    prevSlideMessage?: string | undefined;
 
    /**
     * Message for screen readers for next button
     *
     * @default 'Next slide'
     */
    nextSlideMessage?: string | undefined;
 
    /**
     * Message for screen readers for previous button when swiper is on first slide
     *
     * @default 'This is the first slide'
     */
    firstSlideMessage?: string | undefined;
 
    /**
     * Message for screen readers for previous button when swiper is on last slide
     *
     * @default 'This is the last slide'
     */
    lastSlideMessage?: string | undefined;
 
    /**
     * Message for screen readers for single pagination bullet
     *
     * @default 'Go to slide {{index}}'
     */
    paginationBulletMessage?: string | undefined;
 
    /**
     * CSS class name of a11 notification
     *
     * @default 'swiper-notification'
     */
    notificationClass?: string | undefined;
}
 
import {
    Virtual,
    Keyboard,
    Mousewheel,
    Navigation,
    Pagination,
    Scrollbar,
    Parallax,
    Zoom,
    Lazy,
    Controller,
    A11y,
    History,
    HashNavigation,
    Autoplay,
    EffectFade,
    EffectCube,
    EffectFlip,
    EffectCoverflow
} from './js/swiper.esm';
 
/**
 * Core module
 */
// XXX: This is an export assignment in `dist/js/swiper.js` (referenced by
// the "main" field of package.json) but a default export in
// `dist/js/swiper.esm.bundle.js` (referenced by the "module" field).  Short
// of trying to convince upstream to change their packaging, the best we can
// do is choose one or the other and hope that users use `esModuleInterop`.
export default class Swiper {
    /**
     * Constructs a new Swiper instance.
     *
     * @param container Where Swiper applies to.
     * @param options   Instance options.
     */
    constructor(container: SelectableElement, options?: SwiperOptions);
 
    /**
     * Object with passed initialization parameters
     */
    params: SwiperOptions;
 
    /**
     * Element with slider container.
     */
    el: HTMLElement;
 
    /**
     * Dom7 element with slider container HTML element. To get vanilla HTMLElement use el
     */
    $el: DOM7Element;
 
    /**
     * Slider wrapper HTML element.
     */
    wrapperEl: HTMLElement;
 
    /**
     * Dom7 element with slider wrapper HTML element. To get vanilla HTMLElement use wrapperEl
     */
    $wrapperEl: DOM7Element;
 
    /**
     * Dom7 array-like collection of slides HTML elements. To get specific slide HTMLElement use slides[1]
     */
    slides: DOM7Element[];
 
    /**
     * Width of container
     */
    width: number;
 
    /**
     * Height of container
     */
    height: number;
 
    /**
     * Current value of wrapper translate
     */
    translate: number;
 
    /**
     * Current progress of wrapper translate (from 0 to 1)
     */
    progress: number;
 
    /**
     * Index number of currently active slide.
     *
     * @note Note, that in loop mode active index value will be always shifted
     * on a number of looped/duplicated slides.
     */
    activeIndex: number;
 
    /**
     * Index number of currently active slide considering duplicated slides in loop mode
     */
    realIndex: number;
 
    /**
     * Index number of previously active slide
     */
    previousIndex: number;
 
    /**
     * true if slider on most "left"/"top" position
     */
    isBeginning: true;
 
    /**
     * true if slider on most "right"/"bottom" position
     */
    isEnd: boolean;
 
    /**
     * true if swiper is in transition
     */
    animating: boolean;
 
    /**
     * Object with the following touch event properties:
     */
    touches: {
        startX: number;
        startY: number;
        currentX: number;
        currentY: number;
        diff: number;
    };
 
    /**
     * Index number of last clicked slide
     */
    clickedIndex: number;
 
    /**
     * Link to last clicked slide (HTMLElement)
     */
    clickedSlide: HTMLElement;
 
    /**
     * Disable/enable ability to slide to the next slides by assigning false/true to this property
     *
     * @default true
     */
    allowSlideNext: boolean;
 
    /**
     * Disable/enable ability to slide to the previous slides by assigning false/true to this property
     *
     * @default true
     */
    allowSlidePrev: boolean;
 
    /**
     * Disable/enable ability move slider by grabbing it with
     * mouse or by touching it with finger (on touch screens)
     * by assigning false/true to this property
     *
     * @default true
     */
    allowTouchMove: boolean;
 
    // Methods
    /**
     * Run transition to next slide.
     *
     * @param speed Transition duration (in ms).
     * @param runCallbacks Set it to false (by default it is true) and transition will
     *  not produce transition events.
     */
    slideNext(speed?: number, runCallbacks?: boolean): void;
 
    /**
     * Run transition to previous slide.
     *
     * @param speed Transition duration (in ms).
     * @param runCallbacks Set it to false (by default it is true) and transition will
     *  not produce transition events.
     */
    slidePrev(speed?: number, runCallbacks?: boolean): void;
 
    /**
     * Run transition to the slide with index number equal to 'index' parameter for the
     *  duration equal to 'speed' parameter.
     *
     * @param index Index number of slide.
     * @param speed Transition duration (in ms).
     * @param runCallbacks Set it to false (by default it is true) and transition will
     *  not produce transition events.
     */
    slideTo(index: number, speed?: number, runCallbacks?: boolean): void;
 
    /**
     * Does the same as .slideTo but for the case when used with enabled loop. So this
     * method will slide to slides with realIndex matching to passed index
     *
     * @param index Index number of slide.
     * @param speed Transition duration (in ms).
     * @param runCallbacks Set it to false (by default it is true) and transition will
     *  not produce transition events.
     */
    slideToLoop(index: number, speed?: number, runCallbacks?: boolean): void;
 
    /**
     * Reset swiper position to currently active slide for the duration equal to 'speed'
     * parameter.
     *
     * @param speed Transition duration (in ms).
     * @param runCallbacks Set it to false (by default it is true) and transition will
     *  not produce transition events.
     */
    slideReset(speed?: number, runCallbacks?: boolean): void;
 
    /**
     * Reset swiper position to closest slide/snap point for the duration equal to 'speed' parameter.
     *
     * @param speed Transition duration (in ms).
     * @param runCallbacks Set it to false (by default it is true) and transition will
     *  not produce transition events.
     */
    slideToClosest(speed?: number, runCallbacks?: boolean): void;
 
    /**
     * Force swiper to update its height (when autoHeight enabled) for the duration equal to
     * 'speed' parameter
     *
     * @param speed Transition duration (in ms).
     */
    updateAutoHeight(speed?: number): void;
 
    /**
     * You should call it after you add/remove slides
     * manually, or after you hide/show it, or do any
     * custom DOM modifications with Swiper
     * This method also includes subcall of the following
     * methods which you can use separately:
     */
    update(): void;
 
    /**
     * recalculate size of swiper container
     */
    updateSize(): void;
 
    /**
     * recalculate number of slides and their offsets. Useful after you add/remove slides with JavaScript
     */
    updateSlides(): void;
 
    /**
     * recalculate swiper progress
     */
    updateProgress(): void;
 
    /**
     * update active/prev/next classes on slides and bullets
     */
    updateSlidesClasses(): void;
 
    /**
     * tach all events listeners
     */
    detachEvents(): void;
 
    /**
     * Atach all events listeners again
     */
    attachEvents(): void;
 
    /**
     * Destroy slider instance and detach all events listeners, where
     */
    destroy(deleteInstance: boolean, cleanupStyles: boolean): void;
 
    /**
     * Set it to false (by default it is true) to not to delete Swiper instance
     */
    deleteInstance: boolean;
 
    /**
     * Set it to true (by default it is true) and all
     * custom styles will be removed from slides,
     * wrapper and container. Useful if you need to
     * destroy Swiper and to init again with new
     * options or in different direction
     */
    cleanStyles: boolean;
 
    /**
     * Installs modules on Swiper in runtime.
     */
    static use(modules: SwiperModule[]): void;
 
    /**
     * Add new slides to the end. slides could be
     * HTMLElement or HTML string with new slide or
     * array with such slides, for example:
     *
     * @example appendSlide('<div class="swiper-slide">Slide 10"</div>')
     * @example
     * appendSlide([
     *  '<div class="swiper-slide">Slide 10"</div>',
     *  '<div class="swiper-slide">Slide 11"</div>'
     * ]);
     */
    appendSlide(slides: HTMLElement | string | string[]): void;
 
    /**
     * Add new slides to the beginning. slides could be
     * HTMLElement or HTML string with new slide or array with such slides, for example:
     *
     * @example prependSlide('<div class="swiper-slide">Slide 0"</div>')
     * @example prependSlide([
     *  '<div class="swiper-slide">Slide 1"</div>',
     *  '<div class="swiper-slide">Slide 2"</div>'
     * ]);
     */
    prependSlide(slides: HTMLElement | string | string[]): void;
 
    /**
     * Add new slides to the required index. slides could be HTMLElement or HTML string with new slide or array with such slides, for example:
     *
     * @example addSlide(1, '<div class="swiper-slide">Slide 10"</div>')
     * @example addSlide(1, [
     *  '<div class="swiper-slide">Slide 10"</div>',
     *  '<div class="swiper-slide">Slide 11"</div>'
     * ]);
     */
    addSlide(index: number, slides: HTMLElement | string | string[]): void;
 
    /**
     * Remove selected slides. slideIndex could be a number with slide index to remove or array with indexes.
     *
     * @example removeSlide(0); // remove first slide
     * @example removeSlide([0, 1]); // remove first and second slides
     * @example removeAllSlides();    // Remove all slides
     */
    removeSlide(slideIndex: number | number[]): void;
 
    /**
     * Remove all slides
     */
    removeAllSlides(): void;
 
    /**
     * Set custom css3 transform's translate value for swiper wrapper
     */
    setTranslate(translate: any): void;
 
    /**
     * Get current value of swiper wrapper css3 transform translate
     */
    getTranslate(): any;
 
    /**
     * Animate custom css3 transform's translate value for swiper wrapper
     */
    translateTo(translate: number, speed: number, runCallbacks?: boolean, translateBounds?: boolean): any;
 
    /**
     * Add event listener
     */
    on(event: SwiperEvent, handler: () => void): void;
 
    /**
     * Add event listener that will be executed only once
     */
    once(event: SwiperEvent, handler: () => void): void;
 
    /**
     * Remove event listener for specified event
     * If no handler specified, removes all listeners for specified event
     */
    off(event: SwiperEvent, handler?: () => void): void;
 
    /**
     * Disable mousewheel control
     */
    disableMousewheelControl(): void;
 
    /**
     * Enable mousewheel control
     */
    enableMousewheelControl(): void;
 
    /**
     * Disable keyboard control
     */
    disableKeyboardControl(): void;
 
    /**
     * Enable keyboard control
     */
    enableKeyboardControl(): void;
 
    /**
     * Unset grab cursor
     */
    unsetGrabCursor(): void;
 
    /**
     * Set grab cursor
     */
    setGrabCursor(): void;
 
    // Components
 
    /**
     * Swiper Navigation module.
     */
    navigation?: Navigation | undefined;
 
    /**
     * Swiper Pagination module.
     */
    pagination?: Pagination | undefined;
 
    /**
     * Swiper Scrollbar module.
     */
    scrollbar?: Scrollbar | undefined;
 
    /**
     * Swiper Autoplay module.
     */
    autoplay?: Autoplay | undefined;
 
    /**
     * Swiper Parallax module.
     */
    parallax?: Parallax | undefined;
 
    /**
     * Swiper Lazy module.
     */
    lazy?: Lazy | undefined;
 
    /**
     * Swiper FadeEffect module.
     */
    fadeEffect?: EffectFade | undefined;
 
    /**
     * Swiper CoverflowEffect module.
     */
    coverflowEffect?: EffectCoverflow | undefined;
 
    /**
     * Swiper FlipEffect module.
     */
    flipEffect?: EffectFlip | undefined;
 
    /**
     * Swiper CubeEffect module.
     */
    cubeEffect?: EffectCube | undefined;
 
    /**
     * Swiper Thumbs module.
     */
    thumbs?: object | undefined;
 
    /**
     * Swiper Zoom module.
     */
    zoom?: Zoom | undefined;
 
    /**
     * Swiper Keyboard module.
     */
    keyboard?: Keyboard | undefined;
 
    /**
     * Swiper Mousewheel module.
     */
    mousewheel?: Mousewheel | undefined;
 
    /**
     * Swiper Virtual module.
     */
    virtual?: Virtual | undefined;
 
    /**
     * Swiper HashNavigation module.
     */
    hashNavigation?: HashNavigation | undefined;
 
    /**
     * Swiper History module.
     */
    history?: History | undefined;
 
    /**
     * Swiper Controller module.
     */
    controller?: Controller | undefined;
 
    /**
     * Swiper A11y module.
     */
    a11y?: A11y | undefined;
}