-
Notifications
You must be signed in to change notification settings - Fork 19
/
mdi.d.ts
7447 lines (7447 loc) · 347 KB
/
mdi.d.ts
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
export declare const mdiAbTesting: string;
export declare const mdiAbacus: string;
export declare const mdiAbjadArabic: string;
export declare const mdiAbjadHebrew: string;
export declare const mdiAbugidaDevanagari: string;
export declare const mdiAbugidaThai: string;
export declare const mdiAccessPoint: string;
export declare const mdiAccessPointCheck: string;
export declare const mdiAccessPointMinus: string;
export declare const mdiAccessPointNetwork: string;
export declare const mdiAccessPointNetworkOff: string;
export declare const mdiAccessPointOff: string;
export declare const mdiAccessPointPlus: string;
export declare const mdiAccessPointRemove: string;
export declare const mdiAccount: string;
export declare const mdiAccountAlert: string;
export declare const mdiAccountAlertOutline: string;
export declare const mdiAccountArrowDown: string;
export declare const mdiAccountArrowDownOutline: string;
export declare const mdiAccountArrowLeft: string;
export declare const mdiAccountArrowLeftOutline: string;
export declare const mdiAccountArrowRight: string;
export declare const mdiAccountArrowRightOutline: string;
export declare const mdiAccountArrowUp: string;
export declare const mdiAccountArrowUpOutline: string;
export declare const mdiAccountBadge: string;
export declare const mdiAccountBadgeOutline: string;
export declare const mdiAccountBox: string;
export declare const mdiAccountBoxEditOutline: string;
export declare const mdiAccountBoxMinusOutline: string;
export declare const mdiAccountBoxMultiple: string;
export declare const mdiAccountBoxMultipleOutline: string;
export declare const mdiAccountBoxOutline: string;
export declare const mdiAccountBoxPlusOutline: string;
export declare const mdiAccountCancel: string;
export declare const mdiAccountCancelOutline: string;
export declare const mdiAccountCard: string;
export declare const mdiAccountCardOutline: string;
export declare const mdiAccountCash: string;
export declare const mdiAccountCashOutline: string;
export declare const mdiAccountCheck: string;
export declare const mdiAccountCheckOutline: string;
export declare const mdiAccountChild: string;
export declare const mdiAccountChildCircle: string;
export declare const mdiAccountChildOutline: string;
export declare const mdiAccountCircle: string;
export declare const mdiAccountCircleOutline: string;
export declare const mdiAccountClock: string;
export declare const mdiAccountClockOutline: string;
export declare const mdiAccountCog: string;
export declare const mdiAccountCogOutline: string;
export declare const mdiAccountConvert: string;
export declare const mdiAccountConvertOutline: string;
export declare const mdiAccountCowboyHat: string;
export declare const mdiAccountCowboyHatOutline: string;
export declare const mdiAccountCreditCard: string;
export declare const mdiAccountCreditCardOutline: string;
export declare const mdiAccountDetails: string;
export declare const mdiAccountDetailsOutline: string;
export declare const mdiAccountEdit: string;
export declare const mdiAccountEditOutline: string;
export declare const mdiAccountEye: string;
export declare const mdiAccountEyeOutline: string;
export declare const mdiAccountFile: string;
export declare const mdiAccountFileOutline: string;
export declare const mdiAccountFileText: string;
export declare const mdiAccountFileTextOutline: string;
export declare const mdiAccountFilter: string;
export declare const mdiAccountFilterOutline: string;
export declare const mdiAccountGroup: string;
export declare const mdiAccountGroupOutline: string;
export declare const mdiAccountHardHat: string;
export declare const mdiAccountHardHatOutline: string;
export declare const mdiAccountHeart: string;
export declare const mdiAccountHeartOutline: string;
export declare const mdiAccountInjury: string;
export declare const mdiAccountInjuryOutline: string;
export declare const mdiAccountKey: string;
export declare const mdiAccountKeyOutline: string;
export declare const mdiAccountLock: string;
export declare const mdiAccountLockOpen: string;
export declare const mdiAccountLockOpenOutline: string;
export declare const mdiAccountLockOutline: string;
export declare const mdiAccountMinus: string;
export declare const mdiAccountMinusOutline: string;
export declare const mdiAccountMultiple: string;
export declare const mdiAccountMultipleCheck: string;
export declare const mdiAccountMultipleCheckOutline: string;
export declare const mdiAccountMultipleMinus: string;
export declare const mdiAccountMultipleMinusOutline: string;
export declare const mdiAccountMultipleOutline: string;
export declare const mdiAccountMultiplePlus: string;
export declare const mdiAccountMultiplePlusOutline: string;
export declare const mdiAccountMultipleRemove: string;
export declare const mdiAccountMultipleRemoveOutline: string;
export declare const mdiAccountMusic: string;
export declare const mdiAccountMusicOutline: string;
export declare const mdiAccountNetwork: string;
export declare const mdiAccountNetworkOff: string;
export declare const mdiAccountNetworkOffOutline: string;
export declare const mdiAccountNetworkOutline: string;
export declare const mdiAccountOff: string;
export declare const mdiAccountOffOutline: string;
export declare const mdiAccountOutline: string;
export declare const mdiAccountPlus: string;
export declare const mdiAccountPlusOutline: string;
export declare const mdiAccountQuestion: string;
export declare const mdiAccountQuestionOutline: string;
export declare const mdiAccountReactivate: string;
export declare const mdiAccountReactivateOutline: string;
export declare const mdiAccountRemove: string;
export declare const mdiAccountRemoveOutline: string;
export declare const mdiAccountSchool: string;
export declare const mdiAccountSchoolOutline: string;
export declare const mdiAccountSearch: string;
export declare const mdiAccountSearchOutline: string;
export declare const mdiAccountSettings: string;
export declare const mdiAccountSettingsOutline: string;
export declare const mdiAccountStar: string;
export declare const mdiAccountStarOutline: string;
export declare const mdiAccountSupervisor: string;
export declare const mdiAccountSupervisorCircle: string;
export declare const mdiAccountSupervisorCircleOutline: string;
export declare const mdiAccountSupervisorOutline: string;
export declare const mdiAccountSwitch: string;
export declare const mdiAccountSwitchOutline: string;
export declare const mdiAccountSync: string;
export declare const mdiAccountSyncOutline: string;
export declare const mdiAccountTag: string;
export declare const mdiAccountTagOutline: string;
export declare const mdiAccountTie: string;
export declare const mdiAccountTieHat: string;
export declare const mdiAccountTieHatOutline: string;
export declare const mdiAccountTieOutline: string;
export declare const mdiAccountTieVoice: string;
export declare const mdiAccountTieVoiceOff: string;
export declare const mdiAccountTieVoiceOffOutline: string;
export declare const mdiAccountTieVoiceOutline: string;
export declare const mdiAccountTieWoman: string;
export declare const mdiAccountVoice: string;
export declare const mdiAccountVoiceOff: string;
export declare const mdiAccountWrench: string;
export declare const mdiAccountWrenchOutline: string;
export declare const mdiAdjust: string;
export declare const mdiAdvertisements: string;
export declare const mdiAdvertisementsOff: string;
export declare const mdiAirConditioner: string;
export declare const mdiAirFilter: string;
export declare const mdiAirHorn: string;
export declare const mdiAirHumidifier: string;
export declare const mdiAirHumidifierOff: string;
export declare const mdiAirPurifier: string;
export declare const mdiAirPurifierOff: string;
export declare const mdiAirbag: string;
export declare const mdiAirballoon: string;
export declare const mdiAirballoonOutline: string;
export declare const mdiAirplane: string;
export declare const mdiAirplaneAlert: string;
export declare const mdiAirplaneCheck: string;
export declare const mdiAirplaneClock: string;
export declare const mdiAirplaneCog: string;
export declare const mdiAirplaneEdit: string;
export declare const mdiAirplaneLanding: string;
export declare const mdiAirplaneMarker: string;
export declare const mdiAirplaneMinus: string;
export declare const mdiAirplaneOff: string;
export declare const mdiAirplanePlus: string;
export declare const mdiAirplaneRemove: string;
export declare const mdiAirplaneSearch: string;
export declare const mdiAirplaneSettings: string;
export declare const mdiAirplaneTakeoff: string;
export declare const mdiAirport: string;
export declare const mdiAlarm: string;
export declare const mdiAlarmBell: string;
export declare const mdiAlarmCheck: string;
export declare const mdiAlarmLight: string;
export declare const mdiAlarmLightOff: string;
export declare const mdiAlarmLightOffOutline: string;
export declare const mdiAlarmLightOutline: string;
export declare const mdiAlarmMultiple: string;
export declare const mdiAlarmNote: string;
export declare const mdiAlarmNoteOff: string;
export declare const mdiAlarmOff: string;
export declare const mdiAlarmPanel: string;
export declare const mdiAlarmPanelOutline: string;
export declare const mdiAlarmPlus: string;
export declare const mdiAlarmSnooze: string;
export declare const mdiAlbum: string;
export declare const mdiAlert: string;
export declare const mdiAlertBox: string;
export declare const mdiAlertBoxOutline: string;
export declare const mdiAlertCircle: string;
export declare const mdiAlertCircleCheck: string;
export declare const mdiAlertCircleCheckOutline: string;
export declare const mdiAlertCircleOutline: string;
export declare const mdiAlertDecagram: string;
export declare const mdiAlertDecagramOutline: string;
export declare const mdiAlertMinus: string;
export declare const mdiAlertMinusOutline: string;
export declare const mdiAlertOctagon: string;
export declare const mdiAlertOctagonOutline: string;
export declare const mdiAlertOctagram: string;
export declare const mdiAlertOctagramOutline: string;
export declare const mdiAlertOutline: string;
export declare const mdiAlertPlus: string;
export declare const mdiAlertPlusOutline: string;
export declare const mdiAlertRemove: string;
export declare const mdiAlertRemoveOutline: string;
export declare const mdiAlertRhombus: string;
export declare const mdiAlertRhombusOutline: string;
export declare const mdiAlien: string;
export declare const mdiAlienOutline: string;
export declare const mdiAlignHorizontalCenter: string;
export declare const mdiAlignHorizontalDistribute: string;
export declare const mdiAlignHorizontalLeft: string;
export declare const mdiAlignHorizontalRight: string;
export declare const mdiAlignVerticalBottom: string;
export declare const mdiAlignVerticalCenter: string;
export declare const mdiAlignVerticalDistribute: string;
export declare const mdiAlignVerticalTop: string;
export declare const mdiAllInclusive: string;
export declare const mdiAllInclusiveBox: string;
export declare const mdiAllInclusiveBoxOutline: string;
export declare const mdiAllergy: string;
export declare const mdiAlpha: string;
export declare const mdiAlphaA: string;
export declare const mdiAlphaABox: string;
export declare const mdiAlphaABoxOutline: string;
export declare const mdiAlphaACircle: string;
export declare const mdiAlphaACircleOutline: string;
export declare const mdiAlphaB: string;
export declare const mdiAlphaBBox: string;
export declare const mdiAlphaBBoxOutline: string;
export declare const mdiAlphaBCircle: string;
export declare const mdiAlphaBCircleOutline: string;
export declare const mdiAlphaC: string;
export declare const mdiAlphaCBox: string;
export declare const mdiAlphaCBoxOutline: string;
export declare const mdiAlphaCCircle: string;
export declare const mdiAlphaCCircleOutline: string;
export declare const mdiAlphaD: string;
export declare const mdiAlphaDBox: string;
export declare const mdiAlphaDBoxOutline: string;
export declare const mdiAlphaDCircle: string;
export declare const mdiAlphaDCircleOutline: string;
export declare const mdiAlphaE: string;
export declare const mdiAlphaEBox: string;
export declare const mdiAlphaEBoxOutline: string;
export declare const mdiAlphaECircle: string;
export declare const mdiAlphaECircleOutline: string;
export declare const mdiAlphaF: string;
export declare const mdiAlphaFBox: string;
export declare const mdiAlphaFBoxOutline: string;
export declare const mdiAlphaFCircle: string;
export declare const mdiAlphaFCircleOutline: string;
export declare const mdiAlphaG: string;
export declare const mdiAlphaGBox: string;
export declare const mdiAlphaGBoxOutline: string;
export declare const mdiAlphaGCircle: string;
export declare const mdiAlphaGCircleOutline: string;
export declare const mdiAlphaH: string;
export declare const mdiAlphaHBox: string;
export declare const mdiAlphaHBoxOutline: string;
export declare const mdiAlphaHCircle: string;
export declare const mdiAlphaHCircleOutline: string;
export declare const mdiAlphaI: string;
export declare const mdiAlphaIBox: string;
export declare const mdiAlphaIBoxOutline: string;
export declare const mdiAlphaICircle: string;
export declare const mdiAlphaICircleOutline: string;
export declare const mdiAlphaJ: string;
export declare const mdiAlphaJBox: string;
export declare const mdiAlphaJBoxOutline: string;
export declare const mdiAlphaJCircle: string;
export declare const mdiAlphaJCircleOutline: string;
export declare const mdiAlphaK: string;
export declare const mdiAlphaKBox: string;
export declare const mdiAlphaKBoxOutline: string;
export declare const mdiAlphaKCircle: string;
export declare const mdiAlphaKCircleOutline: string;
export declare const mdiAlphaL: string;
export declare const mdiAlphaLBox: string;
export declare const mdiAlphaLBoxOutline: string;
export declare const mdiAlphaLCircle: string;
export declare const mdiAlphaLCircleOutline: string;
export declare const mdiAlphaM: string;
export declare const mdiAlphaMBox: string;
export declare const mdiAlphaMBoxOutline: string;
export declare const mdiAlphaMCircle: string;
export declare const mdiAlphaMCircleOutline: string;
export declare const mdiAlphaN: string;
export declare const mdiAlphaNBox: string;
export declare const mdiAlphaNBoxOutline: string;
export declare const mdiAlphaNCircle: string;
export declare const mdiAlphaNCircleOutline: string;
export declare const mdiAlphaO: string;
export declare const mdiAlphaOBox: string;
export declare const mdiAlphaOBoxOutline: string;
export declare const mdiAlphaOCircle: string;
export declare const mdiAlphaOCircleOutline: string;
export declare const mdiAlphaP: string;
export declare const mdiAlphaPBox: string;
export declare const mdiAlphaPBoxOutline: string;
export declare const mdiAlphaPCircle: string;
export declare const mdiAlphaPCircleOutline: string;
export declare const mdiAlphaQ: string;
export declare const mdiAlphaQBox: string;
export declare const mdiAlphaQBoxOutline: string;
export declare const mdiAlphaQCircle: string;
export declare const mdiAlphaQCircleOutline: string;
export declare const mdiAlphaR: string;
export declare const mdiAlphaRBox: string;
export declare const mdiAlphaRBoxOutline: string;
export declare const mdiAlphaRCircle: string;
export declare const mdiAlphaRCircleOutline: string;
export declare const mdiAlphaS: string;
export declare const mdiAlphaSBox: string;
export declare const mdiAlphaSBoxOutline: string;
export declare const mdiAlphaSCircle: string;
export declare const mdiAlphaSCircleOutline: string;
export declare const mdiAlphaT: string;
export declare const mdiAlphaTBox: string;
export declare const mdiAlphaTBoxOutline: string;
export declare const mdiAlphaTCircle: string;
export declare const mdiAlphaTCircleOutline: string;
export declare const mdiAlphaU: string;
export declare const mdiAlphaUBox: string;
export declare const mdiAlphaUBoxOutline: string;
export declare const mdiAlphaUCircle: string;
export declare const mdiAlphaUCircleOutline: string;
export declare const mdiAlphaV: string;
export declare const mdiAlphaVBox: string;
export declare const mdiAlphaVBoxOutline: string;
export declare const mdiAlphaVCircle: string;
export declare const mdiAlphaVCircleOutline: string;
export declare const mdiAlphaW: string;
export declare const mdiAlphaWBox: string;
export declare const mdiAlphaWBoxOutline: string;
export declare const mdiAlphaWCircle: string;
export declare const mdiAlphaWCircleOutline: string;
export declare const mdiAlphaX: string;
export declare const mdiAlphaXBox: string;
export declare const mdiAlphaXBoxOutline: string;
export declare const mdiAlphaXCircle: string;
export declare const mdiAlphaXCircleOutline: string;
export declare const mdiAlphaY: string;
export declare const mdiAlphaYBox: string;
export declare const mdiAlphaYBoxOutline: string;
export declare const mdiAlphaYCircle: string;
export declare const mdiAlphaYCircleOutline: string;
export declare const mdiAlphaZ: string;
export declare const mdiAlphaZBox: string;
export declare const mdiAlphaZBoxOutline: string;
export declare const mdiAlphaZCircle: string;
export declare const mdiAlphaZCircleOutline: string;
export declare const mdiAlphabetAurebesh: string;
export declare const mdiAlphabetCyrillic: string;
export declare const mdiAlphabetGreek: string;
export declare const mdiAlphabetLatin: string;
export declare const mdiAlphabetPiqad: string;
export declare const mdiAlphabetTengwar: string;
export declare const mdiAlphabetical: string;
export declare const mdiAlphabeticalOff: string;
export declare const mdiAlphabeticalVariant: string;
export declare const mdiAlphabeticalVariantOff: string;
export declare const mdiAltimeter: string;
export declare const mdiAmbulance: string;
export declare const mdiAmmunition: string;
export declare const mdiAmpersand: string;
export declare const mdiAmplifier: string;
export declare const mdiAmplifierOff: string;
export declare const mdiAnchor: string;
export declare const mdiAndroid: string;
export declare const mdiAndroidStudio: string;
export declare const mdiAngleAcute: string;
export declare const mdiAngleObtuse: string;
export declare const mdiAngleRight: string;
export declare const mdiAngular: string;
export declare const mdiAngularjs: string;
export declare const mdiAnimation: string;
export declare const mdiAnimationOutline: string;
export declare const mdiAnimationPlay: string;
export declare const mdiAnimationPlayOutline: string;
export declare const mdiAnsible: string;
export declare const mdiAntenna: string;
export declare const mdiAnvil: string;
export declare const mdiApacheKafka: string;
export declare const mdiApi: string;
export declare const mdiApiOff: string;
export declare const mdiApple: string;
export declare const mdiAppleFinder: string;
export declare const mdiAppleIcloud: string;
export declare const mdiAppleIos: string;
export declare const mdiAppleKeyboardCaps: string;
export declare const mdiAppleKeyboardCommand: string;
export declare const mdiAppleKeyboardControl: string;
export declare const mdiAppleKeyboardOption: string;
export declare const mdiAppleKeyboardShift: string;
export declare const mdiAppleSafari: string;
export declare const mdiApplication: string;
export declare const mdiApplicationArray: string;
export declare const mdiApplicationArrayOutline: string;
export declare const mdiApplicationBraces: string;
export declare const mdiApplicationBracesOutline: string;
export declare const mdiApplicationBrackets: string;
export declare const mdiApplicationBracketsOutline: string;
export declare const mdiApplicationCog: string;
export declare const mdiApplicationCogOutline: string;
export declare const mdiApplicationEdit: string;
export declare const mdiApplicationEditOutline: string;
export declare const mdiApplicationExport: string;
export declare const mdiApplicationImport: string;
export declare const mdiApplicationOutline: string;
export declare const mdiApplicationParentheses: string;
export declare const mdiApplicationParenthesesOutline: string;
export declare const mdiApplicationSettings: string;
export declare const mdiApplicationSettingsOutline: string;
export declare const mdiApplicationVariable: string;
export declare const mdiApplicationVariableOutline: string;
export declare const mdiApproximatelyEqual: string;
export declare const mdiApproximatelyEqualBox: string;
export declare const mdiApps: string;
export declare const mdiAppsBox: string;
export declare const mdiArch: string;
export declare const mdiArchive: string;
export declare const mdiArchiveAlert: string;
export declare const mdiArchiveAlertOutline: string;
export declare const mdiArchiveArrowDown: string;
export declare const mdiArchiveArrowDownOutline: string;
export declare const mdiArchiveArrowUp: string;
export declare const mdiArchiveArrowUpOutline: string;
export declare const mdiArchiveCancel: string;
export declare const mdiArchiveCancelOutline: string;
export declare const mdiArchiveCheck: string;
export declare const mdiArchiveCheckOutline: string;
export declare const mdiArchiveClock: string;
export declare const mdiArchiveClockOutline: string;
export declare const mdiArchiveCog: string;
export declare const mdiArchiveCogOutline: string;
export declare const mdiArchiveEdit: string;
export declare const mdiArchiveEditOutline: string;
export declare const mdiArchiveEye: string;
export declare const mdiArchiveEyeOutline: string;
export declare const mdiArchiveLock: string;
export declare const mdiArchiveLockOpen: string;
export declare const mdiArchiveLockOpenOutline: string;
export declare const mdiArchiveLockOutline: string;
export declare const mdiArchiveMarker: string;
export declare const mdiArchiveMarkerOutline: string;
export declare const mdiArchiveMinus: string;
export declare const mdiArchiveMinusOutline: string;
export declare const mdiArchiveMusic: string;
export declare const mdiArchiveMusicOutline: string;
export declare const mdiArchiveOff: string;
export declare const mdiArchiveOffOutline: string;
export declare const mdiArchiveOutline: string;
export declare const mdiArchivePlus: string;
export declare const mdiArchivePlusOutline: string;
export declare const mdiArchiveRefresh: string;
export declare const mdiArchiveRefreshOutline: string;
export declare const mdiArchiveRemove: string;
export declare const mdiArchiveRemoveOutline: string;
export declare const mdiArchiveSearch: string;
export declare const mdiArchiveSearchOutline: string;
export declare const mdiArchiveSettings: string;
export declare const mdiArchiveSettingsOutline: string;
export declare const mdiArchiveStar: string;
export declare const mdiArchiveStarOutline: string;
export declare const mdiArchiveSync: string;
export declare const mdiArchiveSyncOutline: string;
export declare const mdiArmFlex: string;
export declare const mdiArmFlexOutline: string;
export declare const mdiArrangeBringForward: string;
export declare const mdiArrangeBringToFront: string;
export declare const mdiArrangeSendBackward: string;
export declare const mdiArrangeSendToBack: string;
export declare const mdiArrowAll: string;
export declare const mdiArrowBottomLeft: string;
export declare const mdiArrowBottomLeftBoldBox: string;
export declare const mdiArrowBottomLeftBoldBoxOutline: string;
export declare const mdiArrowBottomLeftBoldOutline: string;
export declare const mdiArrowBottomLeftThick: string;
export declare const mdiArrowBottomLeftThin: string;
export declare const mdiArrowBottomLeftThinCircleOutline: string;
export declare const mdiArrowBottomRight: string;
export declare const mdiArrowBottomRightBoldBox: string;
export declare const mdiArrowBottomRightBoldBoxOutline: string;
export declare const mdiArrowBottomRightBoldOutline: string;
export declare const mdiArrowBottomRightThick: string;
export declare const mdiArrowBottomRightThin: string;
export declare const mdiArrowBottomRightThinCircleOutline: string;
export declare const mdiArrowCollapse: string;
export declare const mdiArrowCollapseAll: string;
export declare const mdiArrowCollapseDown: string;
export declare const mdiArrowCollapseHorizontal: string;
export declare const mdiArrowCollapseLeft: string;
export declare const mdiArrowCollapseRight: string;
export declare const mdiArrowCollapseUp: string;
export declare const mdiArrowCollapseVertical: string;
export declare const mdiArrowDecision: string;
export declare const mdiArrowDecisionAuto: string;
export declare const mdiArrowDecisionAutoOutline: string;
export declare const mdiArrowDecisionOutline: string;
export declare const mdiArrowDown: string;
export declare const mdiArrowDownBold: string;
export declare const mdiArrowDownBoldBox: string;
export declare const mdiArrowDownBoldBoxOutline: string;
export declare const mdiArrowDownBoldCircle: string;
export declare const mdiArrowDownBoldCircleOutline: string;
export declare const mdiArrowDownBoldHexagonOutline: string;
export declare const mdiArrowDownBoldOutline: string;
export declare const mdiArrowDownBox: string;
export declare const mdiArrowDownCircle: string;
export declare const mdiArrowDownCircleOutline: string;
export declare const mdiArrowDownDropCircle: string;
export declare const mdiArrowDownDropCircleOutline: string;
export declare const mdiArrowDownLeft: string;
export declare const mdiArrowDownLeftBold: string;
export declare const mdiArrowDownRight: string;
export declare const mdiArrowDownRightBold: string;
export declare const mdiArrowDownThick: string;
export declare const mdiArrowDownThin: string;
export declare const mdiArrowDownThinCircleOutline: string;
export declare const mdiArrowExpand: string;
export declare const mdiArrowExpandAll: string;
export declare const mdiArrowExpandDown: string;
export declare const mdiArrowExpandHorizontal: string;
export declare const mdiArrowExpandLeft: string;
export declare const mdiArrowExpandRight: string;
export declare const mdiArrowExpandUp: string;
export declare const mdiArrowExpandVertical: string;
export declare const mdiArrowHorizontalLock: string;
export declare const mdiArrowLeft: string;
export declare const mdiArrowLeftBold: string;
export declare const mdiArrowLeftBoldBox: string;
export declare const mdiArrowLeftBoldBoxOutline: string;
export declare const mdiArrowLeftBoldCircle: string;
export declare const mdiArrowLeftBoldCircleOutline: string;
export declare const mdiArrowLeftBoldHexagonOutline: string;
export declare const mdiArrowLeftBoldOutline: string;
export declare const mdiArrowLeftBottom: string;
export declare const mdiArrowLeftBottomBold: string;
export declare const mdiArrowLeftBox: string;
export declare const mdiArrowLeftCircle: string;
export declare const mdiArrowLeftCircleOutline: string;
export declare const mdiArrowLeftDropCircle: string;
export declare const mdiArrowLeftDropCircleOutline: string;
export declare const mdiArrowLeftRight: string;
export declare const mdiArrowLeftRightBold: string;
export declare const mdiArrowLeftRightBoldOutline: string;
export declare const mdiArrowLeftThick: string;
export declare const mdiArrowLeftThin: string;
export declare const mdiArrowLeftThinCircleOutline: string;
export declare const mdiArrowLeftTop: string;
export declare const mdiArrowLeftTopBold: string;
export declare const mdiArrowOscillating: string;
export declare const mdiArrowOscillatingOff: string;
export declare const mdiArrowProjectile: string;
export declare const mdiArrowProjectileMultiple: string;
export declare const mdiArrowRight: string;
export declare const mdiArrowRightBold: string;
export declare const mdiArrowRightBoldBox: string;
export declare const mdiArrowRightBoldBoxOutline: string;
export declare const mdiArrowRightBoldCircle: string;
export declare const mdiArrowRightBoldCircleOutline: string;
export declare const mdiArrowRightBoldHexagonOutline: string;
export declare const mdiArrowRightBoldOutline: string;
export declare const mdiArrowRightBottom: string;
export declare const mdiArrowRightBottomBold: string;
export declare const mdiArrowRightBox: string;
export declare const mdiArrowRightCircle: string;
export declare const mdiArrowRightCircleOutline: string;
export declare const mdiArrowRightDropCircle: string;
export declare const mdiArrowRightDropCircleOutline: string;
export declare const mdiArrowRightThick: string;
export declare const mdiArrowRightThin: string;
export declare const mdiArrowRightThinCircleOutline: string;
export declare const mdiArrowRightTop: string;
export declare const mdiArrowRightTopBold: string;
export declare const mdiArrowSplitHorizontal: string;
export declare const mdiArrowSplitVertical: string;
export declare const mdiArrowTopLeft: string;
export declare const mdiArrowTopLeftBoldBox: string;
export declare const mdiArrowTopLeftBoldBoxOutline: string;
export declare const mdiArrowTopLeftBoldOutline: string;
export declare const mdiArrowTopLeftBottomRight: string;
export declare const mdiArrowTopLeftBottomRightBold: string;
export declare const mdiArrowTopLeftThick: string;
export declare const mdiArrowTopLeftThin: string;
export declare const mdiArrowTopLeftThinCircleOutline: string;
export declare const mdiArrowTopRight: string;
export declare const mdiArrowTopRightBoldBox: string;
export declare const mdiArrowTopRightBoldBoxOutline: string;
export declare const mdiArrowTopRightBoldOutline: string;
export declare const mdiArrowTopRightBottomLeft: string;
export declare const mdiArrowTopRightBottomLeftBold: string;
export declare const mdiArrowTopRightThick: string;
export declare const mdiArrowTopRightThin: string;
export declare const mdiArrowTopRightThinCircleOutline: string;
export declare const mdiArrowUDownLeft: string;
export declare const mdiArrowUDownLeftBold: string;
export declare const mdiArrowUDownRight: string;
export declare const mdiArrowUDownRightBold: string;
export declare const mdiArrowULeftBottom: string;
export declare const mdiArrowULeftBottomBold: string;
export declare const mdiArrowULeftTop: string;
export declare const mdiArrowULeftTopBold: string;
export declare const mdiArrowURightBottom: string;
export declare const mdiArrowURightBottomBold: string;
export declare const mdiArrowURightTop: string;
export declare const mdiArrowURightTopBold: string;
export declare const mdiArrowUUpLeft: string;
export declare const mdiArrowUUpLeftBold: string;
export declare const mdiArrowUUpRight: string;
export declare const mdiArrowUUpRightBold: string;
export declare const mdiArrowUp: string;
export declare const mdiArrowUpBold: string;
export declare const mdiArrowUpBoldBox: string;
export declare const mdiArrowUpBoldBoxOutline: string;
export declare const mdiArrowUpBoldCircle: string;
export declare const mdiArrowUpBoldCircleOutline: string;
export declare const mdiArrowUpBoldHexagonOutline: string;
export declare const mdiArrowUpBoldOutline: string;
export declare const mdiArrowUpBox: string;
export declare const mdiArrowUpCircle: string;
export declare const mdiArrowUpCircleOutline: string;
export declare const mdiArrowUpDown: string;
export declare const mdiArrowUpDownBold: string;
export declare const mdiArrowUpDownBoldOutline: string;
export declare const mdiArrowUpDropCircle: string;
export declare const mdiArrowUpDropCircleOutline: string;
export declare const mdiArrowUpLeft: string;
export declare const mdiArrowUpLeftBold: string;
export declare const mdiArrowUpRight: string;
export declare const mdiArrowUpRightBold: string;
export declare const mdiArrowUpThick: string;
export declare const mdiArrowUpThin: string;
export declare const mdiArrowUpThinCircleOutline: string;
export declare const mdiArrowVerticalLock: string;
export declare const mdiArtboard: string;
export declare const mdiArtstation: string;
export declare const mdiAspectRatio: string;
export declare const mdiAssistant: string;
export declare const mdiAsterisk: string;
export declare const mdiAsteriskCircleOutline: string;
export declare const mdiAt: string;
export declare const mdiAtlassian: string;
export declare const mdiAtm: string;
export declare const mdiAtom: string;
export declare const mdiAtomVariant: string;
export declare const mdiAttachment: string;
export declare const mdiAttachmentCheck: string;
export declare const mdiAttachmentLock: string;
export declare const mdiAttachmentMinus: string;
export declare const mdiAttachmentOff: string;
export declare const mdiAttachmentPlus: string;
export declare const mdiAttachmentRemove: string;
export declare const mdiAtv: string;
export declare const mdiAudioInputRca: string;
export declare const mdiAudioInputStereoMinijack: string;
export declare const mdiAudioInputXlr: string;
export declare const mdiAudioVideo: string;
export declare const mdiAudioVideoOff: string;
export declare const mdiAugmentedReality: string;
export declare const mdiAurora: string;
export declare const mdiAutoDownload: string;
export declare const mdiAutoFix: string;
export declare const mdiAutoMode: string;
export declare const mdiAutoUpload: string;
export declare const mdiAutorenew: string;
export declare const mdiAutorenewOff: string;
export declare const mdiAvTimer: string;
export declare const mdiAwning: string;
export declare const mdiAwningOutline: string;
export declare const mdiAws: string;
export declare const mdiAxe: string;
export declare const mdiAxeBattle: string;
export declare const mdiAxis: string;
export declare const mdiAxisArrow: string;
export declare const mdiAxisArrowInfo: string;
export declare const mdiAxisArrowLock: string;
export declare const mdiAxisLock: string;
export declare const mdiAxisXArrow: string;
export declare const mdiAxisXArrowLock: string;
export declare const mdiAxisXRotateClockwise: string;
export declare const mdiAxisXRotateCounterclockwise: string;
export declare const mdiAxisXYArrowLock: string;
export declare const mdiAxisYArrow: string;
export declare const mdiAxisYArrowLock: string;
export declare const mdiAxisYRotateClockwise: string;
export declare const mdiAxisYRotateCounterclockwise: string;
export declare const mdiAxisZArrow: string;
export declare const mdiAxisZArrowLock: string;
export declare const mdiAxisZRotateClockwise: string;
export declare const mdiAxisZRotateCounterclockwise: string;
export declare const mdiBabel: string;
export declare const mdiBaby: string;
export declare const mdiBabyBottle: string;
export declare const mdiBabyBottleOutline: string;
export declare const mdiBabyBuggy: string;
export declare const mdiBabyBuggyOff: string;
export declare const mdiBabyCarriage: string;
export declare const mdiBabyCarriageOff: string;
export declare const mdiBabyFace: string;
export declare const mdiBabyFaceOutline: string;
export declare const mdiBackburger: string;
export declare const mdiBackspace: string;
export declare const mdiBackspaceOutline: string;
export declare const mdiBackspaceReverse: string;
export declare const mdiBackspaceReverseOutline: string;
export declare const mdiBackupRestore: string;
export declare const mdiBacteria: string;
export declare const mdiBacteriaOutline: string;
export declare const mdiBadgeAccount: string;
export declare const mdiBadgeAccountAlert: string;
export declare const mdiBadgeAccountAlertOutline: string;
export declare const mdiBadgeAccountHorizontal: string;
export declare const mdiBadgeAccountHorizontalOutline: string;
export declare const mdiBadgeAccountOutline: string;
export declare const mdiBadminton: string;
export declare const mdiBagCarryOn: string;
export declare const mdiBagCarryOnCheck: string;
export declare const mdiBagCarryOnOff: string;
export declare const mdiBagChecked: string;
export declare const mdiBagPersonal: string;
export declare const mdiBagPersonalOff: string;
export declare const mdiBagPersonalOffOutline: string;
export declare const mdiBagPersonalOutline: string;
export declare const mdiBagPersonalPlus: string;
export declare const mdiBagPersonalPlusOutline: string;
export declare const mdiBagPersonalTag: string;
export declare const mdiBagPersonalTagOutline: string;
export declare const mdiBagSuitcase: string;
export declare const mdiBagSuitcaseOff: string;
export declare const mdiBagSuitcaseOffOutline: string;
export declare const mdiBagSuitcaseOutline: string;
export declare const mdiBaguette: string;
export declare const mdiBalcony: string;
export declare const mdiBalloon: string;
export declare const mdiBallot: string;
export declare const mdiBallotOutline: string;
export declare const mdiBallotRecount: string;
export declare const mdiBallotRecountOutline: string;
export declare const mdiBandage: string;
export declare const mdiBank: string;
export declare const mdiBankCheck: string;
export declare const mdiBankCircle: string;
export declare const mdiBankCircleOutline: string;
export declare const mdiBankMinus: string;
export declare const mdiBankOff: string;
export declare const mdiBankOffOutline: string;
export declare const mdiBankOutline: string;
export declare const mdiBankPlus: string;
export declare const mdiBankRemove: string;
export declare const mdiBankTransfer: string;
export declare const mdiBankTransferIn: string;
export declare const mdiBankTransferOut: string;
export declare const mdiBarcode: string;
export declare const mdiBarcodeOff: string;
export declare const mdiBarcodeScan: string;
export declare const mdiBarley: string;
export declare const mdiBarleyOff: string;
export declare const mdiBarn: string;
export declare const mdiBarrel: string;
export declare const mdiBarrelOutline: string;
export declare const mdiBaseball: string;
export declare const mdiBaseballBat: string;
export declare const mdiBaseballDiamond: string;
export declare const mdiBaseballDiamondOutline: string;
export declare const mdiBaseballOutline: string;
export declare const mdiBash: string;
export declare const mdiBasket: string;
export declare const mdiBasketCheck: string;
export declare const mdiBasketCheckOutline: string;
export declare const mdiBasketFill: string;
export declare const mdiBasketMinus: string;
export declare const mdiBasketMinusOutline: string;
export declare const mdiBasketOff: string;
export declare const mdiBasketOffOutline: string;
export declare const mdiBasketOutline: string;
export declare const mdiBasketPlus: string;
export declare const mdiBasketPlusOutline: string;
export declare const mdiBasketRemove: string;
export declare const mdiBasketRemoveOutline: string;
export declare const mdiBasketUnfill: string;
export declare const mdiBasketball: string;
export declare const mdiBasketballHoop: string;
export declare const mdiBasketballHoopOutline: string;
export declare const mdiBat: string;
export declare const mdiBathtub: string;
export declare const mdiBathtubOutline: string;
export declare const mdiBattery: string;
export declare const mdiBattery10: string;
export declare const mdiBattery10Bluetooth: string;
export declare const mdiBattery20: string;
export declare const mdiBattery20Bluetooth: string;
export declare const mdiBattery30: string;
export declare const mdiBattery30Bluetooth: string;
export declare const mdiBattery40: string;
export declare const mdiBattery40Bluetooth: string;
export declare const mdiBattery50: string;
export declare const mdiBattery50Bluetooth: string;
export declare const mdiBattery60: string;
export declare const mdiBattery60Bluetooth: string;
export declare const mdiBattery70: string;
export declare const mdiBattery70Bluetooth: string;
export declare const mdiBattery80: string;
export declare const mdiBattery80Bluetooth: string;
export declare const mdiBattery90: string;
export declare const mdiBattery90Bluetooth: string;
export declare const mdiBatteryAlert: string;
export declare const mdiBatteryAlertBluetooth: string;
export declare const mdiBatteryAlertVariant: string;
export declare const mdiBatteryAlertVariantOutline: string;
export declare const mdiBatteryArrowDown: string;
export declare const mdiBatteryArrowDownOutline: string;
export declare const mdiBatteryArrowUp: string;
export declare const mdiBatteryArrowUpOutline: string;
export declare const mdiBatteryBluetooth: string;
export declare const mdiBatteryBluetoothVariant: string;
export declare const mdiBatteryCharging: string;
export declare const mdiBatteryCharging10: string;
export declare const mdiBatteryCharging100: string;
export declare const mdiBatteryCharging20: string;
export declare const mdiBatteryCharging30: string;
export declare const mdiBatteryCharging40: string;
export declare const mdiBatteryCharging50: string;
export declare const mdiBatteryCharging60: string;
export declare const mdiBatteryCharging70: string;
export declare const mdiBatteryCharging80: string;
export declare const mdiBatteryCharging90: string;
export declare const mdiBatteryChargingHigh: string;
export declare const mdiBatteryChargingLow: string;
export declare const mdiBatteryChargingMedium: string;
export declare const mdiBatteryChargingOutline: string;
export declare const mdiBatteryChargingWireless: string;
export declare const mdiBatteryChargingWireless10: string;
export declare const mdiBatteryChargingWireless20: string;
export declare const mdiBatteryChargingWireless30: string;
export declare const mdiBatteryChargingWireless40: string;
export declare const mdiBatteryChargingWireless50: string;
export declare const mdiBatteryChargingWireless60: string;
export declare const mdiBatteryChargingWireless70: string;
export declare const mdiBatteryChargingWireless80: string;
export declare const mdiBatteryChargingWireless90: string;
export declare const mdiBatteryChargingWirelessAlert: string;
export declare const mdiBatteryChargingWirelessOutline: string;
export declare const mdiBatteryCheck: string;
export declare const mdiBatteryCheckOutline: string;
export declare const mdiBatteryClock: string;
export declare const mdiBatteryClockOutline: string;
export declare const mdiBatteryHeart: string;
export declare const mdiBatteryHeartOutline: string;
export declare const mdiBatteryHeartVariant: string;
export declare const mdiBatteryHigh: string;
export declare const mdiBatteryLock: string;
export declare const mdiBatteryLockOpen: string;
export declare const mdiBatteryLow: string;
export declare const mdiBatteryMedium: string;
export declare const mdiBatteryMinus: string;
export declare const mdiBatteryMinusOutline: string;
export declare const mdiBatteryMinusVariant: string;
export declare const mdiBatteryNegative: string;
export declare const mdiBatteryOff: string;
export declare const mdiBatteryOffOutline: string;
export declare const mdiBatteryOutline: string;
export declare const mdiBatteryPlus: string;
export declare const mdiBatteryPlusOutline: string;
export declare const mdiBatteryPlusVariant: string;
export declare const mdiBatteryPositive: string;
export declare const mdiBatteryRemove: string;
export declare const mdiBatteryRemoveOutline: string;
export declare const mdiBatterySync: string;
export declare const mdiBatterySyncOutline: string;
export declare const mdiBatteryUnknown: string;
export declare const mdiBatteryUnknownBluetooth: string;
export declare const mdiBeach: string;
export declare const mdiBeaker: string;
export declare const mdiBeakerAlert: string;
export declare const mdiBeakerAlertOutline: string;
export declare const mdiBeakerCheck: string;
export declare const mdiBeakerCheckOutline: string;
export declare const mdiBeakerMinus: string;
export declare const mdiBeakerMinusOutline: string;
export declare const mdiBeakerOutline: string;
export declare const mdiBeakerPlus: string;
export declare const mdiBeakerPlusOutline: string;
export declare const mdiBeakerQuestion: string;
export declare const mdiBeakerQuestionOutline: string;
export declare const mdiBeakerRemove: string;
export declare const mdiBeakerRemoveOutline: string;
export declare const mdiBed: string;
export declare const mdiBedClock: string;
export declare const mdiBedDouble: string;
export declare const mdiBedDoubleOutline: string;
export declare const mdiBedEmpty: string;
export declare const mdiBedKing: string;
export declare const mdiBedKingOutline: string;
export declare const mdiBedOutline: string;
export declare const mdiBedQueen: string;
export declare const mdiBedQueenOutline: string;
export declare const mdiBedSingle: string;
export declare const mdiBedSingleOutline: string;
export declare const mdiBee: string;
export declare const mdiBeeFlower: string;
export declare const mdiBeehiveOffOutline: string;
export declare const mdiBeehiveOutline: string;
export declare const mdiBeekeeper: string;
export declare const mdiBeer: string;
export declare const mdiBeerOutline: string;
export declare const mdiBell: string;
export declare const mdiBellAlert: string;
export declare const mdiBellAlertOutline: string;
export declare const mdiBellBadge: string;
export declare const mdiBellBadgeOutline: string;
export declare const mdiBellCancel: string;
export declare const mdiBellCancelOutline: string;
export declare const mdiBellCheck: string;
export declare const mdiBellCheckOutline: string;
export declare const mdiBellCircle: string;
export declare const mdiBellCircleOutline: string;
export declare const mdiBellCog: string;
export declare const mdiBellCogOutline: string;
export declare const mdiBellMinus: string;
export declare const mdiBellMinusOutline: string;
export declare const mdiBellOff: string;
export declare const mdiBellOffOutline: string;
export declare const mdiBellOutline: string;
export declare const mdiBellPlus: string;
export declare const mdiBellPlusOutline: string;
export declare const mdiBellRemove: string;
export declare const mdiBellRemoveOutline: string;
export declare const mdiBellRing: string;
export declare const mdiBellRingOutline: string;
export declare const mdiBellSleep: string;
export declare const mdiBellSleepOutline: string;
export declare const mdiBench: string;
export declare const mdiBenchBack: string;
export declare const mdiBeta: string;
export declare const mdiBetamax: string;
export declare const mdiBiathlon: string;
export declare const mdiBicycle: string;
export declare const mdiBicycleBasket: string;
export declare const mdiBicycleCargo: string;
export declare const mdiBicycleElectric: string;
export declare const mdiBicyclePennyFarthing: string;
export declare const mdiBike: string;
export declare const mdiBikeFast: string;
export declare const mdiBikePedal: string;
export declare const mdiBikePedalClipless: string;
export declare const mdiBikePedalMountain: string;
export declare const mdiBillboard: string;
export declare const mdiBilliards: string;
export declare const mdiBilliardsRack: string;
export declare const mdiBinoculars: string;
export declare const mdiBio: string;
export declare const mdiBiohazard: string;
export declare const mdiBird: string;
export declare const mdiBitbucket: string;
export declare const mdiBitcoin: string;
export declare const mdiBlackMesa: string;
export declare const mdiBlender: string;
export declare const mdiBlenderOutline: string;
export declare const mdiBlenderSoftware: string;
export declare const mdiBlinds: string;
export declare const mdiBlindsHorizontal: string;
export declare const mdiBlindsHorizontalClosed: string;
export declare const mdiBlindsOpen: string;
export declare const mdiBlindsVertical: string;
export declare const mdiBlindsVerticalClosed: string;
export declare const mdiBlockHelper: string;
export declare const mdiBloodBag: string;
export declare const mdiBluetooth: string;
export declare const mdiBluetoothAudio: string;
export declare const mdiBluetoothConnect: string;
export declare const mdiBluetoothOff: string;
export declare const mdiBluetoothSettings: string;
export declare const mdiBluetoothTransfer: string;
export declare const mdiBlur: string;
export declare const mdiBlurLinear: string;
export declare const mdiBlurOff: string;
export declare const mdiBlurRadial: string;
export declare const mdiBolt: string;
export declare const mdiBomb: string;
export declare const mdiBombOff: string;
export declare const mdiBone: string;
export declare const mdiBoneOff: string;
export declare const mdiBook: string;
export declare const mdiBookAccount: string;
export declare const mdiBookAccountOutline: string;
export declare const mdiBookAlert: string;
export declare const mdiBookAlertOutline: string;
export declare const mdiBookAlphabet: string;
export declare const mdiBookArrowDown: string;
export declare const mdiBookArrowDownOutline: string;
export declare const mdiBookArrowLeft: string;
export declare const mdiBookArrowLeftOutline: string;
export declare const mdiBookArrowRight: string;
export declare const mdiBookArrowRightOutline: string;
export declare const mdiBookArrowUp: string;