@m4l/styles 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/index.js +10 -10
  2. package/package.json +1 -1
  3. package/theme/{defaultThemeOptions.364b28b6.js → defaultThemeOptions.d67fe64c.js} +7 -7
  4. package/theme/index.efa44d2d.js +7 -0
  5. package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +53 -0
  6. package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +42 -4
  7. package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +72 -96
  8. package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +144 -59
  9. package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +1959 -37
  10. package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +8 -12
  11. package/theme/overrides/M4LExtendedComponents/M4LCommonActions.d.ts +1 -1
  12. package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +9 -10
  13. package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +7 -6
  14. package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +913 -0
  15. package/theme/overrides/M4LExtendedComponents/M4LPaperForm.d.ts +43 -0
  16. package/theme/overrides/M4LExtendedComponents/M4LPeriod.d.ts +99 -0
  17. package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +10 -0
  18. package/theme/overrides/M4LExtendedComponents/M4LRHFormProvider.d.ts +13 -0
  19. package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +5 -0
  20. package/theme/overrides/M4LExtendedComponents/M4LTab.d.ts +47 -0
  21. package/theme/overrides/M4LExtendedComponents/M4LTooltip.d.ts +26 -0
  22. package/theme/overrides/M4LExtendedComponents/M4LinearProgressIndeterminate.d.ts +56 -0
  23. package/theme/overrides/M4LExtendedComponents/{index.9d7c79cc.js → index.39bae580.js} +1082 -223
  24. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +1 -0
  25. package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +0 -1
  26. package/theme/overrides/M4LRHFComponents/M4LRHFPeriod.d.ts +10 -0
  27. package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +16 -0
  28. package/theme/overrides/M4LRHFComponents/M4LRHFUploadImage.d.ts +172 -0
  29. package/theme/overrides/M4LRHFComponents/{index.b7f8e30c.js → index.1406e2ed.js} +209 -11
  30. package/theme/overrides/MUIComponents/Tabs.d.ts +23 -3
  31. package/theme/overrides/MUIComponents/{index.56660771.js → index.e3d060c3.js} +47 -27
  32. package/theme/overrides/index.2e62f620.js +89 -0
  33. package/theme/{palette.4b477f9b.js → palette.95c4f9c8.js} +17 -17
  34. package/theme/palette.d.ts +4 -4
  35. package/theme/{shadows.b2f38616.js → shadows.354bbb03.js} +1 -1
  36. package/theme/{typography.1db0276b.js → typography.61f909b7.js} +4 -4
  37. package/types/augmentations.d.ts +3 -1
  38. package/utils/{getColorPresets.f3113d85.js → getColorPresets.d73f30ad.js} +1 -1
  39. package/utils/getColorState.bde51cf7.js +159 -0
  40. package/utils/getColorState.d.ts +2 -0
  41. package/theme/index.cd1bedc8.js +0 -7
  42. package/theme/overrides/index.ff2a1a5a.js +0 -78
  43. package/utils/getColorState.456150fd.js +0 -136
@@ -12,6 +12,11 @@ export declare const M4LAreasViewer: (theme: Theme) => {
12
12
  boxShadow: string;
13
13
  borderRadius: string;
14
14
  display: string;
15
+ '&:not(.M4LAreasViewer-loading)': {
16
+ '& .M4LinearProgressIndeterminate-root': {
17
+ opacity: number;
18
+ };
19
+ };
15
20
  '& .react-resizable-handle': {
16
21
  backgroundColor: string;
17
22
  };
@@ -22,18 +27,153 @@ export declare const M4LAreasViewer: (theme: Theme) => {
22
27
  height: string;
23
28
  };
24
29
  "& .M4LAreasViewer-windowHeader": {
30
+ display: string;
31
+ flexDirection: string;
25
32
  background: string;
26
33
  padding: string;
27
34
  height: string;
35
+ minHeight: string;
28
36
  borderRadius: string;
29
37
  border: string;
30
38
  boxShadow: string;
31
39
  borderTop: string;
32
40
  borderColor: string;
41
+ '& .M4LAreasViewer-windowHeaderContent': {
42
+ display: string;
43
+ width: string;
44
+ height: string;
45
+ alignItems: string;
46
+ '& .M4LAreasViewer-windowHeaderTitle': {
47
+ display: string;
48
+ alignItems: string;
49
+ };
50
+ };
33
51
  "& .M4LTypography-root .MuiTypography-root": {
34
52
  color: string;
35
53
  };
36
54
  };
55
+ "& .M4LAreasViewer-windowToastiesContainer": {
56
+ padding: string;
57
+ top: string;
58
+ position: string;
59
+ display: string;
60
+ flexDirection: string;
61
+ width: string;
62
+ maxHeight: string;
63
+ zIndex: string;
64
+ gap: string;
65
+ background: string;
66
+ boxShadow: string;
67
+ "& .M4LAreasViewer-windowToastiesContainerTostys": {
68
+ boxSizing: string;
69
+ overflow: string;
70
+ display: string;
71
+ flexDirection: string;
72
+ width: string;
73
+ maxHeight: string;
74
+ "& .M4LAreasViewer-windowToastyContainer": {
75
+ background: string | undefined;
76
+ borderRadius: string;
77
+ padding: string;
78
+ width: string;
79
+ boxShadow: string;
80
+ gap: string;
81
+ position: string;
82
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
83
+ padding: string;
84
+ display: string;
85
+ flexDirection: string;
86
+ gap: string;
87
+ borderRadius: string;
88
+ };
89
+ "& .M4LAreasViewer-windowToastyMessage": {
90
+ color: string | undefined;
91
+ position: string;
92
+ "& .MuiLinearProgress-root": {
93
+ position: string;
94
+ width: string;
95
+ top: string;
96
+ left: string;
97
+ background: string;
98
+ "& .MuiLinearProgress-bar1Determinate .MuiLinearProgress-barColorPrimary": {
99
+ transform: string;
100
+ };
101
+ };
102
+ display: string;
103
+ alignItems: string;
104
+ padding: string;
105
+ };
106
+ "&.M4LAreasViewer-error": {
107
+ background: string | undefined;
108
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
109
+ background: string;
110
+ "& .M4LIcon-icon": {
111
+ backgroundColor: string | undefined;
112
+ };
113
+ "& .M4LAreasViewer-pinIn": {
114
+ background: string;
115
+ boxShadow: string;
116
+ border: string;
117
+ };
118
+ "& .M4LIconButton-root:hover": {
119
+ background: string;
120
+ };
121
+ };
122
+ };
123
+ "&.M4LAreasViewer-info": {
124
+ background: string | undefined;
125
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
126
+ background: string;
127
+ "& .M4LIcon-icon": {
128
+ backgroundColor: string | undefined;
129
+ };
130
+ "& .M4LAreasViewer-pinIn": {
131
+ background: string;
132
+ boxShadow: string;
133
+ border: string;
134
+ };
135
+ "& .M4LIconButton-root:hover": {
136
+ background: string;
137
+ };
138
+ };
139
+ };
140
+ "&.M4LAreasViewer-warning": {
141
+ background: string | undefined;
142
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
143
+ background: string;
144
+ "& .M4LIcon-icon": {
145
+ backgroundColor: string | undefined;
146
+ };
147
+ "& .M4LAreasViewer-pinIn": {
148
+ background: string;
149
+ boxShadow: string;
150
+ border: string;
151
+ };
152
+ "& .M4LIconButton-root:hover": {
153
+ background: string;
154
+ };
155
+ };
156
+ };
157
+ "&.M4LAreasViewer-success ": {
158
+ background: string | undefined;
159
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
160
+ background: string;
161
+ "& .M4LIcon-icon": {
162
+ backgroundColor: string | undefined;
163
+ };
164
+ "& .M4LAreasViewer-pinIn": {
165
+ background: string;
166
+ boxShadow: string;
167
+ border: string;
168
+ };
169
+ "& .M4LIconButton-root:hover": {
170
+ background: string;
171
+ };
172
+ };
173
+ };
174
+ };
175
+ };
176
+ };
37
177
  "& .M4LAreasViewer-windowContent": {
38
178
  margin: string;
39
179
  background: string;
@@ -48,25 +188,63 @@ export declare const M4LAreasViewer: (theme: Theme) => {
48
188
  borderColor: string;
49
189
  boxShadow: string | undefined;
50
190
  "& .M4LAreasViewer-windowHeader": {
191
+ display: string;
192
+ flexDirection: string;
51
193
  background: string;
194
+ gap: string;
195
+ alignItems: string;
196
+ position: string;
197
+ padding: string;
198
+ justifyContent: string;
199
+ minHeight: string;
200
+ borderBottom: string;
201
+ borderColor: string;
202
+ overflow: string;
203
+ cursor: string;
204
+ height: string;
52
205
  "& .M4LTypography-root .MuiTypography-root": {
53
206
  [x: string]: any;
54
207
  };
208
+ "& .M4LIcon-icon": {
209
+ backgroundColor: string;
210
+ };
55
211
  };
56
212
  };
57
213
  };
58
214
  };
59
215
  '& .M4LAreasViewer-panelWindowsRoot': {
216
+ background: string;
217
+ boxShadow: string;
218
+ borderRadius: string;
219
+ display: string;
220
+ alignItems: string;
221
+ margin: string;
222
+ padding: string;
223
+ gap: string;
60
224
  '& .M4LAreasViewer-panelWindowsButtonContainer': {
61
- border: string;
62
- borderColor: string;
225
+ borderRadius: string;
226
+ background: string;
227
+ boxShadow: string;
63
228
  '&.M4LAreasViewer-selected': {
64
- borderColor: string;
229
+ background: string;
230
+ boxShadow: string;
65
231
  };
66
232
  };
67
233
  };
68
234
  "& .M4LAreasViewer-windowPopupRoot": {
69
235
  boxShadow: string;
236
+ "& .M4LIcon-root.custom-handle": {
237
+ "& .M4LIcon-icon": {
238
+ backgroundColor: string;
239
+ width: string;
240
+ height: string;
241
+ minWidth: string;
242
+ minHeight: string;
243
+ boxShadow: string;
244
+ border: string;
245
+ borderColor: string;
246
+ };
247
+ };
70
248
  "& .M4LAreasViewer-windowRoot": {
71
249
  padding: string;
72
250
  background: string;
@@ -74,6 +252,11 @@ export declare const M4LAreasViewer: (theme: Theme) => {
74
252
  border: string;
75
253
  borderColor: string;
76
254
  backdropFilter: string;
255
+ '&:not(.M4LAreasViewer-loading)': {
256
+ '& .M4LinearProgressIndeterminate-root': {
257
+ opacity: number;
258
+ };
259
+ };
77
260
  '& > .react-resizable-handle': {
78
261
  backgroundColor: string;
79
262
  };
@@ -83,7 +266,6 @@ export declare const M4LAreasViewer: (theme: Theme) => {
83
266
  "& .M4LAreasViewer-windowHeader": {
84
267
  height: string;
85
268
  minHeight: string;
86
- padding: string;
87
269
  boxShadow: string;
88
270
  "& .M4LTypography-root .MuiTypography-root": {
89
271
  color: string;
@@ -98,7 +280,6 @@ export declare const M4LAreasViewer: (theme: Theme) => {
98
280
  padding: string;
99
281
  "& .M4LAreasViewer-windowHeader": {
100
282
  background: string;
101
- padding: string;
102
283
  height: string;
103
284
  borderRadius: string;
104
285
  boxShadow: string;
@@ -111,47 +292,1788 @@ export declare const M4LAreasViewer: (theme: Theme) => {
111
292
  };
112
293
  };
113
294
  };
114
- "& .M4LAreasViewer-windowModalRoot": {
115
- background: string;
295
+ "& .M4LAreasViewer-areasLoadingErrorRoot": {
296
+ display: string;
297
+ flexDirection: string;
298
+ justifyContent: string;
299
+ alignItems: string;
300
+ position: string;
301
+ inset: string;
302
+ overflow: string;
303
+ width: string;
304
+ height: string;
305
+ "& .M4LAreasViewer-areasLoadingError": {
306
+ display: string;
307
+ padding: string;
308
+ flexDirection: string;
309
+ justifyContent: string;
310
+ alignItems: string;
311
+ gap: string;
312
+ position: string;
313
+ inset: string;
314
+ "& .M4LIcon-root": {
315
+ display: string;
316
+ padding: string;
317
+ marginBottom: string;
318
+ " .M4LIcon-icon": {
319
+ width: string;
320
+ height: string;
321
+ backgroundColor: string;
322
+ };
323
+ };
324
+ "& .M4LAreasViewer-areasLoadingErrorTitle": {
325
+ [x: string]: unknown;
326
+ color: string;
327
+ '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
328
+ accentColor?: import("csstype").Property.AccentColor | undefined;
329
+ alignContent?: import("csstype").Property.AlignContent | undefined;
330
+ alignItems?: import("csstype").Property.AlignItems | undefined;
331
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
332
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
333
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
334
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
335
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
336
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
337
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
338
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
339
+ animationName?: import("csstype").Property.AnimationName | undefined;
340
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
341
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
342
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
343
+ appearance?: import("csstype").Property.Appearance | undefined;
344
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
345
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
346
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
347
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
348
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
349
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
350
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
351
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
352
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
353
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
354
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
355
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
356
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
357
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
358
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
359
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
360
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
361
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
362
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
363
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
364
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
365
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
366
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
367
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
368
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
369
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
370
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
371
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
372
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
373
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
374
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
375
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
376
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
377
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
378
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
379
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
380
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
381
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
382
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
383
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
384
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
385
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
386
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
387
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
388
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
389
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
390
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
391
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
392
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
393
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
394
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
395
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
396
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
397
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
398
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
399
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
400
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
401
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
402
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
403
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
404
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
405
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
406
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
407
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
408
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
409
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
410
+ breakInside?: import("csstype").Property.BreakInside | undefined;
411
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
412
+ caretColor?: import("csstype").Property.CaretColor | undefined;
413
+ caretShape?: import("csstype").Property.CaretShape | undefined;
414
+ clear?: import("csstype").Property.Clear | undefined;
415
+ clipPath?: import("csstype").Property.ClipPath | undefined;
416
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
417
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
418
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
419
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
420
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
421
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
422
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
423
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
424
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
425
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
426
+ contain?: import("csstype").Property.Contain | undefined;
427
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
428
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
429
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
430
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
431
+ containerName?: import("csstype").Property.ContainerName | undefined;
432
+ containerType?: import("csstype").Property.ContainerType | undefined;
433
+ content?: import("csstype").Property.Content | undefined;
434
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
435
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
436
+ counterReset?: import("csstype").Property.CounterReset | undefined;
437
+ counterSet?: import("csstype").Property.CounterSet | undefined;
438
+ cursor?: import("csstype").Property.Cursor | undefined;
439
+ direction?: import("csstype").Property.Direction | undefined;
440
+ display?: import("csstype").Property.Display | undefined;
441
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
442
+ filter?: import("csstype").Property.Filter | undefined;
443
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
444
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
445
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
446
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
447
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
448
+ float?: import("csstype").Property.Float | undefined;
449
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
450
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
451
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
452
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
453
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
454
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
455
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
456
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
457
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
458
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
459
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
460
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
461
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
462
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
463
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
464
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
465
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
466
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
467
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
468
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
469
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
470
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
471
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
472
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
473
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
474
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
475
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
476
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
477
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
478
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
479
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
480
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
481
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
482
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
483
+ height?: import("csstype").Property.Height<string | number> | undefined;
484
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
485
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
486
+ hyphens?: import("csstype").Property.Hyphens | undefined;
487
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
488
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
489
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
490
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
491
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
492
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
493
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
494
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
495
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
496
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
497
+ isolation?: import("csstype").Property.Isolation | undefined;
498
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
499
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
500
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
501
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
502
+ left?: import("csstype").Property.Left<string | number> | undefined;
503
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
504
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
505
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
506
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
507
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
508
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
509
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
510
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
511
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
512
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
513
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
514
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
515
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
516
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
517
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
518
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
519
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
520
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
521
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
522
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
523
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
524
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
525
+ maskClip?: import("csstype").Property.MaskClip | undefined;
526
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
527
+ maskImage?: import("csstype").Property.MaskImage | undefined;
528
+ maskMode?: import("csstype").Property.MaskMode | undefined;
529
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
530
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
531
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
532
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
533
+ maskType?: import("csstype").Property.MaskType | undefined;
534
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
535
+ mathShift?: import("csstype").Property.MathShift | undefined;
536
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
537
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
538
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
539
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
540
+ maxLines?: import("csstype").Property.MaxLines | undefined;
541
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
542
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
543
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
544
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
545
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
546
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
547
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
548
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
549
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
550
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
551
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
552
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
553
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
554
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
555
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
556
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
557
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
558
+ opacity?: import("csstype").Property.Opacity | undefined;
559
+ order?: import("csstype").Property.Order | undefined;
560
+ orphans?: import("csstype").Property.Orphans | undefined;
561
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
562
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
563
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
564
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
565
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
566
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
567
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
568
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
569
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
570
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
571
+ overflowX?: import("csstype").Property.OverflowX | undefined;
572
+ overflowY?: import("csstype").Property.OverflowY | undefined;
573
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
574
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
575
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
576
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
577
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
578
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
579
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
580
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
581
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
582
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
583
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
584
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
585
+ page?: import("csstype").Property.Page | undefined;
586
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
587
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
588
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
589
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
590
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
591
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
592
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
593
+ position?: import("csstype").Property.Position | undefined;
594
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
595
+ quotes?: import("csstype").Property.Quotes | undefined;
596
+ resize?: import("csstype").Property.Resize | undefined;
597
+ right?: import("csstype").Property.Right<string | number> | undefined;
598
+ rotate?: import("csstype").Property.Rotate | undefined;
599
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
600
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
601
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
602
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
603
+ scale?: import("csstype").Property.Scale | undefined;
604
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
605
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
606
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
607
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
608
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
609
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
610
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
611
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
612
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
613
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
614
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
615
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
616
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
617
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
618
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
619
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
620
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
621
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
622
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
623
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
624
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
625
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
626
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
627
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
628
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
629
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
630
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
631
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
632
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
633
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
634
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
635
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
636
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
637
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
638
+ textAlign?: import("csstype").Property.TextAlign | undefined;
639
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
640
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
641
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
642
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
643
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
644
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
645
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
646
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
647
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
648
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
649
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
650
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
651
+ textJustify?: import("csstype").Property.TextJustify | undefined;
652
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
653
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
654
+ textRendering?: import("csstype").Property.TextRendering | undefined;
655
+ textShadow?: import("csstype").Property.TextShadow | undefined;
656
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
657
+ textTransform?: import("csstype").Property.TextTransform | undefined;
658
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
659
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
660
+ top?: import("csstype").Property.Top<string | number> | undefined;
661
+ touchAction?: import("csstype").Property.TouchAction | undefined;
662
+ transform?: import("csstype").Property.Transform | undefined;
663
+ transformBox?: import("csstype").Property.TransformBox | undefined;
664
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
665
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
666
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
667
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
668
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
669
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
670
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
671
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
672
+ userSelect?: import("csstype").Property.UserSelect | undefined;
673
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
674
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
675
+ visibility?: import("csstype").Property.Visibility | undefined;
676
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
677
+ widows?: import("csstype").Property.Widows | undefined;
678
+ width?: import("csstype").Property.Width<string | number> | undefined;
679
+ willChange?: import("csstype").Property.WillChange | undefined;
680
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
681
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
682
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
683
+ writingMode?: import("csstype").Property.WritingMode | undefined;
684
+ zIndex?: import("csstype").Property.ZIndex | undefined;
685
+ zoom?: import("csstype").Property.Zoom | undefined;
686
+ all?: import("csstype").Globals | undefined;
687
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
688
+ background?: import("csstype").Property.Background<string | number> | undefined;
689
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
690
+ border?: import("csstype").Property.Border<string | number> | undefined;
691
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
692
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
693
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
694
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
695
+ borderColor?: import("csstype").Property.BorderColor | undefined;
696
+ borderImage?: import("csstype").Property.BorderImage | undefined;
697
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
698
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
699
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
700
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
701
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
702
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
703
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
704
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
705
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
706
+ caret?: import("csstype").Property.Caret | undefined;
707
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
708
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
709
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
710
+ container?: import("csstype").Property.Container | undefined;
711
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
712
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
713
+ font?: import("csstype").Property.Font | undefined;
714
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
715
+ grid?: import("csstype").Property.Grid | undefined;
716
+ gridArea?: import("csstype").Property.GridArea | undefined;
717
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
718
+ gridRow?: import("csstype").Property.GridRow | undefined;
719
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
720
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
721
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
722
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
723
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
724
+ listStyle?: import("csstype").Property.ListStyle | undefined;
725
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
726
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
727
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
728
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
729
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
730
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
731
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
732
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
733
+ overflow?: import("csstype").Property.Overflow | undefined;
734
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
735
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
736
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
737
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
738
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
739
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
740
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
741
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
742
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
743
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
744
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
745
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
746
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
747
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
748
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
749
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
750
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
751
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
752
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
753
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
754
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
755
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
756
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
757
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
758
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
759
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
760
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
761
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
762
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
763
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
764
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
765
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
766
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
767
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
768
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
769
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
770
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
771
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
772
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
773
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
774
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
775
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
776
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
777
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
778
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
779
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
780
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
781
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
782
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
783
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
784
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
785
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
786
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
787
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
788
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
789
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
790
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
791
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
792
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
793
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
794
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
795
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
796
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
797
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
798
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
799
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
800
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
801
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
802
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
803
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
804
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
805
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
806
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
807
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
808
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
809
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
810
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
811
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
812
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
813
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
814
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
815
+ msFilter?: import("csstype").Property.MsFilter | undefined;
816
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
817
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
818
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
819
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
820
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
821
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
822
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
823
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
824
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
825
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
826
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
827
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
828
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
829
+ msOrder?: import("csstype").Property.Order | undefined;
830
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
831
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
832
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
833
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
834
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
835
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
836
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
837
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
838
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
839
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
840
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
841
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
842
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
843
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
844
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
845
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
846
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
847
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
848
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
849
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
850
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
851
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
852
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
853
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
854
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
855
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
856
+ msTransform?: import("csstype").Property.Transform | undefined;
857
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
858
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
859
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
860
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
861
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
862
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
863
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
864
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
865
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
866
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
867
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
868
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
869
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
870
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
871
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
872
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
873
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
874
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
875
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
876
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
877
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
878
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
879
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
880
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
881
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
882
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
883
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
884
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
885
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
886
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
887
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
888
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
889
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
890
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
891
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
892
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
893
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
894
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
895
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
896
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
897
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
898
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
899
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
900
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
901
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
902
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
903
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
904
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
905
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
906
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
907
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
908
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
909
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
910
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
911
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
912
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
913
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
914
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
915
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
916
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
917
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
918
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
919
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
920
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
921
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
922
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
923
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
924
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
925
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
926
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
927
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
928
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
929
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
930
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
931
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
932
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
933
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
934
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
935
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
936
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
937
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
938
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
939
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
940
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
941
+ WebkitOrder?: import("csstype").Property.Order | undefined;
942
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
943
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
944
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
945
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
946
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
947
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
948
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
949
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
950
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
951
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
952
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
953
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
954
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
955
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
956
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
957
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
958
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
959
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
960
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
961
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
962
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
963
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
964
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
965
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
966
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
967
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
968
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
969
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
970
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
971
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
972
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
973
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
974
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
975
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
976
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
977
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
978
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
979
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
980
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
981
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
982
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
983
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
984
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
985
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
986
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
987
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
988
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
989
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
990
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
991
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
992
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
993
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
994
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
995
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
996
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
997
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
998
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
999
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1000
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1001
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1002
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1003
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1004
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1005
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1006
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1007
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1008
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1009
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1010
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1011
+ clip?: import("csstype").Property.Clip | undefined;
1012
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1013
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1014
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1015
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1016
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1017
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1018
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1019
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1020
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1021
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1022
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1023
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1024
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1025
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1026
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1027
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1028
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1029
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1030
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1031
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1032
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1033
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1034
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1035
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1036
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1037
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1038
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1039
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1040
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1041
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1042
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1043
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1044
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1045
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1046
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1047
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1048
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1049
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1050
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1051
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1052
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1053
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1054
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1055
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1056
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1057
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1058
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1059
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1060
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1061
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1062
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1063
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1064
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1065
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1066
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1067
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1068
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1069
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1070
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1071
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1072
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1073
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1074
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1075
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1076
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1077
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1078
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1079
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1080
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1081
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1082
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1083
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1084
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1085
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1086
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1087
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1088
+ OTransform?: import("csstype").Property.Transform | undefined;
1089
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1090
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1091
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1092
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1093
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1094
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1095
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1096
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1097
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1098
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1099
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1100
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1101
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1102
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1103
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1104
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1105
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1106
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1107
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1108
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1109
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1110
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1111
+ fill?: import("csstype").Property.Fill | undefined;
1112
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1113
+ fillRule?: import("csstype").Property.FillRule | undefined;
1114
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1115
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1116
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1117
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1118
+ marker?: import("csstype").Property.Marker | undefined;
1119
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1120
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1121
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1122
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1123
+ stopColor?: import("csstype").Property.StopColor | undefined;
1124
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1125
+ stroke?: import("csstype").Property.Stroke | undefined;
1126
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1127
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1128
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1129
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1130
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1131
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1132
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1133
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1134
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1135
+ };
1136
+ "& .M4LAreasViewer-areasLoadingErrorDescription": {
1137
+ color: string;
1138
+ };
1139
+ "& .M4LAreasViewer-areasLoadingErrorDivider": {
1140
+ width: string;
1141
+ height: string;
1142
+ background: string;
1143
+ };
1144
+ "& .MuiTypography-paragraph": {
1145
+ color: string;
1146
+ };
1147
+ "& .MuiButtonBase-root": {
1148
+ marginTop: string;
1149
+ };
1150
+ };
1151
+ };
1152
+ };
1153
+ };
1154
+ };
1155
+ M4LAreasViewerModal: {
1156
+ styleOverrides: {
1157
+ "&.M4LAreasViewer-windowModalRoot": {
1158
+ borderRadius: string;
1159
+ boxShadow: string;
1160
+ '& .M4LAreasViewer-windowRoot': {
116
1161
  borderRadius: string;
117
- boxShadow: string;
118
- "& .M4LAreasViewer-windowRoot": {
119
- background: string;
120
- margin: string;
1162
+ };
1163
+ "& .M4LIcon-root.custom-handle": {
1164
+ "& .M4LIcon-icon": {
1165
+ backgroundColor: string;
1166
+ width: string;
1167
+ height: string;
1168
+ minWidth: string;
1169
+ minHeight: string;
1170
+ boxShadow: string;
1171
+ border: string;
1172
+ borderColor: string;
1173
+ };
1174
+ };
1175
+ "& .M4LAreasViewer-areasLoadingErrorRoot": {
1176
+ display: string;
1177
+ flexDirection: string;
1178
+ justifyContent: string;
1179
+ alignItems: string;
1180
+ position: string;
1181
+ inset: string;
1182
+ overflow: string;
1183
+ width: string;
1184
+ height: string;
1185
+ "& .M4LAreasViewer-areasLoadingError": {
1186
+ display: string;
1187
+ padding: string;
1188
+ flexDirection: string;
1189
+ justifyContent: string;
1190
+ alignItems: string;
1191
+ gap: string;
1192
+ position: string;
1193
+ inset: string;
1194
+ "& .M4LIcon-root": {
1195
+ display: string;
1196
+ padding: string;
1197
+ marginBottom: string;
1198
+ " .M4LIcon-icon": {
1199
+ width: string;
1200
+ height: string;
1201
+ backgroundColor: string;
1202
+ };
1203
+ };
1204
+ "& .M4LAreasViewer-areasLoadingErrorTitle": {
1205
+ [x: string]: unknown;
1206
+ color: string;
1207
+ '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
1208
+ accentColor?: import("csstype").Property.AccentColor | undefined;
1209
+ alignContent?: import("csstype").Property.AlignContent | undefined;
1210
+ alignItems?: import("csstype").Property.AlignItems | undefined;
1211
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
1212
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
1213
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1214
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1215
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1216
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1217
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1218
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1219
+ animationName?: import("csstype").Property.AnimationName | undefined;
1220
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1221
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1222
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1223
+ appearance?: import("csstype").Property.Appearance | undefined;
1224
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1225
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1226
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1227
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1228
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1229
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1230
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1231
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1232
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1233
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1234
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1235
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1236
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1237
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1238
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
1239
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1240
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1241
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1242
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1243
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1244
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1245
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1246
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1247
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1248
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1249
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1250
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1251
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1252
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1253
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1254
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1255
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1256
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1257
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1258
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1259
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1260
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1261
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1262
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1263
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1264
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1265
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1266
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1267
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1268
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1269
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1270
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1271
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1272
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1273
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1274
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1275
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1276
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1277
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1278
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1279
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1280
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1281
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1282
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1283
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1284
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
1285
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1286
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1287
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1288
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1289
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1290
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1291
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1292
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1293
+ caretShape?: import("csstype").Property.CaretShape | undefined;
1294
+ clear?: import("csstype").Property.Clear | undefined;
1295
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1296
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1297
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1298
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1299
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1300
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1301
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1302
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1303
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1304
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1305
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1306
+ contain?: import("csstype").Property.Contain | undefined;
1307
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1308
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1309
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1310
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1311
+ containerName?: import("csstype").Property.ContainerName | undefined;
1312
+ containerType?: import("csstype").Property.ContainerType | undefined;
1313
+ content?: import("csstype").Property.Content | undefined;
1314
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1315
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1316
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1317
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1318
+ cursor?: import("csstype").Property.Cursor | undefined;
1319
+ direction?: import("csstype").Property.Direction | undefined;
1320
+ display?: import("csstype").Property.Display | undefined;
1321
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1322
+ filter?: import("csstype").Property.Filter | undefined;
1323
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1324
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1325
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1326
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1327
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1328
+ float?: import("csstype").Property.Float | undefined;
1329
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1330
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1331
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1332
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1333
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1334
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1335
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1336
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1337
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1338
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1339
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1340
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1341
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1342
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1343
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1344
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1345
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1346
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1347
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1348
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1349
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1350
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1351
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1352
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1353
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1354
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1355
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1356
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1357
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1358
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1359
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1360
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1361
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1362
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1363
+ height?: import("csstype").Property.Height<string | number> | undefined;
1364
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1365
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1366
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1367
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1368
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1369
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1370
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1371
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1372
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1373
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1374
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1375
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1376
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1377
+ isolation?: import("csstype").Property.Isolation | undefined;
1378
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1379
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1380
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1381
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1382
+ left?: import("csstype").Property.Left<string | number> | undefined;
1383
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1384
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1385
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1386
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1387
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1388
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1389
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1390
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1391
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1392
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1393
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1394
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1395
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1396
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1397
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1398
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1399
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1400
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1401
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1402
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1403
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1404
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1405
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1406
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1407
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1408
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1409
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1410
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1411
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1412
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1413
+ maskType?: import("csstype").Property.MaskType | undefined;
1414
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1415
+ mathShift?: import("csstype").Property.MathShift | undefined;
1416
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1417
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1418
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1419
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1420
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1421
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1422
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1423
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1424
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1425
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1426
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1427
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1428
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1429
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1430
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1431
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1432
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1433
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1434
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1435
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1436
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1437
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1438
+ opacity?: import("csstype").Property.Opacity | undefined;
1439
+ order?: import("csstype").Property.Order | undefined;
1440
+ orphans?: import("csstype").Property.Orphans | undefined;
1441
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1442
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1443
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1444
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1445
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1446
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1447
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1448
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1449
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1450
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1451
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1452
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1453
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1454
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1455
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1456
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1457
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1458
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1459
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1460
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1461
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1462
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1463
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1464
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1465
+ page?: import("csstype").Property.Page | undefined;
1466
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1467
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1468
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1469
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1470
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1471
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1472
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1473
+ position?: import("csstype").Property.Position | undefined;
1474
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1475
+ quotes?: import("csstype").Property.Quotes | undefined;
1476
+ resize?: import("csstype").Property.Resize | undefined;
1477
+ right?: import("csstype").Property.Right<string | number> | undefined;
1478
+ rotate?: import("csstype").Property.Rotate | undefined;
1479
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1480
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1481
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1482
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1483
+ scale?: import("csstype").Property.Scale | undefined;
1484
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1485
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1486
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1487
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1488
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1489
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1490
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1491
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1492
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1493
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1494
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1495
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1496
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1497
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1498
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1499
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1500
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1501
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1502
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1503
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1504
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1505
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1506
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1507
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1508
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1509
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1510
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1511
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1512
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1513
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1514
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1515
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1516
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1517
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1518
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1519
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1520
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1521
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1522
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1523
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1524
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1525
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1526
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1527
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1528
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1529
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1530
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1531
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1532
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1533
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1534
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1535
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1536
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1537
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1538
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1539
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1540
+ top?: import("csstype").Property.Top<string | number> | undefined;
1541
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1542
+ transform?: import("csstype").Property.Transform | undefined;
1543
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1544
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1545
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1546
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1547
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1548
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1549
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1550
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
1551
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1552
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1553
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1554
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1555
+ visibility?: import("csstype").Property.Visibility | undefined;
1556
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1557
+ widows?: import("csstype").Property.Widows | undefined;
1558
+ width?: import("csstype").Property.Width<string | number> | undefined;
1559
+ willChange?: import("csstype").Property.WillChange | undefined;
1560
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1561
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1562
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1563
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1564
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1565
+ zoom?: import("csstype").Property.Zoom | undefined;
1566
+ all?: import("csstype").Globals | undefined;
1567
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
1568
+ background?: import("csstype").Property.Background<string | number> | undefined;
1569
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1570
+ border?: import("csstype").Property.Border<string | number> | undefined;
1571
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
1572
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1573
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1574
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
1575
+ borderColor?: import("csstype").Property.BorderColor | undefined;
1576
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1577
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
1578
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1579
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1580
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
1581
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1582
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
1583
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1584
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
1585
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
1586
+ caret?: import("csstype").Property.Caret | undefined;
1587
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1588
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
1589
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1590
+ container?: import("csstype").Property.Container | undefined;
1591
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
1592
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1593
+ font?: import("csstype").Property.Font | undefined;
1594
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
1595
+ grid?: import("csstype").Property.Grid | undefined;
1596
+ gridArea?: import("csstype").Property.GridArea | undefined;
1597
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1598
+ gridRow?: import("csstype").Property.GridRow | undefined;
1599
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1600
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
1601
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1602
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1603
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1604
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1605
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
1606
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1607
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1608
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
1609
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1610
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
1611
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
1612
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
1613
+ overflow?: import("csstype").Property.Overflow | undefined;
1614
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1615
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
1616
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1617
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1618
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1619
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1620
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1621
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1622
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1623
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1624
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1625
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1626
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1627
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1628
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1629
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
1630
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1631
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
1632
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1633
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1634
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1635
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1636
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1637
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1638
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1639
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1640
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1641
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1642
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1643
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1644
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1645
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1646
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1647
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1648
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1649
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1650
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1651
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1652
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1653
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1654
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1655
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1656
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1657
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1658
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1659
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1660
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1661
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1662
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1663
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1664
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1665
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1666
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1667
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1668
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1669
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1670
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1671
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1672
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1673
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1674
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1675
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1676
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1677
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1678
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1679
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1680
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1681
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1682
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1683
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1684
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1685
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1686
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1687
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1688
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1689
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1690
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1691
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1692
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1693
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1694
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1695
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1696
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1697
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1698
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1699
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1700
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1701
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
1702
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1703
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1704
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1705
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1706
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1707
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1708
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1709
+ msOrder?: import("csstype").Property.Order | undefined;
1710
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1711
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1712
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1713
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1714
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1715
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1716
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1717
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1718
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1719
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1720
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1721
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1722
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1723
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1724
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1725
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1726
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1727
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1728
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1729
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1730
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1731
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1732
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1733
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1734
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1735
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1736
+ msTransform?: import("csstype").Property.Transform | undefined;
1737
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1738
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1739
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1740
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1741
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1742
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1743
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1744
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1745
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1746
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1747
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1748
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1749
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1750
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1751
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1752
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1753
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1754
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1755
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1756
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1757
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1758
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1759
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1760
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1761
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1762
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1763
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1764
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1765
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1766
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1767
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1768
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1769
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1770
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1771
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1772
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1773
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1774
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1775
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1776
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1777
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1778
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1779
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1780
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1781
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1782
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1783
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1784
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1785
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1786
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1787
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1788
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1789
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1790
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1791
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1792
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1793
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1794
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1795
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1796
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1797
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1798
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1799
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1800
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1801
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1802
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1803
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1804
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1805
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1806
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1807
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1808
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1809
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1810
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1811
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1812
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1813
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1814
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1815
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1816
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1817
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1818
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1819
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1820
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1821
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1822
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1823
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1824
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1825
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1826
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1827
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1828
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1829
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1830
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1831
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1832
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1833
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1834
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1835
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1836
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1837
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1838
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1839
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1840
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1841
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1842
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1843
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1844
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1845
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1846
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1847
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1848
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1849
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1850
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1851
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1852
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1853
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1854
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1855
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1856
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1857
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1858
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1859
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1860
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1861
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1862
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1863
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1864
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1865
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1866
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1867
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1868
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1869
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1870
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1871
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1872
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1873
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1874
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1875
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1876
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1877
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1878
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1879
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1880
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1881
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1882
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1883
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1884
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1885
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1886
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1887
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1888
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1889
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1890
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1891
+ clip?: import("csstype").Property.Clip | undefined;
1892
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1893
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1894
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1895
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1896
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1897
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1898
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1899
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1900
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1901
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1902
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1903
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1904
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1905
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1906
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1907
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1908
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1909
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1910
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1911
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1912
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1913
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1914
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1915
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1916
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1917
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1918
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1919
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1920
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1921
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1922
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1923
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1924
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1925
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1926
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1927
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1928
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1929
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1930
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1931
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1932
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1933
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1934
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1935
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1936
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1937
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1938
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1939
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1940
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1941
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1942
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1943
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1944
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1945
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1946
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1947
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1948
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1949
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1950
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1951
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1952
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1953
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1954
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1955
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1956
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1957
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1958
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1959
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1960
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1961
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1962
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1963
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1964
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1965
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1966
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1967
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1968
+ OTransform?: import("csstype").Property.Transform | undefined;
1969
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1970
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1971
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1972
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1973
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1974
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1975
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1976
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1977
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1978
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1979
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1980
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1981
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1982
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1983
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1984
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1985
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1986
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1987
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1988
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1989
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1990
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1991
+ fill?: import("csstype").Property.Fill | undefined;
1992
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1993
+ fillRule?: import("csstype").Property.FillRule | undefined;
1994
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1995
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1996
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1997
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1998
+ marker?: import("csstype").Property.Marker | undefined;
1999
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
2000
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
2001
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
2002
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2003
+ stopColor?: import("csstype").Property.StopColor | undefined;
2004
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2005
+ stroke?: import("csstype").Property.Stroke | undefined;
2006
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2007
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2008
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2009
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2010
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2011
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2012
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2013
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
2014
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2015
+ };
2016
+ "& .M4LAreasViewer-areasLoadingErrorDescription": {
2017
+ color: string;
2018
+ };
2019
+ "& .M4LAreasViewer-areasLoadingErrorDivider": {
2020
+ width: string;
2021
+ height: string;
2022
+ background: string;
2023
+ };
2024
+ "& .MuiTypography-paragraph": {
2025
+ color: string;
2026
+ };
2027
+ "& .MuiButtonBase-root": {
2028
+ marginTop: string;
2029
+ };
2030
+ };
2031
+ };
2032
+ '& .MuiBackdrop-root': {
2033
+ background: string;
2034
+ };
2035
+ '&:not(.M4LAreasViewer-loading)': {
2036
+ '& .M4LinearProgressIndeterminate-root': {
2037
+ opacity: number;
2038
+ };
2039
+ };
2040
+ '& .react-resizable-handle': {
2041
+ backgroundColor: string;
2042
+ };
2043
+ '& .M4LAreasViewer-windowRootContainer': {
2044
+ display: string;
2045
+ flexDirection: string;
2046
+ height: string;
2047
+ background: string;
2048
+ "& .M4LAreasViewer-windowHeader": {
2049
+ cursor: string;
2050
+ display: string;
2051
+ flexDirection: string;
121
2052
  padding: string;
2053
+ height: string;
2054
+ minHeight: string;
122
2055
  borderRadius: string;
123
2056
  border: string;
124
- '& .react-resizable-handle': {
125
- backgroundColor: string;
2057
+ "& .M4LTypography-root .MuiTypography-root": {
2058
+ color: string;
126
2059
  };
127
- '& .M4LAreasViewer-windowRootContainer': {
2060
+ '& .M4LAreasViewer-windowHeaderContent': {
128
2061
  display: string;
129
- flexDirection: string;
2062
+ alignItems: string;
130
2063
  height: string;
131
- "& .M4LAreasViewer-windowHeader": {
132
- height: string;
133
- minHeight: string;
134
- padding: string;
135
- boxShadow: string;
136
- background: string;
137
- borderColor: string;
138
- "& .M4LTypography-root .MuiTypography-root": {
139
- color: string;
140
- };
141
- };
142
- "& .M4LAreasViewer-windowContent": {
143
- margin: string;
144
- background: string;
145
- borderRadius: string;
146
- display: string;
147
- flexDirection: string;
148
- alignItems: string;
149
- justifyContent: string;
150
- flexGrow: string;
151
- height: string;
152
- };
153
2064
  };
154
2065
  };
2066
+ "& .M4LAreasViewer-windowContent": {
2067
+ margin: string;
2068
+ background: string;
2069
+ borderRadius: string;
2070
+ display: string;
2071
+ flexDirection: string;
2072
+ alignItems: string;
2073
+ justifyContent: string;
2074
+ flexGrow: string;
2075
+ height: string;
2076
+ };
155
2077
  };
156
2078
  };
157
2079
  };