@yuno-payments/dashboard-design-system 0.0.170 → 0.0.172

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