taro-uno-ui 0.9.0-beta → 1.0.0

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