@rebuy/rebuy-hydrogen 3.0.0-beta.12 → 3.0.0-beta.14

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 (175) hide show
  1. package/README.md +677 -111
  2. package/dist/components/AddToCartBtn/AddToCartBtn.d.ts +1 -1
  3. package/dist/components/AddToCartBtn/AddToCartBtn.d.ts.map +1 -1
  4. package/dist/components/AddToCartBtn/HydrogenAddToCartBtn.d.ts +1 -1
  5. package/dist/components/AddToCartBtn/HydrogenAddToCartBtn.d.ts.map +1 -1
  6. package/dist/components/AddToCartBtn/HydrogenReactAddToCartBtn.d.ts +1 -1
  7. package/dist/components/AddToCartBtn/HydrogenReactAddToCartBtn.d.ts.map +1 -1
  8. package/dist/components/AddToCartBtn/types.d.ts +4 -0
  9. package/dist/components/AddToCartBtn/types.d.ts.map +1 -1
  10. package/dist/components/ProductCard/ProductCard.d.ts +1 -1
  11. package/dist/components/ProductCard/ProductCard.d.ts.map +1 -1
  12. package/dist/components/ProductCard/types.d.ts +3 -0
  13. package/dist/components/ProductCard/types.d.ts.map +1 -1
  14. package/dist/components/ProductCarousel/ProductCarousel.d.ts +2 -1
  15. package/dist/components/ProductCarousel/ProductCarousel.d.ts.map +1 -1
  16. package/dist/components/ProductPrice/ProductPrice.d.ts.map +1 -1
  17. package/dist/components/QuantityInput/QuantityInput.d.ts +1 -1
  18. package/dist/components/QuantityInput/QuantityInput.d.ts.map +1 -1
  19. package/dist/components/Timer/Timer.d.ts.map +1 -1
  20. package/dist/components/Timer/types.d.ts +2 -2
  21. package/dist/components/Timer/types.d.ts.map +1 -1
  22. package/dist/components/VariantSelect/VariantSelect.d.ts.map +1 -1
  23. package/dist/constants/debug.d.ts +27 -0
  24. package/dist/constants/debug.d.ts.map +1 -0
  25. package/dist/context/RebuyConfigContext.d.ts +2 -0
  26. package/dist/context/RebuyConfigContext.d.ts.map +1 -1
  27. package/dist/hooks/useBreakpoint.d.ts +1 -1
  28. package/dist/hooks/useBreakpoint.d.ts.map +1 -1
  29. package/dist/hooks/usePopupTrigger.d.ts +1 -1
  30. package/dist/hooks/usePopupTrigger.d.ts.map +1 -1
  31. package/dist/index.css +2513 -518
  32. package/dist/index.css.map +4 -4
  33. package/dist/index.d.ts +2 -2
  34. package/dist/index.d.ts.map +1 -1
  35. package/dist/index.js +8947 -2512
  36. package/dist/index.js.map +4 -4
  37. package/dist/index.mjs +8963 -2528
  38. package/dist/index.mjs.map +4 -4
  39. package/dist/providers/RebuyHydrogenContextProvider.d.ts +1 -1
  40. package/dist/providers/RebuyHydrogenContextProvider.d.ts.map +1 -1
  41. package/dist/providers/RebuyHydrogenReactContextProvider.d.ts +1 -1
  42. package/dist/providers/RebuyHydrogenReactContextProvider.d.ts.map +1 -1
  43. package/dist/providers/types.d.ts +14 -22
  44. package/dist/providers/types.d.ts.map +1 -1
  45. package/dist/queries/cart.queries.d.ts +4 -4
  46. package/dist/queries/cart.queries.d.ts.map +1 -1
  47. package/dist/smart-cart/RebuySmartCart.d.ts +10 -0
  48. package/dist/smart-cart/RebuySmartCart.d.ts.map +1 -0
  49. package/dist/smart-cart/components/AnnouncementBar/AnnouncementBar.d.ts +10 -0
  50. package/dist/smart-cart/components/AnnouncementBar/AnnouncementBar.d.ts.map +1 -0
  51. package/dist/smart-cart/components/CartItem/CartItem.d.ts +7 -0
  52. package/dist/smart-cart/components/CartItem/CartItem.d.ts.map +1 -0
  53. package/dist/smart-cart/components/CartItemList/CartItemList.d.ts +10 -0
  54. package/dist/smart-cart/components/CartItemList/CartItemList.d.ts.map +1 -0
  55. package/dist/smart-cart/components/CartNoteInput/CartNoteInput.d.ts +10 -0
  56. package/dist/smart-cart/components/CartNoteInput/CartNoteInput.d.ts.map +1 -0
  57. package/dist/smart-cart/components/CartSubtotal/CartSubtotal.d.ts +11 -0
  58. package/dist/smart-cart/components/CartSubtotal/CartSubtotal.d.ts.map +1 -0
  59. package/dist/smart-cart/components/CartTitleBar/CartTitleBar.d.ts +7 -0
  60. package/dist/smart-cart/components/CartTitleBar/CartTitleBar.d.ts.map +1 -0
  61. package/dist/smart-cart/components/CheckoutArea/CheckoutArea.d.ts +10 -0
  62. package/dist/smart-cart/components/CheckoutArea/CheckoutArea.d.ts.map +1 -0
  63. package/dist/smart-cart/components/CrossSell/CrossSell.d.ts +10 -0
  64. package/dist/smart-cart/components/CrossSell/CrossSell.d.ts.map +1 -0
  65. package/dist/smart-cart/components/CustomCode/CustomCodeBlock.d.ts +21 -0
  66. package/dist/smart-cart/components/CustomCode/CustomCodeBlock.d.ts.map +1 -0
  67. package/dist/smart-cart/components/DebugPanel/DebugPanel.d.ts +13 -0
  68. package/dist/smart-cart/components/DebugPanel/DebugPanel.d.ts.map +1 -0
  69. package/dist/smart-cart/components/DebugPanel/index.d.ts +11 -0
  70. package/dist/smart-cart/components/DebugPanel/index.d.ts.map +1 -0
  71. package/dist/smart-cart/components/DiscountCodeInput/DiscountCodeInput.d.ts +10 -0
  72. package/dist/smart-cart/components/DiscountCodeInput/DiscountCodeInput.d.ts.map +1 -0
  73. package/dist/smart-cart/components/EmptyCart/EmptyCart.d.ts +3 -0
  74. package/dist/smart-cart/components/EmptyCart/EmptyCart.d.ts.map +1 -0
  75. package/dist/smart-cart/components/LoginButton/LoginButton.d.ts +3 -0
  76. package/dist/smart-cart/components/LoginButton/LoginButton.d.ts.map +1 -0
  77. package/dist/smart-cart/components/ScreenReaderText/ScreenReaderText.d.ts +8 -0
  78. package/dist/smart-cart/components/ScreenReaderText/ScreenReaderText.d.ts.map +1 -0
  79. package/dist/smart-cart/components/SmartCartApp/SmartCartApp.d.ts +20 -0
  80. package/dist/smart-cart/components/SmartCartApp/SmartCartApp.d.ts.map +1 -0
  81. package/dist/smart-cart/components/SmartCartContainer/SmartCartContainer.d.ts +8 -0
  82. package/dist/smart-cart/components/SmartCartContainer/SmartCartContainer.d.ts.map +1 -0
  83. package/dist/smart-cart/components/TieredProgressBar/Icons.d.ts +5 -0
  84. package/dist/smart-cart/components/TieredProgressBar/Icons.d.ts.map +1 -0
  85. package/dist/smart-cart/components/TieredProgressBar/TPBGiftItem.d.ts +21 -0
  86. package/dist/smart-cart/components/TieredProgressBar/TPBGiftItem.d.ts.map +1 -0
  87. package/dist/smart-cart/components/TieredProgressBar/TieredProgressBar.d.ts +11 -0
  88. package/dist/smart-cart/components/TieredProgressBar/TieredProgressBar.d.ts.map +1 -0
  89. package/dist/smart-cart/components/TieredProgressBar/progressBarUtils.d.ts +173 -0
  90. package/dist/smart-cart/components/TieredProgressBar/progressBarUtils.d.ts.map +1 -0
  91. package/dist/smart-cart/components/TieredProgressBar/types.d.ts +261 -0
  92. package/dist/smart-cart/components/TieredProgressBar/types.d.ts.map +1 -0
  93. package/dist/smart-cart/components/_Layouts/AnchorSlot.d.ts +13 -0
  94. package/dist/smart-cart/components/_Layouts/AnchorSlot.d.ts.map +1 -0
  95. package/dist/smart-cart/components/_Layouts/DoubleColumnLayout.d.ts +9 -0
  96. package/dist/smart-cart/components/_Layouts/DoubleColumnLayout.d.ts.map +1 -0
  97. package/dist/smart-cart/components/_Layouts/SingleColumnLayout.d.ts +8 -0
  98. package/dist/smart-cart/components/_Layouts/SingleColumnLayout.d.ts.map +1 -0
  99. package/dist/smart-cart/components/componentRegistry.d.ts +3 -0
  100. package/dist/smart-cart/components/componentRegistry.d.ts.map +1 -0
  101. package/dist/smart-cart/constants.d.ts +57 -0
  102. package/dist/smart-cart/constants.d.ts.map +1 -0
  103. package/dist/smart-cart/context/SmartCartContext.d.ts +62 -0
  104. package/dist/smart-cart/context/SmartCartContext.d.ts.map +1 -0
  105. package/dist/smart-cart/context/StorefrontCartContext.d.ts +32 -0
  106. package/dist/smart-cart/context/StorefrontCartContext.d.ts.map +1 -0
  107. package/dist/smart-cart/hooks/useCartItemFeatures.d.ts +84 -0
  108. package/dist/smart-cart/hooks/useCartItemFeatures.d.ts.map +1 -0
  109. package/dist/smart-cart/hooks/useDiscountManager.d.ts +28 -0
  110. package/dist/smart-cart/hooks/useDiscountManager.d.ts.map +1 -0
  111. package/dist/smart-cart/hooks/useGeolocation.d.ts +12 -0
  112. package/dist/smart-cart/hooks/useGeolocation.d.ts.map +1 -0
  113. package/dist/smart-cart/hooks/useIsScrolled.d.ts +14 -0
  114. package/dist/smart-cart/hooks/useIsScrolled.d.ts.map +1 -0
  115. package/dist/smart-cart/hooks/useSmartCartApps.d.ts +17 -0
  116. package/dist/smart-cart/hooks/useSmartCartApps.d.ts.map +1 -0
  117. package/dist/smart-cart/store/tieredProgressBarStore.d.ts +76 -0
  118. package/dist/smart-cart/store/tieredProgressBarStore.d.ts.map +1 -0
  119. package/dist/smart-cart/types/rebuy-storefront-cart.d.ts +142 -0
  120. package/dist/smart-cart/types/rebuy-storefront-cart.d.ts.map +1 -0
  121. package/dist/smart-cart/types/rebuy.d.ts +15 -0
  122. package/dist/smart-cart/types/rebuy.d.ts.map +1 -0
  123. package/dist/smart-cart/types/shop.d.ts +26 -0
  124. package/dist/smart-cart/types/shop.d.ts.map +1 -0
  125. package/dist/smart-cart/types/smart-cart-app.d.ts +103 -0
  126. package/dist/smart-cart/types/smart-cart-app.d.ts.map +1 -0
  127. package/dist/smart-cart/types/smart-cart-component.d.ts +1350 -0
  128. package/dist/smart-cart/types/smart-cart-component.d.ts.map +1 -0
  129. package/dist/smart-cart/types/smart-cart.d.ts +82 -0
  130. package/dist/smart-cart/types/smart-cart.d.ts.map +1 -0
  131. package/dist/smart-cart/utils/cartItemUtils.d.ts +292 -0
  132. package/dist/smart-cart/utils/cartItemUtils.d.ts.map +1 -0
  133. package/dist/smart-cart/utils/debugLog.d.ts +77 -0
  134. package/dist/smart-cart/utils/debugLog.d.ts.map +1 -0
  135. package/dist/smart-cart/utils/debugStyles.d.ts +3342 -0
  136. package/dist/smart-cart/utils/debugStyles.d.ts.map +1 -0
  137. package/dist/smart-cart/utils/executeScriptsInContainer.d.ts +14 -0
  138. package/dist/smart-cart/utils/executeScriptsInContainer.d.ts.map +1 -0
  139. package/dist/smart-cart/utils/imageUtils.d.ts +2 -0
  140. package/dist/smart-cart/utils/imageUtils.d.ts.map +1 -0
  141. package/dist/smart-cart/utils/mapHydrogenCartToStorefrontCartData.d.ts +14 -0
  142. package/dist/smart-cart/utils/mapHydrogenCartToStorefrontCartData.d.ts.map +1 -0
  143. package/dist/smart-cart/utils/moneyUtils.d.ts +24 -0
  144. package/dist/smart-cart/utils/moneyUtils.d.ts.map +1 -0
  145. package/dist/smart-cart/utils/safeJsonParse.d.ts +2 -0
  146. package/dist/smart-cart/utils/safeJsonParse.d.ts.map +1 -0
  147. package/dist/types/common.d.ts +9 -0
  148. package/dist/types/common.d.ts.map +1 -1
  149. package/dist/types/rebuyCustom.d.ts +86 -6
  150. package/dist/types/rebuyCustom.d.ts.map +1 -1
  151. package/dist/types/widgets.d.ts +20068 -0
  152. package/dist/types/widgets.d.ts.map +1 -1
  153. package/dist/utils/createContextParameters.d.ts.map +1 -1
  154. package/dist/utils/filterContextUtils.d.ts +3 -0
  155. package/dist/utils/filterContextUtils.d.ts.map +1 -0
  156. package/dist/utils/nonceManager.d.ts +10 -0
  157. package/dist/utils/nonceManager.d.ts.map +1 -0
  158. package/dist/widgetContainer/RebuyWidgetContainer.d.ts.map +1 -1
  159. package/dist/widgets/RebuyCompleteTheLook/RebuyCompleteTheLook.d.ts.map +1 -1
  160. package/dist/widgets/RebuyDynamicBundleProducts/BundleSelection.d.ts.map +1 -1
  161. package/dist/widgets/RebuyDynamicBundleProducts/RebuyDynamicBundleProducts.d.ts.map +1 -1
  162. package/dist/widgets/RebuyProductAddOns/RebuyProductAddOns.d.ts.map +1 -1
  163. package/dist/widgets/RebuyProductRecommendations/RebuyProductRecommendations.d.ts.map +1 -1
  164. package/dist/widgets/RebuyWidget/RebuyWidget.d.ts.map +1 -1
  165. package/dist/widgets/RebuyWidget/WidgetContent.d.ts +1 -1
  166. package/dist/widgets/RebuyWidget/WidgetContent.d.ts.map +1 -1
  167. package/dist/widgets/RebuyWidget/types.d.ts +3 -314
  168. package/dist/widgets/RebuyWidget/types.d.ts.map +1 -1
  169. package/package.json +14 -8
  170. package/dist/hooks/useRebuyTheme.d.ts +0 -21
  171. package/dist/hooks/useRebuyTheme.d.ts.map +0 -1
  172. package/dist/types/rebuySmartCart.d.ts +0 -184
  173. package/dist/types/rebuySmartCart.d.ts.map +0 -1
  174. package/dist/utils/csp.d.ts +0 -16
  175. package/dist/utils/csp.d.ts.map +0 -1
@@ -0,0 +1,3342 @@
1
+ import type { CSSProperties } from 'react';
2
+ export declare const debugPanel: CSSProperties;
3
+ export declare const toggleButton: () => CSSProperties;
4
+ export declare const actionButton: {
5
+ primary: {
6
+ backgroundColor: "#0084ff";
7
+ border: string;
8
+ color: string;
9
+ accentColor?: import("csstype").Property.AccentColor | undefined;
10
+ alignContent?: import("csstype").Property.AlignContent | undefined;
11
+ alignItems?: import("csstype").Property.AlignItems | undefined;
12
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
13
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
14
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
15
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
16
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
17
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
18
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
19
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
20
+ animationName?: import("csstype").Property.AnimationName | undefined;
21
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
22
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
23
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
24
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
25
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
26
+ appearance?: import("csstype").Property.Appearance | undefined;
27
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
28
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
29
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
30
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
31
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
32
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
33
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
34
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
35
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
36
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
37
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
38
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
39
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
40
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
41
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
42
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
43
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
44
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
45
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
46
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
47
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
48
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
49
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
50
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
51
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
52
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
53
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
54
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
55
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
56
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
57
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
58
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
59
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
60
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
61
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
62
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
63
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
64
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
65
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
66
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
67
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
68
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
69
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
70
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
71
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
72
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
73
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
74
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
75
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
76
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
77
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
78
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
79
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
80
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
81
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
82
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
83
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
84
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
85
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
86
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
87
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
88
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
89
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
90
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
91
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
92
+ breakInside?: import("csstype").Property.BreakInside | undefined;
93
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
94
+ caretColor?: import("csstype").Property.CaretColor | undefined;
95
+ caretShape?: import("csstype").Property.CaretShape | undefined;
96
+ clear?: import("csstype").Property.Clear | undefined;
97
+ clipPath?: import("csstype").Property.ClipPath | undefined;
98
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
99
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
100
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
101
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
102
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
103
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
104
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
105
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
106
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
107
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
108
+ contain?: import("csstype").Property.Contain | undefined;
109
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
110
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
111
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
112
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
113
+ containerName?: import("csstype").Property.ContainerName | undefined;
114
+ containerType?: import("csstype").Property.ContainerType | undefined;
115
+ content?: import("csstype").Property.Content | undefined;
116
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
117
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
118
+ counterReset?: import("csstype").Property.CounterReset | undefined;
119
+ counterSet?: import("csstype").Property.CounterSet | undefined;
120
+ cursor?: import("csstype").Property.Cursor | undefined;
121
+ direction?: import("csstype").Property.Direction | undefined;
122
+ display?: import("csstype").Property.Display | undefined;
123
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
124
+ filter?: import("csstype").Property.Filter | undefined;
125
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
126
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
127
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
128
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
129
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
130
+ float?: import("csstype").Property.Float | undefined;
131
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
132
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
133
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
134
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
135
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
136
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
137
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
138
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
139
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
140
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
141
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
142
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
143
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
144
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
145
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
146
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
147
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
148
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
149
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
150
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
151
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
152
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
153
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
154
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
155
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
156
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
157
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
158
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
159
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
160
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
161
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
162
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
163
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
164
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
165
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
166
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
167
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
168
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
169
+ height?: import("csstype").Property.Height<string | number> | undefined;
170
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
171
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
172
+ hyphens?: import("csstype").Property.Hyphens | undefined;
173
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
174
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
175
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
176
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
177
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
178
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
179
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
180
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
181
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
182
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
183
+ isolation?: import("csstype").Property.Isolation | undefined;
184
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
185
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
186
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
187
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
188
+ left?: import("csstype").Property.Left<string | number> | undefined;
189
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
190
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
191
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
192
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
193
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
194
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
195
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
196
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
197
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
198
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
199
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
200
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
201
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
202
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
203
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
204
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
205
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
206
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
207
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
208
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
209
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
210
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
211
+ maskClip?: import("csstype").Property.MaskClip | undefined;
212
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
213
+ maskImage?: import("csstype").Property.MaskImage | undefined;
214
+ maskMode?: import("csstype").Property.MaskMode | undefined;
215
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
216
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
217
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
218
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
219
+ maskType?: import("csstype").Property.MaskType | undefined;
220
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
221
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
222
+ mathShift?: import("csstype").Property.MathShift | undefined;
223
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
224
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
225
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
226
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
227
+ maxLines?: import("csstype").Property.MaxLines | undefined;
228
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
229
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
230
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
231
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
232
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
233
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
234
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
235
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
236
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
237
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
238
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
239
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
240
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
241
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
242
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
243
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
244
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
245
+ opacity?: import("csstype").Property.Opacity | undefined;
246
+ order?: import("csstype").Property.Order | undefined;
247
+ orphans?: import("csstype").Property.Orphans | undefined;
248
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
249
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
250
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
251
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
252
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
253
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
254
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
255
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
256
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
257
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
258
+ overflowX?: import("csstype").Property.OverflowX | undefined;
259
+ overflowY?: import("csstype").Property.OverflowY | undefined;
260
+ overlay?: import("csstype").Property.Overlay | undefined;
261
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
262
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
263
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
264
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
265
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
266
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
267
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
268
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
269
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
270
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
271
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
272
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
273
+ page?: import("csstype").Property.Page | undefined;
274
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
275
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
276
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
277
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
278
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
279
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
280
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
281
+ position?: import("csstype").Property.Position | undefined;
282
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
283
+ quotes?: import("csstype").Property.Quotes | undefined;
284
+ resize?: import("csstype").Property.Resize | undefined;
285
+ right?: import("csstype").Property.Right<string | number> | undefined;
286
+ rotate?: import("csstype").Property.Rotate | undefined;
287
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
288
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
289
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
290
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
291
+ scale?: import("csstype").Property.Scale | undefined;
292
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
293
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
294
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
295
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
296
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
297
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
298
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
299
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
300
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
301
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
302
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
303
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
304
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
305
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
306
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
307
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
308
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
309
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
310
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
311
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
312
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
313
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
314
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
315
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
316
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
317
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
318
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
319
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
320
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
321
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
322
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
323
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
324
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
325
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
326
+ textAlign?: import("csstype").Property.TextAlign | undefined;
327
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
328
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
329
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
330
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
331
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
332
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
333
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
334
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
335
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
336
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
337
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
338
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
339
+ textJustify?: import("csstype").Property.TextJustify | undefined;
340
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
341
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
342
+ textRendering?: import("csstype").Property.TextRendering | undefined;
343
+ textShadow?: import("csstype").Property.TextShadow | undefined;
344
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
345
+ textTransform?: import("csstype").Property.TextTransform | undefined;
346
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
347
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
348
+ textWrap?: import("csstype").Property.TextWrap | undefined;
349
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
350
+ top?: import("csstype").Property.Top<string | number> | undefined;
351
+ touchAction?: import("csstype").Property.TouchAction | undefined;
352
+ transform?: import("csstype").Property.Transform | undefined;
353
+ transformBox?: import("csstype").Property.TransformBox | undefined;
354
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
355
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
356
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
357
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
358
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
359
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
360
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
361
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
362
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
363
+ userSelect?: import("csstype").Property.UserSelect | undefined;
364
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
365
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
366
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
367
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
368
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
369
+ visibility?: import("csstype").Property.Visibility | undefined;
370
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
371
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
372
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
373
+ widows?: import("csstype").Property.Widows | undefined;
374
+ width?: import("csstype").Property.Width<string | number> | undefined;
375
+ willChange?: import("csstype").Property.WillChange | undefined;
376
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
377
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
378
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
379
+ writingMode?: import("csstype").Property.WritingMode | undefined;
380
+ zIndex?: import("csstype").Property.ZIndex | undefined;
381
+ zoom?: import("csstype").Property.Zoom | undefined;
382
+ all?: import("csstype").Property.All | undefined;
383
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
384
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
385
+ background?: import("csstype").Property.Background<string | number> | undefined;
386
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
387
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
388
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
389
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
390
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
391
+ borderColor?: import("csstype").Property.BorderColor | undefined;
392
+ borderImage?: import("csstype").Property.BorderImage | undefined;
393
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
394
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
395
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
396
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
397
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
398
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
399
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
400
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
401
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
402
+ caret?: import("csstype").Property.Caret | undefined;
403
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
404
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
405
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
406
+ container?: import("csstype").Property.Container | undefined;
407
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
408
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
409
+ font?: import("csstype").Property.Font | undefined;
410
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
411
+ grid?: import("csstype").Property.Grid | undefined;
412
+ gridArea?: import("csstype").Property.GridArea | undefined;
413
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
414
+ gridRow?: import("csstype").Property.GridRow | undefined;
415
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
416
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
417
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
418
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
419
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
420
+ listStyle?: import("csstype").Property.ListStyle | undefined;
421
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
422
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
423
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
424
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
425
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
426
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
427
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
428
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
429
+ overflow?: import("csstype").Property.Overflow | undefined;
430
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
431
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
432
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
433
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
434
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
435
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
436
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
437
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
438
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
439
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
440
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
441
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
442
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
443
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
444
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
445
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
446
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
447
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
448
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
449
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
450
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
451
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
452
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
453
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
454
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
455
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
456
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
457
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
458
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
459
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
460
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
461
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
462
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
463
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
464
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
465
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
466
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
467
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
468
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
469
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
470
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
471
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
472
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
473
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
474
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
475
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
476
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
477
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
478
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
479
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
480
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
481
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
482
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
483
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
484
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
485
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
486
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
487
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
488
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
489
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
490
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
491
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
492
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
493
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
494
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
495
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
496
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
497
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
498
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
499
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
500
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
501
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
502
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
503
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
504
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
505
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
506
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
507
+ msFilter?: import("csstype").Property.MsFilter | undefined;
508
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
509
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
510
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
511
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
512
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
513
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
514
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
515
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
516
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
517
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
518
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
519
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
520
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
521
+ msOrder?: import("csstype").Property.Order | undefined;
522
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
523
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
524
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
525
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
526
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
527
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
528
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
529
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
530
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
531
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
532
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
533
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
534
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
535
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
536
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
537
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
538
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
539
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
540
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
541
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
542
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
543
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
544
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
545
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
546
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
547
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
548
+ msTransform?: import("csstype").Property.Transform | undefined;
549
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
550
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
551
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
552
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
553
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
554
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
555
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
556
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
557
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
558
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
559
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
560
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
561
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
562
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
563
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
564
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
565
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
566
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
567
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
568
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
569
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
570
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
571
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
572
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
573
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
574
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
575
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
576
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
577
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
578
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
579
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
580
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
581
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
582
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
583
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
584
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
585
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
586
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
587
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
588
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
589
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
590
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
591
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
592
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
593
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
594
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
595
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
596
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
597
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
598
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
599
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
600
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
601
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
602
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
603
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
604
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
605
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
606
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
607
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
608
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
609
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
610
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
611
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
612
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
613
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
614
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
615
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
616
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
617
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
618
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
619
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
620
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
621
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
622
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
623
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
624
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
625
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
626
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
627
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
628
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
629
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
630
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
631
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
632
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
633
+ WebkitOrder?: import("csstype").Property.Order | undefined;
634
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
635
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
636
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
637
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
638
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
639
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
640
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
641
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
642
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
643
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
644
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
645
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
646
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
647
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
648
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
649
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
650
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
651
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
652
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
653
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
654
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
655
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
656
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
657
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
658
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
659
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
660
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
661
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
662
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
663
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
664
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
665
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
666
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
667
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
668
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
669
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
670
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
671
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
672
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
673
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
674
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
675
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
676
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
677
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
678
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
679
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
680
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
681
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
682
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
683
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
684
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
685
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
686
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
687
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
688
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
689
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
690
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
691
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
692
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
693
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
694
+ azimuth?: import("csstype").Property.Azimuth | undefined;
695
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
696
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
697
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
698
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
699
+ boxLines?: import("csstype").Property.BoxLines | undefined;
700
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
701
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
702
+ boxPack?: import("csstype").Property.BoxPack | undefined;
703
+ clip?: import("csstype").Property.Clip | undefined;
704
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
705
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
706
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
707
+ imeMode?: import("csstype").Property.ImeMode | undefined;
708
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
709
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
710
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
711
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
712
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
713
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
714
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
715
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
716
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
717
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
718
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
719
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
720
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
721
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
722
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
723
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
724
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
725
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
726
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
727
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
728
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
729
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
730
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
731
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
732
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
733
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
734
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
735
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
736
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
737
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
738
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
739
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
740
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
741
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
742
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
743
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
744
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
745
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
746
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
747
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
748
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
749
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
750
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
751
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
752
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
753
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
754
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
755
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
756
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
757
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
758
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
759
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
760
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
761
+ MozTransform?: import("csstype").Property.Transform | undefined;
762
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
763
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
764
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
765
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
766
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
767
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
768
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
769
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
770
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
771
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
772
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
773
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
774
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
775
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
776
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
777
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
778
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
779
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
780
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
781
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
782
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
783
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
784
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
785
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
786
+ OTransform?: import("csstype").Property.Transform | undefined;
787
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
788
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
789
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
790
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
791
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
792
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
793
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
794
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
795
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
796
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
797
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
798
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
799
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
800
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
801
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
802
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
803
+ clipRule?: import("csstype").Property.ClipRule | undefined;
804
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
805
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
806
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
807
+ fill?: import("csstype").Property.Fill | undefined;
808
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
809
+ fillRule?: import("csstype").Property.FillRule | undefined;
810
+ floodColor?: import("csstype").Property.FloodColor | undefined;
811
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
812
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
813
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
814
+ marker?: import("csstype").Property.Marker | undefined;
815
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
816
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
817
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
818
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
819
+ stopColor?: import("csstype").Property.StopColor | undefined;
820
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
821
+ stroke?: import("csstype").Property.Stroke | undefined;
822
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
823
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
824
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
825
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
826
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
827
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
828
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
829
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
830
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
831
+ };
832
+ secondary: {
833
+ backgroundColor: string;
834
+ border: string;
835
+ color: "#fff";
836
+ accentColor?: import("csstype").Property.AccentColor | undefined;
837
+ alignContent?: import("csstype").Property.AlignContent | undefined;
838
+ alignItems?: import("csstype").Property.AlignItems | undefined;
839
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
840
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
841
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
842
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
843
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
844
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
845
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
846
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
847
+ animationName?: import("csstype").Property.AnimationName | undefined;
848
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
849
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
850
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
851
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
852
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
853
+ appearance?: import("csstype").Property.Appearance | undefined;
854
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
855
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
856
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
857
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
858
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
859
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
860
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
861
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
862
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
863
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
864
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
865
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
866
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
867
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
868
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
869
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
870
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
871
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
872
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
873
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
874
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
875
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
876
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
877
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
878
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
879
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
880
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
881
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
882
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
883
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
884
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
885
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
886
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
887
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
888
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
889
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
890
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
891
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
892
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
893
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
894
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
895
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
896
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
897
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
898
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
899
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
900
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
901
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
902
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
903
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
904
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
905
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
906
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
907
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
908
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
909
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
910
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
911
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
912
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
913
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
914
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
915
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
916
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
917
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
918
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
919
+ breakInside?: import("csstype").Property.BreakInside | undefined;
920
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
921
+ caretColor?: import("csstype").Property.CaretColor | undefined;
922
+ caretShape?: import("csstype").Property.CaretShape | undefined;
923
+ clear?: import("csstype").Property.Clear | undefined;
924
+ clipPath?: import("csstype").Property.ClipPath | undefined;
925
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
926
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
927
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
928
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
929
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
930
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
931
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
932
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
933
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
934
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
935
+ contain?: import("csstype").Property.Contain | undefined;
936
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
937
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
938
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
939
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
940
+ containerName?: import("csstype").Property.ContainerName | undefined;
941
+ containerType?: import("csstype").Property.ContainerType | undefined;
942
+ content?: import("csstype").Property.Content | undefined;
943
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
944
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
945
+ counterReset?: import("csstype").Property.CounterReset | undefined;
946
+ counterSet?: import("csstype").Property.CounterSet | undefined;
947
+ cursor?: import("csstype").Property.Cursor | undefined;
948
+ direction?: import("csstype").Property.Direction | undefined;
949
+ display?: import("csstype").Property.Display | undefined;
950
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
951
+ filter?: import("csstype").Property.Filter | undefined;
952
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
953
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
954
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
955
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
956
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
957
+ float?: import("csstype").Property.Float | undefined;
958
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
959
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
960
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
961
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
962
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
963
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
964
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
965
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
966
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
967
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
968
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
969
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
970
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
971
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
972
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
973
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
974
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
975
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
976
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
977
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
978
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
979
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
980
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
981
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
982
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
983
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
984
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
985
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
986
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
987
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
988
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
989
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
990
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
991
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
992
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
993
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
994
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
995
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
996
+ height?: import("csstype").Property.Height<string | number> | undefined;
997
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
998
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
999
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1000
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1001
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1002
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1003
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1004
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1005
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1006
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1007
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1008
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1009
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1010
+ isolation?: import("csstype").Property.Isolation | undefined;
1011
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1012
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1013
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1014
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1015
+ left?: import("csstype").Property.Left<string | number> | undefined;
1016
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1017
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1018
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1019
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1020
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1021
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1022
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1023
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1024
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1025
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1026
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1027
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1028
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1029
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1030
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1031
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1032
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1033
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1034
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1035
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1036
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1037
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1038
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1039
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1040
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1041
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1042
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1043
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1044
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1045
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1046
+ maskType?: import("csstype").Property.MaskType | undefined;
1047
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1048
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1049
+ mathShift?: import("csstype").Property.MathShift | undefined;
1050
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1051
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1052
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1053
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1054
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1055
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1056
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1057
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1058
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1059
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1060
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1061
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1062
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1063
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1064
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1065
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1066
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1067
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1068
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1069
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1070
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1071
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1072
+ opacity?: import("csstype").Property.Opacity | undefined;
1073
+ order?: import("csstype").Property.Order | undefined;
1074
+ orphans?: import("csstype").Property.Orphans | undefined;
1075
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1076
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1077
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1078
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1079
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1080
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1081
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1082
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1083
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1084
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1085
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1086
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1087
+ overlay?: import("csstype").Property.Overlay | undefined;
1088
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1089
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1090
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1091
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1092
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1093
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1094
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1095
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1096
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1097
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1098
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1099
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1100
+ page?: import("csstype").Property.Page | undefined;
1101
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1102
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1103
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1104
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1105
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1106
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1107
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1108
+ position?: import("csstype").Property.Position | undefined;
1109
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1110
+ quotes?: import("csstype").Property.Quotes | undefined;
1111
+ resize?: import("csstype").Property.Resize | undefined;
1112
+ right?: import("csstype").Property.Right<string | number> | undefined;
1113
+ rotate?: import("csstype").Property.Rotate | undefined;
1114
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1115
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1116
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1117
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1118
+ scale?: import("csstype").Property.Scale | undefined;
1119
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1120
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1121
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1122
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1123
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1124
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1125
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1126
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1127
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1128
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1129
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1130
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1131
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1132
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1133
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1134
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1135
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1136
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1137
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1138
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1139
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1140
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1141
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1142
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1143
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1144
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1145
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1146
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1147
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1148
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1149
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1150
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1151
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1152
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1153
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1154
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1155
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1156
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1157
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1158
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1159
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1160
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1161
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1162
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1163
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1164
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1165
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1166
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1167
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1168
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1169
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1170
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1171
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1172
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1173
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1174
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1175
+ textWrap?: import("csstype").Property.TextWrap | undefined;
1176
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
1177
+ top?: import("csstype").Property.Top<string | number> | undefined;
1178
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1179
+ transform?: import("csstype").Property.Transform | undefined;
1180
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1181
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1182
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1183
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
1184
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1185
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1186
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1187
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1188
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
1189
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1190
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1191
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1192
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
1193
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
1194
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
1195
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1196
+ visibility?: import("csstype").Property.Visibility | undefined;
1197
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1198
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1199
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
1200
+ widows?: import("csstype").Property.Widows | undefined;
1201
+ width?: import("csstype").Property.Width<string | number> | undefined;
1202
+ willChange?: import("csstype").Property.WillChange | undefined;
1203
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1204
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1205
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1206
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1207
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1208
+ zoom?: import("csstype").Property.Zoom | undefined;
1209
+ all?: import("csstype").Property.All | undefined;
1210
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
1211
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
1212
+ background?: import("csstype").Property.Background<string | number> | undefined;
1213
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1214
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
1215
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1216
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1217
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
1218
+ borderColor?: import("csstype").Property.BorderColor | undefined;
1219
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1220
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
1221
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1222
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1223
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
1224
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1225
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
1226
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1227
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
1228
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
1229
+ caret?: import("csstype").Property.Caret | undefined;
1230
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1231
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
1232
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1233
+ container?: import("csstype").Property.Container | undefined;
1234
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
1235
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1236
+ font?: import("csstype").Property.Font | undefined;
1237
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
1238
+ grid?: import("csstype").Property.Grid | undefined;
1239
+ gridArea?: import("csstype").Property.GridArea | undefined;
1240
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1241
+ gridRow?: import("csstype").Property.GridRow | undefined;
1242
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1243
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
1244
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1245
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1246
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1247
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1248
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
1249
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1250
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1251
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
1252
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1253
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
1254
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
1255
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
1256
+ overflow?: import("csstype").Property.Overflow | undefined;
1257
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1258
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
1259
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1260
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1261
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1262
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1263
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1264
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1265
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1266
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1267
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1268
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1269
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1270
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1271
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1272
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
1273
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1274
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
1275
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
1276
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1277
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1278
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1279
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1280
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1281
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1282
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1283
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1284
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1285
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1286
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1287
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1288
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1289
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1290
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1291
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1292
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1293
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1294
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1295
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1296
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1297
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1298
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1299
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1300
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1301
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1302
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1303
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1304
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1305
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1306
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1307
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1308
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1309
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1310
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1311
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1312
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1313
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1314
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1315
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1316
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1317
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1318
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1319
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1320
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1321
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1322
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1323
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1324
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1325
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1326
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1327
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1328
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1329
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1330
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1331
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1332
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1333
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1334
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1335
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1336
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1337
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1338
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1339
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1340
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
1341
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1342
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1343
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1344
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1345
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1346
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1347
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1348
+ msOrder?: import("csstype").Property.Order | undefined;
1349
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1350
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1351
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1352
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1353
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1354
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1355
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1356
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1357
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1358
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1359
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1360
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1361
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1362
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1363
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1364
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1365
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1366
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1367
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1368
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1369
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1370
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1371
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1372
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1373
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1374
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1375
+ msTransform?: import("csstype").Property.Transform | undefined;
1376
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1377
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1378
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1379
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1380
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1381
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1382
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1383
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1384
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1385
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1386
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1387
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1388
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1389
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1390
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1391
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1392
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1393
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1394
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1395
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1396
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1397
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1398
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1399
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1400
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1401
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1402
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1403
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1404
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1405
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1406
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1407
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1408
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1409
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1410
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1411
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1412
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1413
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1414
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1415
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1416
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1417
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1418
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1419
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1420
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1421
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1422
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1423
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1424
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1425
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1426
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1427
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1428
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1429
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1430
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1431
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1432
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1433
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1434
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1435
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1436
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1437
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1438
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1439
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1440
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1441
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1442
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1443
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1444
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1445
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1446
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1447
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1448
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1449
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1450
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1451
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1452
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1453
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1454
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1455
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1456
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1457
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1458
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1459
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1460
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1461
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1462
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1463
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1464
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1465
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1466
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1467
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1468
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1469
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1470
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1471
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1472
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1473
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1474
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1475
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1476
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1477
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1478
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1479
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1480
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1481
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1482
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1483
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1484
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1485
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1486
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1487
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1488
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1489
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1490
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1491
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1492
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1493
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1494
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1495
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1496
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1497
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1498
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1499
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1500
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1501
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1502
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1503
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1504
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1505
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1506
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1507
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1508
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1509
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1510
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1511
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1512
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1513
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1514
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1515
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1516
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1517
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1518
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1519
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1520
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1521
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1522
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1523
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1524
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1525
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1526
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1527
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1528
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1529
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1530
+ clip?: import("csstype").Property.Clip | undefined;
1531
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1532
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1533
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1534
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1535
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1536
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1537
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1538
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1539
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1540
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1541
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1542
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1543
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1544
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1545
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1546
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1547
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1548
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1549
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1550
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1551
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1552
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1553
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1554
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1555
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1556
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1557
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1558
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1559
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1560
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1561
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1562
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1563
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1564
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1565
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1566
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1567
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1568
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1569
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1570
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1571
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1572
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1573
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1574
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1575
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1576
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1577
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1578
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1579
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1580
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1581
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1582
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1583
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1584
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1585
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1586
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1587
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1588
+ MozTransform?: import("csstype").Property.Transform | undefined;
1589
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1590
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1591
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1592
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1593
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1594
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1595
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1596
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1597
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1598
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1599
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1600
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1601
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1602
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1603
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1604
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1605
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1606
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1607
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1608
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1609
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1610
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1611
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1612
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1613
+ OTransform?: import("csstype").Property.Transform | undefined;
1614
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1615
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1616
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1617
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1618
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1619
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1620
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1621
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1622
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1623
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1624
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1625
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1626
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1627
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1628
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1629
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1630
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1631
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1632
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1633
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1634
+ fill?: import("csstype").Property.Fill | undefined;
1635
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1636
+ fillRule?: import("csstype").Property.FillRule | undefined;
1637
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1638
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1639
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1640
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1641
+ marker?: import("csstype").Property.Marker | undefined;
1642
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1643
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1644
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1645
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1646
+ stopColor?: import("csstype").Property.StopColor | undefined;
1647
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1648
+ stroke?: import("csstype").Property.Stroke | undefined;
1649
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1650
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1651
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1652
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1653
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1654
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1655
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1656
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1657
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1658
+ };
1659
+ };
1660
+ export declare const errorMessage: CSSProperties;
1661
+ export declare const statusMessage: CSSProperties;
1662
+ export declare const infoText: CSSProperties;
1663
+ export declare const codeBlock: CSSProperties;
1664
+ export declare const buttonGroup: CSSProperties;
1665
+ export declare const mergeStyles: (...styles: (CSSProperties | undefined)[]) => CSSProperties;
1666
+ export declare const getDebugStyle: <K extends keyof typeof debugStyles>(key: K) => (typeof debugStyles)[K];
1667
+ export declare const debugStyles: {
1668
+ readonly actionButton: {
1669
+ primary: {
1670
+ backgroundColor: "#0084ff";
1671
+ border: string;
1672
+ color: string;
1673
+ accentColor?: import("csstype").Property.AccentColor | undefined;
1674
+ alignContent?: import("csstype").Property.AlignContent | undefined;
1675
+ alignItems?: import("csstype").Property.AlignItems | undefined;
1676
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
1677
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
1678
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1679
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1680
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1681
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1682
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1683
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1684
+ animationName?: import("csstype").Property.AnimationName | undefined;
1685
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1686
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
1687
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
1688
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1689
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1690
+ appearance?: import("csstype").Property.Appearance | undefined;
1691
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1692
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1693
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1694
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1695
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1696
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1697
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1698
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1699
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1700
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1701
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1702
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1703
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1704
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
1705
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1706
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1707
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1708
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1709
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1710
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1711
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1712
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1713
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1714
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1715
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1716
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1717
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1718
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1719
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1720
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1721
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1722
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1723
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1724
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1725
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1726
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1727
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1728
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1729
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1730
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1731
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1732
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1733
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1734
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1735
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1736
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1737
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1738
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1739
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1740
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1741
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1742
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1743
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1744
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1745
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1746
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1747
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1748
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1749
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1750
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
1751
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1752
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1753
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1754
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1755
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1756
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1757
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1758
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1759
+ caretShape?: import("csstype").Property.CaretShape | undefined;
1760
+ clear?: import("csstype").Property.Clear | undefined;
1761
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1762
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1763
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1764
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1765
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1766
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1767
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1768
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1769
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1770
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1771
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1772
+ contain?: import("csstype").Property.Contain | undefined;
1773
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1774
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1775
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1776
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1777
+ containerName?: import("csstype").Property.ContainerName | undefined;
1778
+ containerType?: import("csstype").Property.ContainerType | undefined;
1779
+ content?: import("csstype").Property.Content | undefined;
1780
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1781
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1782
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1783
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1784
+ cursor?: import("csstype").Property.Cursor | undefined;
1785
+ direction?: import("csstype").Property.Direction | undefined;
1786
+ display?: import("csstype").Property.Display | undefined;
1787
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1788
+ filter?: import("csstype").Property.Filter | undefined;
1789
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1790
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1791
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1792
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1793
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1794
+ float?: import("csstype").Property.Float | undefined;
1795
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1796
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1797
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1798
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1799
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1800
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1801
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1802
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1803
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1804
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1805
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1806
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1807
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1808
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1809
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1810
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1811
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1812
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1813
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1814
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1815
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1816
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1817
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1818
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1819
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1820
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1821
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1822
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1823
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1824
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1825
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1826
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1827
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1828
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1829
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1830
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1831
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1832
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1833
+ height?: import("csstype").Property.Height<string | number> | undefined;
1834
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1835
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1836
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1837
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1838
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1839
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1840
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1841
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1842
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1843
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1844
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1845
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1846
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1847
+ isolation?: import("csstype").Property.Isolation | undefined;
1848
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1849
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1850
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1851
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1852
+ left?: import("csstype").Property.Left<string | number> | undefined;
1853
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1854
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1855
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1856
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1857
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1858
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1859
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1860
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1861
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1862
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1863
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1864
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1865
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1866
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1867
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1868
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1869
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1870
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1871
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1872
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1873
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1874
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1875
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1876
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1877
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1878
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1879
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1880
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1881
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1882
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1883
+ maskType?: import("csstype").Property.MaskType | undefined;
1884
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1885
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1886
+ mathShift?: import("csstype").Property.MathShift | undefined;
1887
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1888
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1889
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1890
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1891
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1892
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1893
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1894
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1895
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1896
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1897
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1898
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1899
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1900
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1901
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1902
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1903
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1904
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1905
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1906
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1907
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1908
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1909
+ opacity?: import("csstype").Property.Opacity | undefined;
1910
+ order?: import("csstype").Property.Order | undefined;
1911
+ orphans?: import("csstype").Property.Orphans | undefined;
1912
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1913
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1914
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1915
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1916
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1917
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1918
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1919
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1920
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1921
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1922
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1923
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1924
+ overlay?: import("csstype").Property.Overlay | undefined;
1925
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1926
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1927
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1928
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1929
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1930
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1931
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1932
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1933
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1934
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1935
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1936
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1937
+ page?: import("csstype").Property.Page | undefined;
1938
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1939
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1940
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1941
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1942
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1943
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1944
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1945
+ position?: import("csstype").Property.Position | undefined;
1946
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1947
+ quotes?: import("csstype").Property.Quotes | undefined;
1948
+ resize?: import("csstype").Property.Resize | undefined;
1949
+ right?: import("csstype").Property.Right<string | number> | undefined;
1950
+ rotate?: import("csstype").Property.Rotate | undefined;
1951
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1952
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1953
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1954
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1955
+ scale?: import("csstype").Property.Scale | undefined;
1956
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1957
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1958
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1959
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1960
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1961
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1962
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1963
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1964
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1965
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1966
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1967
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1968
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1969
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1970
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1971
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1972
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1973
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1974
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1975
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1976
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1977
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1978
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1979
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1980
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1981
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1982
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1983
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1984
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1985
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1986
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1987
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1988
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1989
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1990
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1991
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1992
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1993
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1994
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1995
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1996
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1997
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1998
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1999
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2000
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2001
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2002
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2003
+ textJustify?: import("csstype").Property.TextJustify | undefined;
2004
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
2005
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
2006
+ textRendering?: import("csstype").Property.TextRendering | undefined;
2007
+ textShadow?: import("csstype").Property.TextShadow | undefined;
2008
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2009
+ textTransform?: import("csstype").Property.TextTransform | undefined;
2010
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2011
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2012
+ textWrap?: import("csstype").Property.TextWrap | undefined;
2013
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
2014
+ top?: import("csstype").Property.Top<string | number> | undefined;
2015
+ touchAction?: import("csstype").Property.TouchAction | undefined;
2016
+ transform?: import("csstype").Property.Transform | undefined;
2017
+ transformBox?: import("csstype").Property.TransformBox | undefined;
2018
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2019
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
2020
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2021
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2022
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2023
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2024
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2025
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
2026
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2027
+ userSelect?: import("csstype").Property.UserSelect | undefined;
2028
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2029
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2030
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2031
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2032
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2033
+ visibility?: import("csstype").Property.Visibility | undefined;
2034
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2035
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2036
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
2037
+ widows?: import("csstype").Property.Widows | undefined;
2038
+ width?: import("csstype").Property.Width<string | number> | undefined;
2039
+ willChange?: import("csstype").Property.WillChange | undefined;
2040
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
2041
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2042
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
2043
+ writingMode?: import("csstype").Property.WritingMode | undefined;
2044
+ zIndex?: import("csstype").Property.ZIndex | undefined;
2045
+ zoom?: import("csstype").Property.Zoom | undefined;
2046
+ all?: import("csstype").Property.All | undefined;
2047
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
2048
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
2049
+ background?: import("csstype").Property.Background<string | number> | undefined;
2050
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2051
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2052
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2053
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2054
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2055
+ borderColor?: import("csstype").Property.BorderColor | undefined;
2056
+ borderImage?: import("csstype").Property.BorderImage | undefined;
2057
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2058
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2059
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2060
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2061
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2062
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2063
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
2064
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2065
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2066
+ caret?: import("csstype").Property.Caret | undefined;
2067
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2068
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
2069
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2070
+ container?: import("csstype").Property.Container | undefined;
2071
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
2072
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
2073
+ font?: import("csstype").Property.Font | undefined;
2074
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
2075
+ grid?: import("csstype").Property.Grid | undefined;
2076
+ gridArea?: import("csstype").Property.GridArea | undefined;
2077
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
2078
+ gridRow?: import("csstype").Property.GridRow | undefined;
2079
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2080
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
2081
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2082
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2083
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
2084
+ listStyle?: import("csstype").Property.ListStyle | undefined;
2085
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
2086
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2087
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2088
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
2089
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
2090
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
2091
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
2092
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
2093
+ overflow?: import("csstype").Property.Overflow | undefined;
2094
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2095
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
2096
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2097
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2098
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
2099
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
2100
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2101
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2102
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2103
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2104
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2105
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2106
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2107
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2108
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2109
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2110
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2111
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
2112
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2113
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2114
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2115
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2116
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2117
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2118
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2119
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2120
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2121
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2122
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
2123
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2124
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2125
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2126
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2127
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2128
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2129
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2130
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2131
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2132
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2133
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2134
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2135
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2136
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2137
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2138
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2139
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2140
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2141
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2142
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
2143
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2144
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2145
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2146
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
2147
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2148
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2149
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2150
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2151
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2152
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2153
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2154
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2155
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2156
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2157
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2158
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2159
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2160
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2161
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2162
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2163
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2164
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2165
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2166
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2167
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2168
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2169
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2170
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2171
+ msFilter?: import("csstype").Property.MsFilter | undefined;
2172
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2173
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2174
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2175
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2176
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2177
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
2178
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2179
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2180
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2181
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2182
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
2183
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2184
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
2185
+ msOrder?: import("csstype").Property.Order | undefined;
2186
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2187
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
2188
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
2189
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2190
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2191
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2192
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2193
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2194
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2195
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2196
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2197
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2198
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2199
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2200
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2201
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2202
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2203
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2204
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2205
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2206
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2207
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2208
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2209
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2210
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
2211
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2212
+ msTransform?: import("csstype").Property.Transform | undefined;
2213
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2214
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2215
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2216
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2217
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2218
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2219
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
2220
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2221
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2222
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2223
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
2224
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2225
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2226
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2227
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2228
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2229
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2230
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2231
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2232
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2233
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2234
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2235
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2236
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2237
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2238
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2239
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2240
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2241
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2242
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2243
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2244
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2245
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2246
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2247
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2248
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2249
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2250
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2251
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2252
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2253
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2254
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2255
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2256
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2257
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2258
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2259
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2260
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2261
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
2262
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2263
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2264
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2265
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2266
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
2267
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2268
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
2269
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2270
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2271
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2272
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
2273
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
2274
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
2275
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
2276
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
2277
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2278
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2279
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
2280
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2281
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2282
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2283
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
2284
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2285
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
2286
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
2287
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
2288
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
2289
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
2290
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
2291
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
2292
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
2293
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2294
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2295
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
2296
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2297
+ WebkitOrder?: import("csstype").Property.Order | undefined;
2298
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2299
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2300
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2301
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2302
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2303
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2304
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
2305
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2306
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2307
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2308
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
2309
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2310
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2311
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2312
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2313
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2314
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2315
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2316
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
2317
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
2318
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2319
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2320
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
2321
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2322
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
2323
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
2324
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2325
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2326
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2327
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2328
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2329
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2330
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
2331
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
2332
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
2333
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2334
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
2335
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2336
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
2337
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
2338
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
2339
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
2340
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
2341
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
2342
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
2343
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
2344
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2345
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2346
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
2347
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
2348
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2349
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2350
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
2351
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
2352
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
2353
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
2354
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
2355
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2356
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
2357
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2358
+ azimuth?: import("csstype").Property.Azimuth | undefined;
2359
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
2360
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
2361
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
2362
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2363
+ boxLines?: import("csstype").Property.BoxLines | undefined;
2364
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2365
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
2366
+ boxPack?: import("csstype").Property.BoxPack | undefined;
2367
+ clip?: import("csstype").Property.Clip | undefined;
2368
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
2369
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
2370
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
2371
+ imeMode?: import("csstype").Property.ImeMode | undefined;
2372
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2373
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2374
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2375
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2376
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2377
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2378
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
2379
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
2380
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2381
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2382
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
2383
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
2384
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2385
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2386
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2387
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2388
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
2389
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2390
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2391
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
2392
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
2393
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
2394
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
2395
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2396
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2397
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
2398
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2399
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2400
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2401
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2402
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2403
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2404
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2405
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2406
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2407
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2408
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2409
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2410
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
2411
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2412
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
2413
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2414
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
2415
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
2416
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
2417
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2418
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2419
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2420
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2421
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2422
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2423
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2424
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2425
+ MozTransform?: import("csstype").Property.Transform | undefined;
2426
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2427
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2428
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2429
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2430
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2431
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2432
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2433
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
2434
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
2435
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2436
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2437
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2438
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2439
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2440
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2441
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
2442
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2443
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2444
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2445
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
2446
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
2447
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2448
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2449
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2450
+ OTransform?: import("csstype").Property.Transform | undefined;
2451
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2452
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2453
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2454
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2455
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2456
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2457
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2458
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2459
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2460
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2461
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
2462
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2463
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2464
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
2465
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
2466
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
2467
+ clipRule?: import("csstype").Property.ClipRule | undefined;
2468
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
2469
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
2470
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
2471
+ fill?: import("csstype").Property.Fill | undefined;
2472
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
2473
+ fillRule?: import("csstype").Property.FillRule | undefined;
2474
+ floodColor?: import("csstype").Property.FloodColor | undefined;
2475
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
2476
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
2477
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
2478
+ marker?: import("csstype").Property.Marker | undefined;
2479
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
2480
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
2481
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
2482
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2483
+ stopColor?: import("csstype").Property.StopColor | undefined;
2484
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2485
+ stroke?: import("csstype").Property.Stroke | undefined;
2486
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2487
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2488
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2489
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2490
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2491
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2492
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2493
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
2494
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2495
+ };
2496
+ secondary: {
2497
+ backgroundColor: string;
2498
+ border: string;
2499
+ color: "#fff";
2500
+ accentColor?: import("csstype").Property.AccentColor | undefined;
2501
+ alignContent?: import("csstype").Property.AlignContent | undefined;
2502
+ alignItems?: import("csstype").Property.AlignItems | undefined;
2503
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
2504
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
2505
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
2506
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2507
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
2508
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2509
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2510
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2511
+ animationName?: import("csstype").Property.AnimationName | undefined;
2512
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2513
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
2514
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
2515
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
2516
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2517
+ appearance?: import("csstype").Property.Appearance | undefined;
2518
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
2519
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2520
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2521
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
2522
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
2523
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2524
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
2525
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2526
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
2527
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
2528
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
2529
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2530
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
2531
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
2532
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
2533
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
2534
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
2535
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
2536
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
2537
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
2538
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
2539
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
2540
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2541
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
2542
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2543
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2544
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
2545
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
2546
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
2547
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
2548
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
2549
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
2550
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
2551
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2552
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
2553
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
2554
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
2555
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2556
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2557
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2558
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2559
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2560
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
2561
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
2562
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2563
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
2564
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
2565
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
2566
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
2567
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
2568
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
2569
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
2570
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
2571
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
2572
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
2573
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2574
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2575
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
2576
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
2577
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
2578
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2579
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
2580
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
2581
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
2582
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
2583
+ breakInside?: import("csstype").Property.BreakInside | undefined;
2584
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
2585
+ caretColor?: import("csstype").Property.CaretColor | undefined;
2586
+ caretShape?: import("csstype").Property.CaretShape | undefined;
2587
+ clear?: import("csstype").Property.Clear | undefined;
2588
+ clipPath?: import("csstype").Property.ClipPath | undefined;
2589
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2590
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
2591
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
2592
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
2593
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
2594
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2595
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2596
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2597
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
2598
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2599
+ contain?: import("csstype").Property.Contain | undefined;
2600
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
2601
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
2602
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
2603
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
2604
+ containerName?: import("csstype").Property.ContainerName | undefined;
2605
+ containerType?: import("csstype").Property.ContainerType | undefined;
2606
+ content?: import("csstype").Property.Content | undefined;
2607
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
2608
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
2609
+ counterReset?: import("csstype").Property.CounterReset | undefined;
2610
+ counterSet?: import("csstype").Property.CounterSet | undefined;
2611
+ cursor?: import("csstype").Property.Cursor | undefined;
2612
+ direction?: import("csstype").Property.Direction | undefined;
2613
+ display?: import("csstype").Property.Display | undefined;
2614
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
2615
+ filter?: import("csstype").Property.Filter | undefined;
2616
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2617
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
2618
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
2619
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
2620
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
2621
+ float?: import("csstype").Property.Float | undefined;
2622
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
2623
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2624
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
2625
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2626
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
2627
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
2628
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
2629
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
2630
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
2631
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
2632
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
2633
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
2634
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
2635
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
2636
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
2637
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
2638
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
2639
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
2640
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
2641
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
2642
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
2643
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2644
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
2645
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
2646
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
2647
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
2648
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
2649
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
2650
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
2651
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
2652
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
2653
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
2654
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
2655
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
2656
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
2657
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
2658
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
2659
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
2660
+ height?: import("csstype").Property.Height<string | number> | undefined;
2661
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2662
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
2663
+ hyphens?: import("csstype").Property.Hyphens | undefined;
2664
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
2665
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
2666
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
2667
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
2668
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
2669
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
2670
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2671
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2672
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2673
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2674
+ isolation?: import("csstype").Property.Isolation | undefined;
2675
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
2676
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
2677
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
2678
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
2679
+ left?: import("csstype").Property.Left<string | number> | undefined;
2680
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
2681
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
2682
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
2683
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
2684
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
2685
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
2686
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
2687
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
2688
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
2689
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
2690
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2691
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2692
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
2693
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
2694
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
2695
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
2696
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
2697
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2698
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2699
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2700
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
2701
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2702
+ maskClip?: import("csstype").Property.MaskClip | undefined;
2703
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
2704
+ maskImage?: import("csstype").Property.MaskImage | undefined;
2705
+ maskMode?: import("csstype").Property.MaskMode | undefined;
2706
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
2707
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
2708
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
2709
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
2710
+ maskType?: import("csstype").Property.MaskType | undefined;
2711
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
2712
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
2713
+ mathShift?: import("csstype").Property.MathShift | undefined;
2714
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
2715
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
2716
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
2717
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2718
+ maxLines?: import("csstype").Property.MaxLines | undefined;
2719
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
2720
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
2721
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
2722
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
2723
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
2724
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
2725
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2726
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
2727
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
2728
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
2729
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2730
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
2731
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2732
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
2733
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
2734
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
2735
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
2736
+ opacity?: import("csstype").Property.Opacity | undefined;
2737
+ order?: import("csstype").Property.Order | undefined;
2738
+ orphans?: import("csstype").Property.Orphans | undefined;
2739
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
2740
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
2741
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2742
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2743
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
2744
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
2745
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
2746
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
2747
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
2748
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
2749
+ overflowX?: import("csstype").Property.OverflowX | undefined;
2750
+ overflowY?: import("csstype").Property.OverflowY | undefined;
2751
+ overlay?: import("csstype").Property.Overlay | undefined;
2752
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
2753
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
2754
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
2755
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
2756
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
2757
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
2758
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
2759
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2760
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2761
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
2762
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
2763
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
2764
+ page?: import("csstype").Property.Page | undefined;
2765
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
2766
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
2767
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
2768
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
2769
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
2770
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2771
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
2772
+ position?: import("csstype").Property.Position | undefined;
2773
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2774
+ quotes?: import("csstype").Property.Quotes | undefined;
2775
+ resize?: import("csstype").Property.Resize | undefined;
2776
+ right?: import("csstype").Property.Right<string | number> | undefined;
2777
+ rotate?: import("csstype").Property.Rotate | undefined;
2778
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
2779
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
2780
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
2781
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
2782
+ scale?: import("csstype").Property.Scale | undefined;
2783
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
2784
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
2785
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
2786
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2787
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
2788
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
2789
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2790
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2791
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2792
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
2793
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
2794
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
2795
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
2796
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
2797
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
2798
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
2799
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
2800
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
2801
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2802
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2803
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2804
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2805
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
2806
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2807
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
2808
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
2809
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
2810
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
2811
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
2812
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
2813
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2814
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
2815
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2816
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
2817
+ textAlign?: import("csstype").Property.TextAlign | undefined;
2818
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2819
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
2820
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2821
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2822
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2823
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
2824
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2825
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2826
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2827
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2828
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2829
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2830
+ textJustify?: import("csstype").Property.TextJustify | undefined;
2831
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
2832
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
2833
+ textRendering?: import("csstype").Property.TextRendering | undefined;
2834
+ textShadow?: import("csstype").Property.TextShadow | undefined;
2835
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2836
+ textTransform?: import("csstype").Property.TextTransform | undefined;
2837
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2838
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2839
+ textWrap?: import("csstype").Property.TextWrap | undefined;
2840
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
2841
+ top?: import("csstype").Property.Top<string | number> | undefined;
2842
+ touchAction?: import("csstype").Property.TouchAction | undefined;
2843
+ transform?: import("csstype").Property.Transform | undefined;
2844
+ transformBox?: import("csstype").Property.TransformBox | undefined;
2845
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2846
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
2847
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2848
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2849
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2850
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2851
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2852
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
2853
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2854
+ userSelect?: import("csstype").Property.UserSelect | undefined;
2855
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2856
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2857
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2858
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2859
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2860
+ visibility?: import("csstype").Property.Visibility | undefined;
2861
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2862
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2863
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
2864
+ widows?: import("csstype").Property.Widows | undefined;
2865
+ width?: import("csstype").Property.Width<string | number> | undefined;
2866
+ willChange?: import("csstype").Property.WillChange | undefined;
2867
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
2868
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2869
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
2870
+ writingMode?: import("csstype").Property.WritingMode | undefined;
2871
+ zIndex?: import("csstype").Property.ZIndex | undefined;
2872
+ zoom?: import("csstype").Property.Zoom | undefined;
2873
+ all?: import("csstype").Property.All | undefined;
2874
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
2875
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
2876
+ background?: import("csstype").Property.Background<string | number> | undefined;
2877
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2878
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2879
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2880
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2881
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2882
+ borderColor?: import("csstype").Property.BorderColor | undefined;
2883
+ borderImage?: import("csstype").Property.BorderImage | undefined;
2884
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2885
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2886
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2887
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2888
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2889
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2890
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
2891
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2892
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2893
+ caret?: import("csstype").Property.Caret | undefined;
2894
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2895
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
2896
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2897
+ container?: import("csstype").Property.Container | undefined;
2898
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
2899
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
2900
+ font?: import("csstype").Property.Font | undefined;
2901
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
2902
+ grid?: import("csstype").Property.Grid | undefined;
2903
+ gridArea?: import("csstype").Property.GridArea | undefined;
2904
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
2905
+ gridRow?: import("csstype").Property.GridRow | undefined;
2906
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2907
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
2908
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2909
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2910
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
2911
+ listStyle?: import("csstype").Property.ListStyle | undefined;
2912
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
2913
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2914
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2915
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
2916
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
2917
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
2918
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
2919
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
2920
+ overflow?: import("csstype").Property.Overflow | undefined;
2921
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2922
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
2923
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2924
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2925
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
2926
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
2927
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2928
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2929
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2930
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2931
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2932
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2933
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2934
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2935
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2936
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2937
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2938
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
2939
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2940
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2941
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2942
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2943
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2944
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2945
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2946
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2947
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2948
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2949
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
2950
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2951
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2952
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2953
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2954
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2955
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2956
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2957
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2958
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2959
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2960
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2961
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2962
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2963
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2964
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2965
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2966
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2967
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2968
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2969
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
2970
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2971
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2972
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2973
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
2974
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2975
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2976
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2977
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2978
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2979
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2980
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2981
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2982
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2983
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2984
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2985
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2986
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2987
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2988
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2989
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2990
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2991
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2992
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2993
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2994
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2995
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2996
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2997
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2998
+ msFilter?: import("csstype").Property.MsFilter | undefined;
2999
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
3000
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
3001
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
3002
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
3003
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
3004
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
3005
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
3006
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
3007
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
3008
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
3009
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
3010
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
3011
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
3012
+ msOrder?: import("csstype").Property.Order | undefined;
3013
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
3014
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
3015
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
3016
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
3017
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
3018
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
3019
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
3020
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
3021
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
3022
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
3023
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
3024
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
3025
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
3026
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
3027
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
3028
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
3029
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
3030
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
3031
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
3032
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
3033
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
3034
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
3035
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
3036
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
3037
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
3038
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
3039
+ msTransform?: import("csstype").Property.Transform | undefined;
3040
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3041
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3042
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3043
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3044
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3045
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
3046
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
3047
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
3048
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
3049
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
3050
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
3051
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
3052
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
3053
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
3054
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3055
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3056
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3057
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3058
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3059
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
3060
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3061
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3062
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
3063
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
3064
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
3065
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3066
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3067
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3068
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
3069
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
3070
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
3071
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3072
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3073
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
3074
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3075
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3076
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
3077
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
3078
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
3079
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
3080
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
3081
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
3082
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
3083
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
3084
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
3085
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3086
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
3087
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3088
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
3089
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
3090
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
3091
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
3092
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
3093
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
3094
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3095
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
3096
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
3097
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
3098
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
3099
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
3100
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
3101
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
3102
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
3103
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
3104
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3105
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3106
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
3107
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3108
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
3109
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
3110
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
3111
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3112
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
3113
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
3114
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
3115
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
3116
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
3117
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
3118
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
3119
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
3120
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3121
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3122
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
3123
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3124
+ WebkitOrder?: import("csstype").Property.Order | undefined;
3125
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3126
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3127
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3128
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
3129
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3130
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
3131
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
3132
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
3133
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3134
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
3135
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
3136
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3137
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3138
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
3139
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3140
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
3141
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
3142
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
3143
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
3144
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
3145
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3146
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
3147
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
3148
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
3149
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
3150
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
3151
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3152
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
3153
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3154
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3155
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3156
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3157
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
3158
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
3159
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
3160
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3161
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
3162
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3163
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
3164
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
3165
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
3166
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
3167
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
3168
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
3169
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
3170
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
3171
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3172
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3173
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
3174
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
3175
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3176
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3177
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
3178
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
3179
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
3180
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
3181
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
3182
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
3183
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
3184
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3185
+ azimuth?: import("csstype").Property.Azimuth | undefined;
3186
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
3187
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
3188
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
3189
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3190
+ boxLines?: import("csstype").Property.BoxLines | undefined;
3191
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3192
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
3193
+ boxPack?: import("csstype").Property.BoxPack | undefined;
3194
+ clip?: import("csstype").Property.Clip | undefined;
3195
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
3196
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
3197
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
3198
+ imeMode?: import("csstype").Property.ImeMode | undefined;
3199
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
3200
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3201
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3202
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
3203
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3204
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3205
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
3206
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
3207
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
3208
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
3209
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
3210
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
3211
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3212
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3213
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3214
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3215
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
3216
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3217
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3218
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
3219
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
3220
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
3221
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
3222
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
3223
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3224
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
3225
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3226
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3227
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3228
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3229
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3230
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3231
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3232
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3233
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3234
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3235
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3236
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3237
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
3238
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
3239
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
3240
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
3241
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
3242
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
3243
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
3244
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
3245
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3246
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
3247
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3248
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
3249
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3250
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3251
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3252
+ MozTransform?: import("csstype").Property.Transform | undefined;
3253
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3254
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
3255
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3256
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3257
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3258
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3259
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3260
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
3261
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
3262
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3263
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3264
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3265
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3266
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3267
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3268
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
3269
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3270
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3271
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3272
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
3273
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
3274
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3275
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3276
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
3277
+ OTransform?: import("csstype").Property.Transform | undefined;
3278
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3279
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3280
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3281
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3282
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3283
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3284
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3285
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3286
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3287
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3288
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
3289
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3290
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3291
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
3292
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
3293
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
3294
+ clipRule?: import("csstype").Property.ClipRule | undefined;
3295
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
3296
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
3297
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
3298
+ fill?: import("csstype").Property.Fill | undefined;
3299
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
3300
+ fillRule?: import("csstype").Property.FillRule | undefined;
3301
+ floodColor?: import("csstype").Property.FloodColor | undefined;
3302
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
3303
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
3304
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
3305
+ marker?: import("csstype").Property.Marker | undefined;
3306
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
3307
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
3308
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
3309
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
3310
+ stopColor?: import("csstype").Property.StopColor | undefined;
3311
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
3312
+ stroke?: import("csstype").Property.Stroke | undefined;
3313
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
3314
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
3315
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
3316
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
3317
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
3318
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
3319
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
3320
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
3321
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
3322
+ };
3323
+ };
3324
+ readonly buttonGroup: CSSProperties;
3325
+ readonly codeBlock: CSSProperties;
3326
+ readonly colors: {
3327
+ readonly background: "rgba(0, 0, 0, 0.9)";
3328
+ readonly border: "#666";
3329
+ readonly error: "#f66";
3330
+ readonly errorBg: "rgba(255, 102, 102, 0.1)";
3331
+ readonly primary: "#0084ff";
3332
+ readonly secondary: "#666";
3333
+ readonly success: "#0c6";
3334
+ readonly text: "#fff";
3335
+ };
3336
+ readonly errorMessage: CSSProperties;
3337
+ readonly infoText: CSSProperties;
3338
+ readonly panel: CSSProperties;
3339
+ readonly statusMessage: CSSProperties;
3340
+ readonly toggleButton: () => CSSProperties;
3341
+ };
3342
+ //# sourceMappingURL=debugStyles.d.ts.map