polpo 0.1.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 (332) hide show
  1. package/.eslintrc.cjs +9 -0
  2. package/.storybook/decorators.tsx +61 -0
  3. package/.storybook/main.ts +47 -0
  4. package/.storybook/manager-head.html +2 -0
  5. package/.storybook/manager.ts +7 -0
  6. package/.storybook/preview-head.html +2 -0
  7. package/.storybook/preview.ts +38 -0
  8. package/.storybook/theme.ts +47 -0
  9. package/.turbo/daemon/f5c5c8fb195b01d0-turbo.log.2024-05-26 +0 -0
  10. package/.turbo/turbo-build$colon$watch.log +96 -0
  11. package/.turbo/turbo-build-storybook.log +0 -0
  12. package/.turbo/turbo-build.log +77 -0
  13. package/.turbo/turbo-lint$colon$fix.log +2 -0
  14. package/.turbo/turbo-lint.log +4 -0
  15. package/README.md +68 -0
  16. package/dist/chunk-M4KRSYE7.js +3 -0
  17. package/dist/chunk-M4KRSYE7.js.map +1 -0
  18. package/dist/chunk-U5XSMSKZ.js +3 -0
  19. package/dist/chunk-U5XSMSKZ.js.map +1 -0
  20. package/dist/get-modal-position-DPftPoU2.d.cts +28 -0
  21. package/dist/get-modal-position-DPftPoU2.d.ts +28 -0
  22. package/dist/helpers.cjs +3 -0
  23. package/dist/helpers.cjs.map +1 -0
  24. package/dist/helpers.d.cts +15 -0
  25. package/dist/helpers.d.ts +15 -0
  26. package/dist/helpers.js +3 -0
  27. package/dist/helpers.js.map +1 -0
  28. package/dist/hooks.cjs +3 -0
  29. package/dist/hooks.cjs.map +1 -0
  30. package/dist/hooks.d.cts +121 -0
  31. package/dist/hooks.d.ts +121 -0
  32. package/dist/hooks.js +3 -0
  33. package/dist/hooks.js.map +1 -0
  34. package/dist/ui.cjs +1987 -0
  35. package/dist/ui.cjs.map +1 -0
  36. package/dist/ui.d.cts +3932 -0
  37. package/dist/ui.d.ts +3932 -0
  38. package/dist/ui.js +1987 -0
  39. package/dist/ui.js.map +1 -0
  40. package/package.json +98 -0
  41. package/src/components/accordion/accordion-item.stories.tsx +128 -0
  42. package/src/components/accordion/accordion-item.tsx +119 -0
  43. package/src/components/accordion/accordion.stories.tsx +74 -0
  44. package/src/components/accordion/accordion.style.ts +42 -0
  45. package/src/components/accordion/accordion.tsx +56 -0
  46. package/src/components/accordion/index.ts +2 -0
  47. package/src/components/buttons/button/button.stories.tsx +103 -0
  48. package/src/components/buttons/button/button.style.ts +147 -0
  49. package/src/components/buttons/button/button.tsx +119 -0
  50. package/src/components/buttons/button/index.ts +1 -0
  51. package/src/components/buttons/index.ts +1 -0
  52. package/src/components/cards/flip-card/flip-card.stories.tsx +61 -0
  53. package/src/components/cards/flip-card/flip-card.style.ts +45 -0
  54. package/src/components/cards/flip-card/flip-card.tsx +55 -0
  55. package/src/components/cards/flip-card/index.ts +1 -0
  56. package/src/components/cards/hover-card/hover-card.stories.tsx +45 -0
  57. package/src/components/cards/hover-card/hover-card.style.ts +13 -0
  58. package/src/components/cards/hover-card/hover-card.tsx +71 -0
  59. package/src/components/cards/hover-card/index.ts +1 -0
  60. package/src/components/cards/index.ts +3 -0
  61. package/src/components/cards/slide-card/index.ts +1 -0
  62. package/src/components/cards/slide-card/slide-card.stories.tsx +47 -0
  63. package/src/components/cards/slide-card/slide-card.tsx +42 -0
  64. package/src/components/form/checkbox/checkbox.stories.tsx +34 -0
  65. package/src/components/form/checkbox/checkbox.style.ts +75 -0
  66. package/src/components/form/checkbox/checkbox.tsx +76 -0
  67. package/src/components/form/checkbox/index.ts +1 -0
  68. package/src/components/form/controller/controller.tsx +42 -0
  69. package/src/components/form/controller/index.ts +1 -0
  70. package/src/components/form/date-picker/date-picker.stories.tsx +38 -0
  71. package/src/components/form/date-picker/date-picker.tsx +67 -0
  72. package/src/components/form/date-picker/index.ts +1 -0
  73. package/src/components/form/field/field.stories.tsx +49 -0
  74. package/src/components/form/field/field.style.ts +79 -0
  75. package/src/components/form/field/field.tsx +83 -0
  76. package/src/components/form/field/field.types.ts +28 -0
  77. package/src/components/form/field/index.ts +2 -0
  78. package/src/components/form/form.stories.types.tsx +50 -0
  79. package/src/components/form/form.types.ts +37 -0
  80. package/src/components/form/index.ts +14 -0
  81. package/src/components/form/input/index.ts +1 -0
  82. package/src/components/form/input/input.stories.tsx +41 -0
  83. package/src/components/form/input/input.tsx +73 -0
  84. package/src/components/form/input-color/index.ts +1 -0
  85. package/src/components/form/input-color/input-color.stories.tsx +46 -0
  86. package/src/components/form/input-color/input-color.style.ts +93 -0
  87. package/src/components/form/input-color/input-color.tsx +159 -0
  88. package/src/components/form/input-file/index.ts +1 -0
  89. package/src/components/form/input-file/input-file.stories.tsx +40 -0
  90. package/src/components/form/input-file/input-file.style.ts +143 -0
  91. package/src/components/form/input-file/input-file.tsx +214 -0
  92. package/src/components/form/input-password/index.ts +1 -0
  93. package/src/components/form/input-password/input-password.stories.tsx +37 -0
  94. package/src/components/form/input-password/input-password.tsx +83 -0
  95. package/src/components/form/radio/index.ts +1 -0
  96. package/src/components/form/radio/radio.stories.tsx +43 -0
  97. package/src/components/form/radio/radio.style.ts +58 -0
  98. package/src/components/form/radio/radio.tsx +76 -0
  99. package/src/components/form/select/index.ts +1 -0
  100. package/src/components/form/select/options.tsx +140 -0
  101. package/src/components/form/select/select-option.tsx +84 -0
  102. package/src/components/form/select/select.stories.tsx +89 -0
  103. package/src/components/form/select/select.style.ts +164 -0
  104. package/src/components/form/select/select.tsx +327 -0
  105. package/src/components/form/select/select.types.ts +93 -0
  106. package/src/components/form/slider/index.ts +1 -0
  107. package/src/components/form/slider/slider.stories.tsx +40 -0
  108. package/src/components/form/slider/slider.style.ts +90 -0
  109. package/src/components/form/slider/slider.tsx +108 -0
  110. package/src/components/form/switch/index.ts +1 -0
  111. package/src/components/form/switch/switch.stories.tsx +38 -0
  112. package/src/components/form/switch/switch.style.ts +120 -0
  113. package/src/components/form/switch/switch.tsx +111 -0
  114. package/src/components/form/textarea/index.ts +1 -0
  115. package/src/components/form/textarea/textarea.stories.tsx +43 -0
  116. package/src/components/form/textarea/textarea.style.ts +7 -0
  117. package/src/components/form/textarea/textarea.tsx +76 -0
  118. package/src/components/icon/icon.stories.tsx +63 -0
  119. package/src/components/icon/icon.tsx +64 -0
  120. package/src/components/icon/icons/index.ts +18 -0
  121. package/src/components/icon/icons/object.tsx +482 -0
  122. package/src/components/icon/icons/social.tsx +72 -0
  123. package/src/components/icon/icons/symbol.tsx +776 -0
  124. package/src/components/icon/index.ts +5 -0
  125. package/src/components/image/image.stories.tsx +25 -0
  126. package/src/components/image/image.tsx +7 -0
  127. package/src/components/image/index.ts +1 -0
  128. package/src/components/index.ts +16 -0
  129. package/src/components/infinity-scroll/index.ts +1 -0
  130. package/src/components/infinity-scroll/infinity-scroll.stories.tsx +75 -0
  131. package/src/components/infinity-scroll/infinity-scroll.style.ts +30 -0
  132. package/src/components/infinity-scroll/infinity-scroll.tsx +56 -0
  133. package/src/components/line/index.ts +1 -0
  134. package/src/components/line/line.stories.tsx +67 -0
  135. package/src/components/line/line.style.ts +57 -0
  136. package/src/components/line/line.tsx +76 -0
  137. package/src/components/loaders/index.ts +1 -0
  138. package/src/components/loaders/simple-loader/index.ts +1 -0
  139. package/src/components/loaders/simple-loader/simple-loader.stories.tsx +21 -0
  140. package/src/components/loaders/simple-loader/simple-loader.style.ts +13 -0
  141. package/src/components/loaders/simple-loader/simple-loader.tsx +15 -0
  142. package/src/components/modals/action-modal/action-modal.stories.tsx +134 -0
  143. package/src/components/modals/action-modal/action-modal.style.ts +129 -0
  144. package/src/components/modals/action-modal/action-modal.tsx +150 -0
  145. package/src/components/modals/action-modal/index.ts +1 -0
  146. package/src/components/modals/aside-modal/aside-modal.stories.tsx +82 -0
  147. package/src/components/modals/aside-modal/aside-modal.style.ts +108 -0
  148. package/src/components/modals/aside-modal/aside-modal.tsx +66 -0
  149. package/src/components/modals/aside-modal/index.ts +1 -0
  150. package/src/components/modals/confirmation-modal/confirmation-modal.stories.tsx +50 -0
  151. package/src/components/modals/confirmation-modal/confirmation-modal.style.ts +17 -0
  152. package/src/components/modals/confirmation-modal/confirmation-modal.tsx +43 -0
  153. package/src/components/modals/confirmation-modal/index.ts +1 -0
  154. package/src/components/modals/index.ts +4 -0
  155. package/src/components/modals/modal/index.ts +1 -0
  156. package/src/components/modals/modal/modal.style.ts +10 -0
  157. package/src/components/modals/modal/modal.tsx +132 -0
  158. package/src/components/ripple/index.ts +1 -0
  159. package/src/components/ripple/ripple.stories.tsx +38 -0
  160. package/src/components/ripple/ripple.style.ts +33 -0
  161. package/src/components/ripple/ripple.tsx +63 -0
  162. package/src/components/smart-table/index.ts +1 -0
  163. package/src/components/smart-table/smart-table.column.tsx +63 -0
  164. package/src/components/smart-table/smart-table.helpers.tsx +59 -0
  165. package/src/components/smart-table/smart-table.hooks.ts +27 -0
  166. package/src/components/smart-table/smart-table.row.tsx +29 -0
  167. package/src/components/smart-table/smart-table.stories.tsx +301 -0
  168. package/src/components/smart-table/smart-table.style.ts +102 -0
  169. package/src/components/smart-table/smart-table.tsx +112 -0
  170. package/src/components/smart-table/smart-table.types.ts +41 -0
  171. package/src/components/tabs/index.ts +1 -0
  172. package/src/components/tabs/tabs-container.stories.tsx +159 -0
  173. package/src/components/tabs/tabs-list.tsx +131 -0
  174. package/src/components/tabs/tabs.stories.tsx +68 -0
  175. package/src/components/tabs/tabs.style.ts +132 -0
  176. package/src/components/tabs/tabs.tsx +117 -0
  177. package/src/components/tag/index.ts +1 -0
  178. package/src/components/tag/tag.stories.tsx +49 -0
  179. package/src/components/tag/tag.style.ts +24 -0
  180. package/src/components/tag/tag.tsx +44 -0
  181. package/src/components/tooltips/click-to-copy/click-to-copy.stories.tsx +39 -0
  182. package/src/components/tooltips/click-to-copy/click-to-copy.tsx +41 -0
  183. package/src/components/tooltips/click-to-copy/index.ts +1 -0
  184. package/src/components/tooltips/index.ts +2 -0
  185. package/src/components/tooltips/tooltip/index.ts +1 -0
  186. package/src/components/tooltips/tooltip/tooltip.stories.tsx +35 -0
  187. package/src/components/tooltips/tooltip/tooltip.style.ts +62 -0
  188. package/src/components/tooltips/tooltip/tooltip.tsx +45 -0
  189. package/src/components/typography/index.ts +2 -0
  190. package/src/components/typography/typography.constants.ts +43 -0
  191. package/src/components/typography/typography.stories.tsx +106 -0
  192. package/src/components/typography/typography.style.ts +76 -0
  193. package/src/components/typography/typography.tsx +79 -0
  194. package/src/contexts/fetch-context/fetch-context.tsx +114 -0
  195. package/src/contexts/fetch-context/index.ts +1 -0
  196. package/src/contexts/form-context/form-context.tsx +43 -0
  197. package/src/contexts/form-context/index.ts +1 -0
  198. package/src/contexts/index.ts +3 -0
  199. package/src/contexts/theme-context/index.ts +3 -0
  200. package/src/contexts/theme-context/theme-context.tsx +158 -0
  201. package/src/contexts/theme-context/theme.animations.ts +180 -0
  202. package/src/contexts/theme-context/theme.defaults.ts +205 -0
  203. package/src/contexts/theme-context/theme.style.ts +78 -0
  204. package/src/contexts/theme-context/themes.ts +96 -0
  205. package/src/core/http-client.d.ts +11 -0
  206. package/src/core/http-client.d.ts.map +1 -0
  207. package/src/core/http-client.ts +47 -0
  208. package/src/core/index.d.ts +2 -0
  209. package/src/core/index.d.ts.map +1 -0
  210. package/src/core/index.ts +1 -0
  211. package/src/core/variants/color.ts +36 -0
  212. package/src/core/variants/index.ts +3 -0
  213. package/src/core/variants/radius.ts +56 -0
  214. package/src/core/variants/size.ts +44 -0
  215. package/src/helpers/format-bytes.ts +11 -0
  216. package/src/helpers/format-dates.ts +11 -0
  217. package/src/helpers/get-modal-position.ts +66 -0
  218. package/src/helpers/index.ts +4 -0
  219. package/src/helpers/text/index.ts +1 -0
  220. package/src/helpers/text/to-capitalize.ts +17 -0
  221. package/src/hooks/index.ts +23 -0
  222. package/src/hooks/use-async.ts +88 -0
  223. package/src/hooks/use-classnames.ts +13 -0
  224. package/src/hooks/use-constant.ts +3 -0
  225. package/src/hooks/use-debounce.ts +15 -0
  226. package/src/hooks/use-dimensions.ts +22 -0
  227. package/src/hooks/use-event-listener.ts +71 -0
  228. package/src/hooks/use-file-reader.ts +69 -0
  229. package/src/hooks/use-hover.ts +17 -0
  230. package/src/hooks/use-in-view.ts +20 -0
  231. package/src/hooks/use-input-handlers.ts +49 -0
  232. package/src/hooks/use-media-query.ts +25 -0
  233. package/src/hooks/use-modal-in-container.ts +94 -0
  234. package/src/hooks/use-mouse-position.ts +16 -0
  235. package/src/hooks/use-observer.ts +18 -0
  236. package/src/hooks/use-on-click-outside-ref.ts +17 -0
  237. package/src/hooks/use-online-status.ts +12 -0
  238. package/src/hooks/use-render-count.ts +11 -0
  239. package/src/hooks/use-safe-dispatch.ts +22 -0
  240. package/src/hooks/use-scroll.ts +31 -0
  241. package/src/hooks/use-state-history.ts +22 -0
  242. package/src/hooks/use-toggle-values.ts +14 -0
  243. package/src/hooks/use-toggle.ts +11 -0
  244. package/src/hooks/use-viewport.ts +38 -0
  245. package/src/index.ts +5 -0
  246. package/src/layouts/flex/flex.tsx +75 -0
  247. package/src/layouts/flex/index.ts +1 -0
  248. package/src/layouts/grid/grid.tsx +86 -0
  249. package/src/layouts/grid/index.ts +1 -0
  250. package/src/layouts/index.ts +3 -0
  251. package/src/layouts/section-layout/index.ts +1 -0
  252. package/src/layouts/section-layout/section-layout.stories.tsx +55 -0
  253. package/src/layouts/section-layout/section-layout.style.ts +21 -0
  254. package/src/layouts/section-layout/section-layout.tsx +46 -0
  255. package/src/stories/GettingStarted.mdx +66 -0
  256. package/src/types/generics.ts +68 -0
  257. package/src/types/index.ts +1 -0
  258. package/svg/Name=airplane, Category=object.svg +3 -0
  259. package/svg/Name=arrow-circle, Category=symbol.svg +3 -0
  260. package/svg/Name=arrow-down, Category=symbol.svg +3 -0
  261. package/svg/Name=arrow-left, Category=symbol.svg +3 -0
  262. package/svg/Name=arrow-right, Category=symbol.svg +3 -0
  263. package/svg/Name=arrow-up, Category=symbol.svg +3 -0
  264. package/svg/Name=bell, Category=object.svg +3 -0
  265. package/svg/Name=bicycle, Category=object.svg +3 -0
  266. package/svg/Name=book-open, Category=object.svg +3 -0
  267. package/svg/Name=book-solid, Category=object.svg +6 -0
  268. package/svg/Name=box-shadow, Category=symbol.svg +5 -0
  269. package/svg/Name=calendar, Category=object.svg +3 -0
  270. package/svg/Name=camera, Category=object.svg +3 -0
  271. package/svg/Name=caret-down, Category=symbol.svg +3 -0
  272. package/svg/Name=caret-left, Category=symbol.svg +3 -0
  273. package/svg/Name=caret-right, Category=symbol.svg +3 -0
  274. package/svg/Name=caret-up, Category=symbol.svg +3 -0
  275. package/svg/Name=checkmark, Category=symbol.svg +3 -0
  276. package/svg/Name=clean-computer, Category=object.svg +10 -0
  277. package/svg/Name=codepen, Category=social.svg +3 -0
  278. package/svg/Name=creative, Category=symbol.svg +5 -0
  279. package/svg/Name=cross, Category=symbol.svg +4 -0
  280. package/svg/Name=crossed-flags, Category=object.svg +4 -0
  281. package/svg/Name=cv, Category=symbol.svg +5 -0
  282. package/svg/Name=design-ui, Category=symbol.svg +9 -0
  283. package/svg/Name=document, Category=object.svg +3 -0
  284. package/svg/Name=door-closed, Category=object.svg +3 -0
  285. package/svg/Name=door-open, Category=object.svg +3 -0
  286. package/svg/Name=double-caret-down, Category=symbol.svg +4 -0
  287. package/svg/Name=double-caret-left, Category=symbol.svg +4 -0
  288. package/svg/Name=double-caret-righ, Category=symbol.svg +4 -0
  289. package/svg/Name=double-caret-up, Category=symbol.svg +4 -0
  290. package/svg/Name=download, Category=symbol.svg +5 -0
  291. package/svg/Name=dropper, Category=object.svg +5 -0
  292. package/svg/Name=envelope, Category=object.svg +3 -0
  293. package/svg/Name=exclamation-close, Category=symbol.svg +4 -0
  294. package/svg/Name=exclamation-open, Category=symbol.svg +4 -0
  295. package/svg/Name=external-link, Category=symbol.svg +3 -0
  296. package/svg/Name=eye, Category=object.svg +4 -0
  297. package/svg/Name=eye-hidden, Category=object.svg +7 -0
  298. package/svg/Name=facebook, Category=social.svg +3 -0
  299. package/svg/Name=form, Category=symbol.svg +8 -0
  300. package/svg/Name=game-control, Category=object.svg +3 -0
  301. package/svg/Name=gear, Category=object.svg +3 -0
  302. package/svg/Name=github, Category=social.svg +3 -0
  303. package/svg/Name=house, Category=object.svg +3 -0
  304. package/svg/Name=hyphen, Category=symbol.svg +3 -0
  305. package/svg/Name=info, Category=symbol.svg +3 -0
  306. package/svg/Name=instagram, Category=social.svg +3 -0
  307. package/svg/Name=link, Category=symbol.svg +5 -0
  308. package/svg/Name=linkedin, Category=social.svg +3 -0
  309. package/svg/Name=magnifying-glass, Category=object.svg +3 -0
  310. package/svg/Name=message, Category=symbol.svg +4 -0
  311. package/svg/Name=moon, Category=object.svg +5 -0
  312. package/svg/Name=order-list, Category=symbol.svg +7 -0
  313. package/svg/Name=pencil, Category=object.svg +3 -0
  314. package/svg/Name=pin-location, Category=symbol.svg +3 -0
  315. package/svg/Name=question-mark-close, Category=symbol.svg +3 -0
  316. package/svg/Name=question-mark-open, Category=symbol.svg +3 -0
  317. package/svg/Name=share, Category=symbol.svg +5 -0
  318. package/svg/Name=spinner, Category=symbol.svg +9 -0
  319. package/svg/Name=star, Category=object.svg +3 -0
  320. package/svg/Name=star-empty, Category=object.svg +3 -0
  321. package/svg/Name=sun, Category=object.svg +11 -0
  322. package/svg/Name=text-shadow, Category=symbol.svg +4 -0
  323. package/svg/Name=thinking, Category=symbol.svg +3 -0
  324. package/svg/Name=trash-can, Category=object.svg +4 -0
  325. package/svg/Name=upload, Category=symbol.svg +5 -0
  326. package/svg/Name=user, Category=symbol.svg +4 -0
  327. package/svg/Name=warning, Category=symbol.svg +5 -0
  328. package/svg/Name=whatsapp, Category=social.svg +3 -0
  329. package/svgconfig.json +4 -0
  330. package/tsconfig.json +14 -0
  331. package/tsup.config.cjs +21 -0
  332. package/vite.config.ts +13 -0
package/dist/ui.d.ts ADDED
@@ -0,0 +1,3932 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as React$1 from 'react';
3
+ import React__default, { HTMLAttributes, ButtonHTMLAttributes, CSSProperties, DetailedHTMLProps, ImgHTMLAttributes, RefObject, ForwardedRef } from 'react';
4
+ import { UseControllerProps, FieldValues, SubmitHandler, DefaultValues, Mode } from 'react-hook-form';
5
+ import { P as POSITION } from './get-modal-position-DPftPoU2.js';
6
+ import * as csstype from 'csstype';
7
+ import { AnyObjectSchema } from 'yup';
8
+ import { AxiosInstance } from 'axios';
9
+ import * as styled_components_dist_types from 'styled-components/dist/types';
10
+ import * as styled_components from 'styled-components';
11
+
12
+ declare const useAccordionItem: (id: string) => [boolean, () => void];
13
+ type AccordionProps = {
14
+ children: React__default.ReactNode;
15
+ className?: string;
16
+ style?: React__default.CSSProperties;
17
+ noSeparators?: boolean;
18
+ };
19
+ declare const Accordion: ({ children, className, noSeparators, style }: AccordionProps) => react_jsx_runtime.JSX.Element;
20
+
21
+ type ObjectIconsT = Record<'airplane' | 'bell' | 'bicycle' | 'book-open' | 'book-solid' | 'calendar' | 'camera' | 'clean-computer' | 'crossed-flags' | 'document' | 'door-closed' | 'door-open' | 'dropper' | 'envelope' | 'eye' | 'eye-hidden' | 'game-control' | 'gear' | 'house' | 'magnifying-glass' | 'moon' | 'pencil' | 'star' | 'star-empty' | 'sun' | 'trash-can', IconT>;
22
+
23
+ type SocialIconsT = Record<'codepen' | 'facebook' | 'github' | 'instagram' | 'linkedin' | 'whatsapp', IconT>;
24
+
25
+ type SymbolIconsT = Record<'arrow-circle' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'box-shadow' | 'caret-down' | 'caret-left' | 'caret-right' | 'caret-up' | 'checkmark' | 'creative' | 'cross' | 'cv' | 'design-ui' | 'double-caret-down' | 'double-caret-left' | 'double-caret-righ' | 'double-caret-up' | 'download' | 'exclamation-close' | 'exclamation-open' | 'external-link' | 'form' | 'hyphen' | 'info' | 'link' | 'message' | 'order-list' | 'pin-location' | 'question-mark-close' | 'question-mark-open' | 'share' | 'spinner' | 'text-shadow' | 'thinking' | 'upload' | 'user' | 'warning', IconT>;
26
+
27
+ type IconT = {
28
+ viewBox: string;
29
+ svg: (fill: string) => React__default.ReactNode;
30
+ };
31
+ type IconCollectionT = ObjectIconsT & SocialIconsT & SymbolIconsT;
32
+
33
+ type IconNameT = keyof IconCollectionT;
34
+ declare const Icon: React$1.ForwardRefExoticComponent<HTMLAttributes<SVGSVGElement> & {
35
+ size?: number | `${number}em` | `${number}px`;
36
+ fill?: string;
37
+ onClick?: (e: React.MouseEvent<SVGSVGElement>) => void;
38
+ name: IconNameT;
39
+ inCircle?: boolean;
40
+ scale?: 1 | 2 | 3 | 4 | 5 | "1" | "2" | "3" | "4" | "5";
41
+ } & React$1.RefAttributes<unknown>>;
42
+
43
+ declare const IconNames: Array<IconNameT>;
44
+
45
+ type NodeFunction = (isOpen: boolean) => React__default.ReactNode;
46
+ type ContentType = React__default.ReactNode | NodeFunction;
47
+ type AccordionItemCommonProps = {
48
+ icon?: IconNameT;
49
+ children: React__default.ReactNode;
50
+ startContent?: ContentType;
51
+ endContent?: ContentType;
52
+ className?: string;
53
+ style?: React__default.CSSProperties;
54
+ classNames?: {
55
+ header?: string;
56
+ headerContent?: string;
57
+ title?: string;
58
+ subtitle?: string;
59
+ toggleIcon?: string;
60
+ body?: string;
61
+ };
62
+ };
63
+ type AccordionItemTitleProps = AccordionItemCommonProps & {
64
+ title?: ContentType;
65
+ subtitle?: ContentType;
66
+ content?: never;
67
+ };
68
+ type AccordionItemContentProps = AccordionItemCommonProps & {
69
+ title?: never;
70
+ subtitle?: never;
71
+ content?: ContentType;
72
+ };
73
+ type AccordionItemProps = AccordionItemTitleProps | AccordionItemContentProps;
74
+ declare const AccordionItem: React__default.FC<AccordionItemProps>;
75
+
76
+ declare enum RadiusVariants {
77
+ None = "none",
78
+ Small = "small",
79
+ Medium = "medium",
80
+ Large = "large",
81
+ Full = "full"
82
+ }
83
+
84
+ declare enum SizeVariants {
85
+ Small = "small",
86
+ Medium = "medium",
87
+ Large = "large"
88
+ }
89
+
90
+ declare enum ButtonVariant {
91
+ SOLID = "solid",
92
+ GHOST = "ghost",
93
+ FLAT = "flat"
94
+ }
95
+ declare enum ButtonColor {
96
+ PRIMARY = "primary",
97
+ SECONDARY = "secondary",
98
+ TERTIARY = "tertiary",
99
+ INFO = "info",
100
+ WARNING = "warning",
101
+ ALERT = "alert",
102
+ ACTIVE = "active"
103
+ }
104
+ type ButtonProps = {
105
+ children?: React__default.ReactNode;
106
+ disabled?: boolean;
107
+ isLoading?: boolean;
108
+ size?: `${SizeVariants}`;
109
+ radius?: `${RadiusVariants}`;
110
+ variant?: `${ButtonVariant}`;
111
+ leftIcon?: IconNameT;
112
+ rightIcon?: IconNameT;
113
+ onClick?: ButtonHTMLAttributes<HTMLButtonElement>['onClick'];
114
+ width?: 'fit' | 'full';
115
+ className?: string;
116
+ style?: React__default.CSSProperties;
117
+ type?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
118
+ noShadow?: boolean;
119
+ color?: `${ButtonColor}`;
120
+ };
121
+ declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
122
+
123
+ type SlideCardProps = {
124
+ children: React__default.ReactNode;
125
+ isOpen: boolean;
126
+ className?: string;
127
+ style?: React__default.CSSProperties;
128
+ };
129
+ declare const SlideCard: ({ children, isOpen, className, style }: SlideCardProps) => react_jsx_runtime.JSX.Element;
130
+
131
+ type FlipCardProps = {
132
+ cardZIndex?: CSSProperties['zIndex'];
133
+ isFlipped?: boolean;
134
+ flipSpeed?: number;
135
+ flipDirection?: 'horizontal' | 'vertical';
136
+ children: [React.ReactNode, React.ReactNode];
137
+ };
138
+ declare const FlipCard: ({ cardZIndex, flipDirection, flipSpeed, isFlipped, children, }: FlipCardProps) => React.ReactElement;
139
+
140
+ type HoverCardProps = {
141
+ children: React.ReactNode;
142
+ threshold?: number;
143
+ translationZ?: number;
144
+ width?: 'fit-content' | '100%';
145
+ className?: string;
146
+ };
147
+ declare const HoverCard: ({ children, threshold, translationZ, width, className, }: HoverCardProps) => react_jsx_runtime.JSX.Element;
148
+
149
+ type Props = {
150
+ [key: string]: unknown;
151
+ };
152
+ type SharedProps = {
153
+ name: string;
154
+ className?: string;
155
+ style?: React__default.CSSProperties;
156
+ autoComplete?: string;
157
+ autoFocus?: boolean;
158
+ placeholder?: string;
159
+ disabled?: boolean;
160
+ readOnly?: boolean;
161
+ onBlur?: (e: React__default.FocusEvent<unknown>) => void;
162
+ onFocus?: (e: React__default.FocusEvent<unknown>) => void;
163
+ };
164
+ type UnControlledProps<V> = {
165
+ value: V;
166
+ setValue: (value: V) => void;
167
+ invalid?: boolean;
168
+ isTouched?: boolean;
169
+ isDirty?: boolean;
170
+ error?: string;
171
+ };
172
+ type ControlledProps<V> = {
173
+ defaultValue?: V;
174
+ };
175
+ type UnControlledComponentProps<T extends Props, V> = T & SharedProps & UnControlledProps<V>;
176
+ type ControlledComponentProps<T extends Props, V> = T & SharedProps & ControlledProps<V>;
177
+ type ControllerGeneratorProps<T extends Props, V> = ControlledComponentProps<T, V> & Partial<Pick<UseControllerProps, 'rules'>>;
178
+
179
+ type CheckboxProps = {
180
+ label?: string;
181
+ placeholder?: never;
182
+ icon?: IconNameT;
183
+ };
184
+ declare const Checkbox: {
185
+ ({ name, value, setValue, onBlur, onFocus, className, style, autoFocus, readOnly, disabled, autoComplete, icon, label, }: UnControlledComponentProps<CheckboxProps, boolean>): react_jsx_runtime.JSX.Element;
186
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<CheckboxProps, boolean>) => react_jsx_runtime.JSX.Element;
187
+ };
188
+
189
+ type ControllerProps<T extends Props, V> = {
190
+ inputProps: ControlledComponentProps<T, V>;
191
+ Component: React__default.FC<UnControlledComponentProps<T, V>>;
192
+ rules?: UseControllerProps['rules'];
193
+ defaultValue: V;
194
+ };
195
+ declare const Controller: <T extends Props, V>({ Component, inputProps, defaultValue: fieldDefaultValue, rules, }: ControllerProps<T, V>) => react_jsx_runtime.JSX.Element;
196
+
197
+ declare enum FieldVariant {
198
+ FULL_BORDER = "full-border",
199
+ CONTENT_BORDER = "content-border",
200
+ CONTENT_LINE = "line"
201
+ }
202
+ type FieldSharedProps = {
203
+ rightIcon?: IconNameT;
204
+ leftIcon?: IconNameT;
205
+ errorIcon?: IconNameT;
206
+ onClickLeftIcon?: () => void;
207
+ onClickRightIcon?: () => void;
208
+ label?: string;
209
+ variant?: `${FieldVariant}`;
210
+ };
211
+ type FieldProps = FieldSharedProps & {
212
+ children: React__default.ReactNode;
213
+ id: string;
214
+ error?: string;
215
+ isFocus?: boolean;
216
+ };
217
+ type InputFieldProps<T> = T & FieldSharedProps;
218
+
219
+ declare const Field: React__default.ForwardRefExoticComponent<{
220
+ rightIcon?: IconNameT;
221
+ leftIcon?: IconNameT;
222
+ errorIcon?: IconNameT;
223
+ onClickLeftIcon?: () => void;
224
+ onClickRightIcon?: () => void;
225
+ label?: string;
226
+ variant?: `${FieldVariant}`;
227
+ } & {
228
+ children: React__default.ReactNode;
229
+ id: string;
230
+ error?: string;
231
+ isFocus?: boolean;
232
+ } & React__default.RefAttributes<HTMLElement>>;
233
+
234
+ type DatePickerProps = InputFieldProps<{
235
+ type?: 'date' | 'datetime-local' | 'month' | 'time' | 'week';
236
+ }>;
237
+ declare const DatePicker: {
238
+ ({ name, value, setValue, onBlur, onFocus, type, className, style, autoFocus, readOnly, disabled, placeholder, autoComplete, isDirty, isTouched, invalid, error, ...fieldProps }: UnControlledComponentProps<DatePickerProps, string>): react_jsx_runtime.JSX.Element;
239
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<DatePickerProps, string>) => react_jsx_runtime.JSX.Element;
240
+ };
241
+
242
+ type IProps = InputFieldProps<{
243
+ type?: 'email' | 'number' | 'search' | 'tel' | 'text' | 'url';
244
+ min?: number;
245
+ max?: number;
246
+ }>;
247
+ declare const Input: {
248
+ ({ name, value, setValue, onBlur, onFocus, type, className, style, autoFocus, readOnly, disabled, placeholder, autoComplete, isDirty, isTouched, invalid, error, min, max, ...fieldProps }: UnControlledComponentProps<IProps, string>): react_jsx_runtime.JSX.Element;
249
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<IProps, string>) => react_jsx_runtime.JSX.Element;
250
+ };
251
+
252
+ type InputPasswordProps = InputFieldProps<{
253
+ rightIcon?: never;
254
+ }>;
255
+ declare const InputPassword: {
256
+ ({ name, value, setValue, onBlur, onFocus, className, style, autoFocus, readOnly, disabled, placeholder, autoComplete, isDirty, isTouched, invalid, error, ...fieldProps }: UnControlledComponentProps<InputPasswordProps, string>): react_jsx_runtime.JSX.Element;
257
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<InputPasswordProps, string>) => react_jsx_runtime.JSX.Element;
258
+ };
259
+
260
+ type ColorProps = InputFieldProps<{
261
+ showValueText?: boolean;
262
+ }>;
263
+ declare const InputColor: {
264
+ ({ name, value, setValue, onBlur, onFocus, showValueText, className, style, autoFocus, readOnly, disabled, placeholder, autoComplete, isDirty, isTouched, invalid, error, ...fieldProps }: UnControlledComponentProps<ColorProps, string>): react_jsx_runtime.JSX.Element;
265
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<ColorProps, string>) => react_jsx_runtime.JSX.Element;
266
+ };
267
+
268
+ type InputFileProps = {
269
+ label?: string;
270
+ accept?: string;
271
+ multiple?: boolean;
272
+ limitSize?: number;
273
+ errorTimeout?: number;
274
+ };
275
+ type InputFileValue = {
276
+ [key: string]: File;
277
+ };
278
+ declare const InputFile: {
279
+ ({ name, value, setValue, onBlur, onFocus, className, style, autoFocus, readOnly, disabled, placeholder, autoComplete, accept, multiple, limitSize, errorTimeout, label, }: UnControlledComponentProps<InputFileProps, InputFileValue>): react_jsx_runtime.JSX.Element;
280
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<InputFileProps, InputFileValue>) => react_jsx_runtime.JSX.Element;
281
+ };
282
+
283
+ type RadioProps = {
284
+ label?: string;
285
+ radioValue: string;
286
+ placeholder?: never;
287
+ };
288
+ declare const Radio: {
289
+ ({ name, value, setValue, onBlur, onFocus, className, style, autoFocus, readOnly, disabled, autoComplete, radioValue, label, }: UnControlledComponentProps<RadioProps, string>): react_jsx_runtime.JSX.Element;
290
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<RadioProps, string>) => react_jsx_runtime.JSX.Element;
291
+ };
292
+
293
+ type SelectItem = string | number | Record<string, unknown> | unknown;
294
+ type MultiValue<T extends SelectItem> = Array<T>;
295
+ type SingleValue<T extends SelectItem> = T | null;
296
+ type SharedSelectProps<T extends SelectItem> = InputFieldProps<{
297
+ options: Array<T>;
298
+ renderOption: (item: T) => React__default.ReactNode;
299
+ isEqualComparator?: (a: T, b: T) => boolean;
300
+ searchQueryValue?: string;
301
+ searchQueryPlaceholder?: string;
302
+ onSearchQuery?: (value: string) => void;
303
+ loadMore?: () => void;
304
+ isLoading?: boolean;
305
+ hasNextPage?: boolean;
306
+ maxOptions?: number;
307
+ showClearOption?: boolean;
308
+ }>;
309
+ type MultiSelectProps<T extends SelectItem> = SharedSelectProps<T> & {
310
+ multiselect: true;
311
+ optionVariant?: `${SelectOptionVariant}`;
312
+ };
313
+ type SingleSelectProps<T extends SelectItem> = SharedSelectProps<T> & {
314
+ multiselect?: false;
315
+ optionVariant?: never;
316
+ };
317
+ type UnControlledSelectProps<T extends SelectItem> = UnControlledComponentProps<MultiSelectProps<T>, MultiValue<T>> | UnControlledComponentProps<SingleSelectProps<T>, SingleValue<T>>;
318
+ type ControllerGeneratorSelectProps<T extends SelectItem> = ControllerGeneratorProps<MultiSelectProps<T>, MultiValue<T>> | ControllerGeneratorProps<SingleSelectProps<T>, SingleValue<T>>;
319
+ declare enum SelectOptionVariant {
320
+ CHECKBOX = "checkbox",
321
+ ICON = "icon",
322
+ DEFAULT = "default"
323
+ }
324
+
325
+ declare const Select: {
326
+ <T extends SelectItem>({ options, renderOption, isEqualComparator, searchQueryValue, searchQueryPlaceholder, onSearchQuery, loadMore, isLoading, hasNextPage, multiselect, maxOptions, optionVariant, name, value, setValue, onBlur, onFocus, className, style, showClearOption, autoFocus, readOnly, disabled, placeholder, autoComplete, isDirty, isTouched, invalid, error, ...fieldProps }: UnControlledSelectProps<T>): react_jsx_runtime.JSX.Element;
327
+ Controller: <T extends SelectItem>(props: ControllerGeneratorSelectProps<T>) => react_jsx_runtime.JSX.Element;
328
+ };
329
+
330
+ type SliderProps = InputFieldProps<{
331
+ min?: number;
332
+ max?: number;
333
+ step?: number;
334
+ }>;
335
+ declare const Slider: {
336
+ ({ name, value, setValue, onBlur, onFocus, min, max, step, className, style, autoFocus, readOnly, disabled, placeholder, autoComplete, isDirty, isTouched, invalid, error, ...fieldProps }: UnControlledComponentProps<SliderProps, number>): react_jsx_runtime.JSX.Element;
337
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<SliderProps, number>) => react_jsx_runtime.JSX.Element;
338
+ };
339
+
340
+ type TextareaProps = InputFieldProps<{
341
+ rows?: number;
342
+ resize?: React__default.CSSProperties['resize'];
343
+ leftIcon?: never;
344
+ rightIcon?: never;
345
+ }>;
346
+ declare const Textarea: {
347
+ ({ name, value, setValue, onBlur, onFocus, rows, resize, className, style, autoFocus, readOnly, disabled, placeholder, autoComplete, isDirty, isTouched, invalid, error, ...fieldProps }: UnControlledComponentProps<TextareaProps, string>): react_jsx_runtime.JSX.Element;
348
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<TextareaProps, string>) => react_jsx_runtime.JSX.Element;
349
+ };
350
+
351
+ type SwitchProps = {
352
+ label?: string;
353
+ width?: number;
354
+ dotSize?: number;
355
+ dotHoverSize?: number;
356
+ padding?: number;
357
+ leftIcon?: IconNameT;
358
+ rightIcon?: IconNameT;
359
+ };
360
+ declare const Switch: {
361
+ ({ name, value, setValue, onBlur, onFocus, className, style, autoFocus, readOnly, disabled, placeholder, autoComplete, label, width, dotSize, dotHoverSize, padding, leftIcon, rightIcon, }: UnControlledComponentProps<SwitchProps, boolean>): react_jsx_runtime.JSX.Element;
362
+ Controller: ({ rules, ...props }: ControllerGeneratorProps<SwitchProps, boolean>) => react_jsx_runtime.JSX.Element;
363
+ };
364
+
365
+ type ImageProps = DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> & {};
366
+ declare const Image: ({ alt, loading, ...props }: ImageProps) => react_jsx_runtime.JSX.Element;
367
+
368
+ type InfinityScrollProps<T> = {
369
+ isLoading: boolean;
370
+ hasNextPage: boolean;
371
+ loadMore: () => void;
372
+ data: Array<T>;
373
+ renderItem: (item: T, key: number) => React.ReactElement;
374
+ customLoadMoreElement?: (ref: RefObject<Element>) => React.ReactElement;
375
+ emptyMessage?: string;
376
+ children?: React.ReactNode;
377
+ };
378
+ declare const InfinityScroll: <T>({ isLoading: isLoadingProp, hasNextPage, loadMore, data, renderItem, customLoadMoreElement, emptyMessage, children, }: InfinityScrollProps<T>) => React.ReactElement;
379
+
380
+ declare enum LineOrientation {
381
+ VERTICAL = "vertical",
382
+ HORIZONTAL = "horizontal"
383
+ }
384
+ declare enum LineStyle {
385
+ SOLID = "solid",
386
+ DOTTED = "dotted",
387
+ DASHED = "dashed"
388
+ }
389
+ type LineCommonProps = {
390
+ orientation?: `${LineOrientation}`;
391
+ className?: string;
392
+ style?: React.CSSProperties;
393
+ color?: string;
394
+ };
395
+ type LineSolidProps = LineCommonProps & {
396
+ lineStyle?: `${LineStyle.SOLID}`;
397
+ spacing?: never;
398
+ dotSize?: never;
399
+ dashedSize?: never;
400
+ lineWidth?: number;
401
+ };
402
+ type LineDottedProps = LineCommonProps & {
403
+ lineStyle: `${LineStyle.DOTTED}`;
404
+ spacing?: number;
405
+ dotSize?: number;
406
+ dashedSize?: never;
407
+ lineWidth?: never;
408
+ };
409
+ type LineDashedProps = LineCommonProps & {
410
+ lineStyle: `${LineStyle.DASHED}`;
411
+ spacing?: number;
412
+ dotSize?: never;
413
+ dashedSize?: number;
414
+ lineWidth?: number;
415
+ };
416
+ type LineProps = LineSolidProps | LineDottedProps | LineDashedProps;
417
+ declare const Line: ({ orientation, className, style, color, lineWidth, lineStyle, dotSize, dashedSize, spacing, }: LineProps) => react_jsx_runtime.JSX.Element;
418
+
419
+ type SimpleLoaderProps = {
420
+ spinDuration?: number;
421
+ };
422
+ declare const SimpleLoader: ({ spinDuration }: SimpleLoaderProps) => react_jsx_runtime.JSX.Element;
423
+
424
+ type ActionModalProps = {
425
+ children: React.ReactNode;
426
+ isOpen: boolean;
427
+ onClose: () => void;
428
+ actionRequired?: boolean;
429
+ icon?: IconNameT;
430
+ noCloseButton?: boolean;
431
+ className?: string;
432
+ style?: React.CSSProperties;
433
+ lineOnTop?: boolean;
434
+ backCard?: boolean;
435
+ noPadding?: boolean;
436
+ };
437
+ declare const ActionModal: {
438
+ ({ children, isOpen, onClose, actionRequired, icon, noCloseButton, className, style, lineOnTop, backCard, noPadding, }: ActionModalProps): react_jsx_runtime.JSX.Element;
439
+ ActionButton: ({ onClick, children, isLoading: manualIsLoading, ...buttonProps }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
440
+ };
441
+ type ActionButtonProps = Omit<ButtonProps, 'onClick'> & {
442
+ onClick: (() => Promise<void>) | (() => void);
443
+ };
444
+
445
+ declare enum AsidePosition {
446
+ LEFT = "left",
447
+ RIGHT = "right",
448
+ TOP = "top",
449
+ BOTTOM = "bottom"
450
+ }
451
+ type AsideModalProps = {
452
+ children: React.ReactNode;
453
+ isOpen: boolean;
454
+ onClose: () => void;
455
+ position?: `${AsidePosition}`;
456
+ size?: number | `${number}px` | `${number}em`;
457
+ className?: string;
458
+ style?: React.CSSProperties;
459
+ zIndex?: number;
460
+ };
461
+ declare const AsideModal: ({ children, isOpen, onClose, position, size, className, zIndex, style, }: AsideModalProps) => react_jsx_runtime.JSX.Element;
462
+
463
+ type ConfirmationModalProps = ActionModalProps & {
464
+ title: string;
465
+ onAccept: (() => Promise<void>) | (() => void);
466
+ onReject?: (() => Promise<void>) | (() => void);
467
+ acceptText: string;
468
+ rejectText: string;
469
+ isLoading?: boolean;
470
+ };
471
+ declare const ConfirmationModal: ({ title, onAccept, onReject, acceptText, rejectText, children, isLoading, ...actionModalProps }: ConfirmationModalProps) => react_jsx_runtime.JSX.Element;
472
+
473
+ declare enum ModalBackdrop {
474
+ OPAQUE = "opaque",
475
+ TRANSPARENT = "transparent",
476
+ BLUR = "blur",
477
+ NONE = "none"
478
+ }
479
+ type ModalCommonProps = {
480
+ isOpen: boolean;
481
+ children: React__default.ReactNode;
482
+ id: string;
483
+ };
484
+ type ModalNoOverlayProps = ModalCommonProps & {
485
+ opacity?: never;
486
+ backdrop?: never;
487
+ onClick?: never;
488
+ zIndex?: never;
489
+ className?: never;
490
+ style?: never;
491
+ };
492
+ type ModalOverlayProps = ModalCommonProps & {
493
+ opacity?: number;
494
+ backdrop?: `${ModalBackdrop}`;
495
+ onClick?: () => void;
496
+ zIndex?: React__default.CSSProperties['zIndex'];
497
+ className?: string;
498
+ style?: React__default.CSSProperties;
499
+ };
500
+ type ModalProps = ModalOverlayProps | ModalNoOverlayProps;
501
+ declare const ModalComponent: ({ isOpen, children, id, opacity, backdrop, onClick, zIndex, className, style, }: ModalProps, ref: ForwardedRef<HTMLElement>) => React__default.ReactPortal | null;
502
+ declare const Modal: React__default.ForwardRefExoticComponent<ModalProps & React__default.RefAttributes<HTMLElement>>;
503
+
504
+ type RippleProps = {
505
+ color?: string;
506
+ duration?: number;
507
+ timingFunction?: React__default.CSSProperties['animationTimingFunction'];
508
+ times?: number;
509
+ className?: string;
510
+ style?: React__default.CSSProperties;
511
+ };
512
+ declare const Ripple: ({ color, duration, timingFunction, times, className, style, }: RippleProps) => react_jsx_runtime.JSX.Element;
513
+
514
+ type KeyValuesOf<T, V> = {
515
+ [P in keyof T]-?: T[P] extends V ? P : never;
516
+ }[keyof T];
517
+ type DeepPartial<T> = {
518
+ [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];
519
+ };
520
+
521
+ type Primitive = string | number | boolean;
522
+ type RowDataObject = {
523
+ [key: string]: Primitive | object;
524
+ };
525
+ type ColumnDataCommon<RowData extends RowDataObject> = {
526
+ header: React__default.ReactNode;
527
+ sortBy?: KeyValuesOf<RowData, Primitive>;
528
+ icon?: IconNameT;
529
+ width?: `${number}px` | `${number}em` | `${number}%`;
530
+ };
531
+ type ColumnDataField<RowData extends RowDataObject> = ColumnDataCommon<RowData> & {
532
+ field: KeyValuesOf<RowData, Primitive>;
533
+ sortBy?: never;
534
+ render?: never;
535
+ Component?: never;
536
+ };
537
+ type ColumnDataRender<RowData extends RowDataObject> = ColumnDataCommon<RowData> & {
538
+ field?: never;
539
+ render: (row: RowData, rowKey: React__default.Key) => React__default.ReactNode;
540
+ Component?: never;
541
+ };
542
+ type ColumnDataComponent<RowData extends RowDataObject> = ColumnDataCommon<RowData> & {
543
+ field?: never;
544
+ render?: never;
545
+ Component: React__default.FC<{
546
+ data: RowData;
547
+ rowKey: React__default.Key;
548
+ }>;
549
+ };
550
+ type ColumnData<RowData extends RowDataObject> = ColumnDataField<RowData> | ColumnDataRender<RowData> | ColumnDataComponent<RowData>;
551
+
552
+ type SmartTableProps<RowData extends RowDataObject> = {
553
+ columns: Array<ColumnData<RowData>>;
554
+ data: Array<RowData>;
555
+ width?: 'scroll' | 'content';
556
+ selectable?: boolean;
557
+ rowId: KeyValuesOf<RowData, React.Key>;
558
+ };
559
+ declare const SmartTable: <RowData extends RowDataObject>({ columns: initialColumns, data, width, selectable, rowId, }: SmartTableProps<RowData>) => react_jsx_runtime.JSX.Element;
560
+
561
+ declare enum TabListVariant {
562
+ SOLID = "solid",
563
+ GHOST = "ghost",
564
+ FLAT = "flat",
565
+ LINE = "line"
566
+ }
567
+ declare enum TabListColor {
568
+ PRIMARY = "primary",
569
+ SECONDARY = "secondary",
570
+ TERTIARY = "tertiary"
571
+ }
572
+ declare enum TabListDirection {
573
+ HORIZONTAL = "horizontal",
574
+ VERTICAL = "vertical"
575
+ }
576
+ type TabListProps = {
577
+ openTab: string;
578
+ variant?: `${TabListVariant}`;
579
+ children?: React__default.ReactNode;
580
+ size?: `${SizeVariants}`;
581
+ color?: `${TabListColor}`;
582
+ radius?: `${RadiusVariants}`;
583
+ direction?: `${TabListDirection}`;
584
+ className?: string;
585
+ style?: React__default.CSSProperties;
586
+ tabs?: Array<{
587
+ id: string;
588
+ label: React__default.ReactNode;
589
+ }>;
590
+ };
591
+
592
+ type TabsProps = {
593
+ children: React__default.ReactNode;
594
+ defaultOpenTab: string;
595
+ onChange?: (id: string) => void;
596
+ };
597
+ declare const Tabs: {
598
+ ({ children, defaultOpenTab, onChange }: TabsProps): react_jsx_runtime.JSX.Element;
599
+ Tab: React__default.ForwardRefExoticComponent<TabProps & React__default.RefAttributes<HTMLSpanElement>>;
600
+ TabPanel: ({ id, children }: TabPanelProps) => React__default.ReactNode;
601
+ TabList: ({ children, ...props }: Omit<TabListProps, "openTab">) => react_jsx_runtime.JSX.Element;
602
+ };
603
+ type TabProps = {
604
+ id: string;
605
+ children: React__default.ReactNode;
606
+ className?: string;
607
+ style?: React__default.CSSProperties;
608
+ onClick?: (e: React__default.MouseEvent<HTMLSpanElement>) => void;
609
+ };
610
+ type TabPanelProps = {
611
+ id: string;
612
+ children: React__default.ReactNode;
613
+ };
614
+
615
+ declare enum TagSize {
616
+ SMALL = "small",
617
+ REGULAR = "regular",
618
+ LARGE = "large"
619
+ }
620
+ type TagProps = HTMLAttributes<HTMLElement> & {
621
+ children: React.ReactNode;
622
+ isSelected?: boolean;
623
+ size?: `${SizeVariants}`;
624
+ radius?: `${RadiusVariants}`;
625
+ };
626
+ declare const Tag: ({ children, className: customClassName, isSelected, size, radius, ...props }: TagProps) => react_jsx_runtime.JSX.Element;
627
+
628
+ type TooltipProps = {
629
+ position?: `${POSITION}`;
630
+ offset?: number | `${number}`;
631
+ disabled?: boolean;
632
+ children: React__default.ReactElement;
633
+ content: React__default.ReactNode;
634
+ };
635
+ declare const Tooltip: ({ position, children, content, offset, disabled }: TooltipProps) => react_jsx_runtime.JSX.Element;
636
+
637
+ type ClickToCopyProps = {
638
+ children?: React.ReactNode;
639
+ position?: TooltipProps['position'];
640
+ offset?: TooltipProps['offset'];
641
+ value: string;
642
+ tooltipText: string;
643
+ tooltipCopiedText?: string;
644
+ copiedTextTimeout?: number;
645
+ };
646
+ declare const ClickToCopy: ({ children, value, position, offset, tooltipText, tooltipCopiedText, copiedTextTimeout, }: ClickToCopyProps) => react_jsx_runtime.JSX.Element;
647
+
648
+ declare enum TypographyVariant {
649
+ HERO = "hero",
650
+ HEADER1 = "header1",
651
+ HEADER2 = "header2",
652
+ HEADER3 = "header3",
653
+ HEADER4 = "header4",
654
+ BODY = "body",
655
+ LABEL = "label",
656
+ LABEL_FORM = "label-form",
657
+ SMALL = "small"
658
+ }
659
+ declare const TypographyVariantsElements: Record<TypographyVariant, keyof React__default.ReactHTML>;
660
+ declare const TypographyVariantsClassNames: Record<TypographyVariant, string>;
661
+ declare enum TypographyWeight {
662
+ LIGHT = "light",
663
+ REGULAR = "regular",
664
+ BOLD = "bold"
665
+ }
666
+
667
+ type TypographyProps = HTMLAttributes<HTMLElement | HTMLLabelElement> & {
668
+ variant?: `${TypographyVariant}`;
669
+ nowrap?: boolean | number;
670
+ as?: keyof React__default.ReactHTML;
671
+ weight?: `${TypographyWeight}`;
672
+ children: React__default.ReactNode;
673
+ noPadding?: boolean;
674
+ htmlFor?: string;
675
+ align?: React__default.CSSProperties['textAlign'];
676
+ family?: 'primary' | 'code';
677
+ recommendedWidth?: boolean;
678
+ };
679
+ declare const TypographyComponent: ({ variant, nowrap, className: customClassname, style, children, as, weight, family, noPadding, align, htmlFor, recommendedWidth, ...props }: TypographyProps, ref: React__default.ForwardedRef<unknown>) => React__default.ReactElement<{
680
+ className: string;
681
+ ref: React__default.ForwardedRef<unknown>;
682
+ htmlFor: string | undefined;
683
+ style: {
684
+ accentColor?: csstype.Property.AccentColor | undefined;
685
+ alignContent?: csstype.Property.AlignContent | undefined;
686
+ alignItems?: csstype.Property.AlignItems | undefined;
687
+ alignSelf?: csstype.Property.AlignSelf | undefined;
688
+ alignTracks?: csstype.Property.AlignTracks | undefined;
689
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
690
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
691
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
692
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
693
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
694
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
695
+ animationName?: csstype.Property.AnimationName | undefined;
696
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
697
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
698
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
699
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
700
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
701
+ appearance?: csstype.Property.Appearance | undefined;
702
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
703
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
704
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
705
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
706
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
707
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
708
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
709
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
710
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
711
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
712
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
713
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
714
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
715
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
716
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
717
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
718
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
719
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
720
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
721
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
722
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
723
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
724
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
725
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
726
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
727
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
728
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
729
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
730
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
731
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
732
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
733
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
734
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
735
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
736
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
737
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
738
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
739
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
740
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
741
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
742
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
743
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
744
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
745
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
746
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
747
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
748
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
749
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
750
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
751
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
752
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
753
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
754
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
755
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
756
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
757
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
758
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
759
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
760
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
761
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
762
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
763
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
764
+ boxShadow?: csstype.Property.BoxShadow | undefined;
765
+ boxSizing?: csstype.Property.BoxSizing | undefined;
766
+ breakAfter?: csstype.Property.BreakAfter | undefined;
767
+ breakBefore?: csstype.Property.BreakBefore | undefined;
768
+ breakInside?: csstype.Property.BreakInside | undefined;
769
+ captionSide?: csstype.Property.CaptionSide | undefined;
770
+ caretColor?: csstype.Property.CaretColor | undefined;
771
+ caretShape?: csstype.Property.CaretShape | undefined;
772
+ clear?: csstype.Property.Clear | undefined;
773
+ clipPath?: csstype.Property.ClipPath | undefined;
774
+ color?: csstype.Property.Color | undefined;
775
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
776
+ colorScheme?: csstype.Property.ColorScheme | undefined;
777
+ columnCount?: csstype.Property.ColumnCount | undefined;
778
+ columnFill?: csstype.Property.ColumnFill | undefined;
779
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
780
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
781
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
782
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
783
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
784
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
785
+ contain?: csstype.Property.Contain | undefined;
786
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
787
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
788
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
789
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
790
+ containerName?: csstype.Property.ContainerName | undefined;
791
+ containerType?: csstype.Property.ContainerType | undefined;
792
+ content?: csstype.Property.Content | undefined;
793
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
794
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
795
+ counterReset?: csstype.Property.CounterReset | undefined;
796
+ counterSet?: csstype.Property.CounterSet | undefined;
797
+ cursor?: csstype.Property.Cursor | undefined;
798
+ direction?: csstype.Property.Direction | undefined;
799
+ display?: csstype.Property.Display | undefined;
800
+ emptyCells?: csstype.Property.EmptyCells | undefined;
801
+ filter?: csstype.Property.Filter | undefined;
802
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
803
+ flexDirection?: csstype.Property.FlexDirection | undefined;
804
+ flexGrow?: csstype.Property.FlexGrow | undefined;
805
+ flexShrink?: csstype.Property.FlexShrink | undefined;
806
+ flexWrap?: csstype.Property.FlexWrap | undefined;
807
+ float?: csstype.Property.Float | undefined;
808
+ fontFamily?: csstype.Property.FontFamily | undefined;
809
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
810
+ fontKerning?: csstype.Property.FontKerning | undefined;
811
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
812
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
813
+ fontPalette?: csstype.Property.FontPalette | undefined;
814
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
815
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
816
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
817
+ fontStretch?: csstype.Property.FontStretch | undefined;
818
+ fontStyle?: csstype.Property.FontStyle | undefined;
819
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
820
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
821
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
822
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
823
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
824
+ fontVariant?: csstype.Property.FontVariant | undefined;
825
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
826
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
827
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
828
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
829
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
830
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
831
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
832
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
833
+ fontWeight?: csstype.Property.FontWeight | undefined;
834
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
835
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
836
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
837
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
838
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
839
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
840
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
841
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
842
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
843
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
844
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
845
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
846
+ height?: csstype.Property.Height<string | number> | undefined;
847
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
848
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
849
+ hyphens?: csstype.Property.Hyphens | undefined;
850
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
851
+ imageRendering?: csstype.Property.ImageRendering | undefined;
852
+ imageResolution?: csstype.Property.ImageResolution | undefined;
853
+ initialLetter?: csstype.Property.InitialLetter | undefined;
854
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
855
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
856
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
857
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
858
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
859
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
860
+ isolation?: csstype.Property.Isolation | undefined;
861
+ justifyContent?: csstype.Property.JustifyContent | undefined;
862
+ justifyItems?: csstype.Property.JustifyItems | undefined;
863
+ justifySelf?: csstype.Property.JustifySelf | undefined;
864
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
865
+ left?: csstype.Property.Left<string | number> | undefined;
866
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
867
+ lineBreak?: csstype.Property.LineBreak | undefined;
868
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
869
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
870
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
871
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
872
+ listStyleType?: csstype.Property.ListStyleType | undefined;
873
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
874
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
875
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
876
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
877
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
878
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
879
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
880
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
881
+ marginTrim?: csstype.Property.MarginTrim | undefined;
882
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
883
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
884
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
885
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
886
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
887
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
888
+ maskClip?: csstype.Property.MaskClip | undefined;
889
+ maskComposite?: csstype.Property.MaskComposite | undefined;
890
+ maskImage?: csstype.Property.MaskImage | undefined;
891
+ maskMode?: csstype.Property.MaskMode | undefined;
892
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
893
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
894
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
895
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
896
+ maskType?: csstype.Property.MaskType | undefined;
897
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
898
+ mathDepth?: csstype.Property.MathDepth | undefined;
899
+ mathShift?: csstype.Property.MathShift | undefined;
900
+ mathStyle?: csstype.Property.MathStyle | undefined;
901
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
902
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
903
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
904
+ maxLines?: csstype.Property.MaxLines | undefined;
905
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
906
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
907
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
908
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
909
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
910
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
911
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
912
+ motionPath?: csstype.Property.OffsetPath | undefined;
913
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
914
+ objectFit?: csstype.Property.ObjectFit | undefined;
915
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
916
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
917
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
918
+ offsetPath?: csstype.Property.OffsetPath | undefined;
919
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
920
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
921
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
922
+ opacity?: csstype.Property.Opacity | undefined;
923
+ order?: csstype.Property.Order | undefined;
924
+ orphans?: csstype.Property.Orphans | undefined;
925
+ outlineColor?: csstype.Property.OutlineColor | undefined;
926
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
927
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
928
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
929
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
930
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
931
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
932
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
933
+ overflowInline?: csstype.Property.OverflowInline | undefined;
934
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
935
+ overflowX?: csstype.Property.OverflowX | undefined;
936
+ overflowY?: csstype.Property.OverflowY | undefined;
937
+ overlay?: csstype.Property.Overlay | undefined;
938
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
939
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
940
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
941
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
942
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
943
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
944
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
945
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
946
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
947
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
948
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
949
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
950
+ page?: csstype.Property.Page | undefined;
951
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
952
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
953
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
954
+ paintOrder?: csstype.Property.PaintOrder | undefined;
955
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
956
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
957
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
958
+ position?: csstype.Property.Position | undefined;
959
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
960
+ quotes?: csstype.Property.Quotes | undefined;
961
+ resize?: csstype.Property.Resize | undefined;
962
+ right?: csstype.Property.Right<string | number> | undefined;
963
+ rotate?: csstype.Property.Rotate | undefined;
964
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
965
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
966
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
967
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
968
+ scale?: csstype.Property.Scale | undefined;
969
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
970
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
971
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
972
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
973
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
974
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
975
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
976
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
977
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
978
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
979
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
980
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
981
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
982
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
983
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
984
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
985
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
986
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
987
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
988
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
989
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
990
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
991
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
992
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
993
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
994
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
995
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
996
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
997
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
998
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
999
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
1000
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
1001
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
1002
+ tableLayout?: csstype.Property.TableLayout | undefined;
1003
+ textAlign: csstype.Property.TextAlign | undefined;
1004
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
1005
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
1006
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1007
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1008
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
1009
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
1010
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1011
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
1012
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
1013
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
1014
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
1015
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
1016
+ textJustify?: csstype.Property.TextJustify | undefined;
1017
+ textOrientation?: csstype.Property.TextOrientation | undefined;
1018
+ textOverflow?: csstype.Property.TextOverflow | undefined;
1019
+ textRendering?: csstype.Property.TextRendering | undefined;
1020
+ textShadow?: csstype.Property.TextShadow | undefined;
1021
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1022
+ textTransform?: csstype.Property.TextTransform | undefined;
1023
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
1024
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
1025
+ textWrap?: csstype.Property.TextWrap | undefined;
1026
+ timelineScope?: csstype.Property.TimelineScope | undefined;
1027
+ top?: csstype.Property.Top<string | number> | undefined;
1028
+ touchAction?: csstype.Property.TouchAction | undefined;
1029
+ transform?: csstype.Property.Transform | undefined;
1030
+ transformBox?: csstype.Property.TransformBox | undefined;
1031
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1032
+ transformStyle?: csstype.Property.TransformStyle | undefined;
1033
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
1034
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1035
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1036
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
1037
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1038
+ translate?: csstype.Property.Translate<string | number> | undefined;
1039
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
1040
+ userSelect?: csstype.Property.UserSelect | undefined;
1041
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
1042
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
1043
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
1044
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
1045
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
1046
+ visibility?: csstype.Property.Visibility | undefined;
1047
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
1048
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
1049
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
1050
+ widows?: csstype.Property.Widows | undefined;
1051
+ width?: csstype.Property.Width<string | number> | undefined;
1052
+ willChange?: csstype.Property.WillChange | undefined;
1053
+ wordBreak?: csstype.Property.WordBreak | undefined;
1054
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
1055
+ wordWrap?: csstype.Property.WordWrap | undefined;
1056
+ writingMode?: csstype.Property.WritingMode | undefined;
1057
+ zIndex?: csstype.Property.ZIndex | undefined;
1058
+ zoom?: csstype.Property.Zoom | undefined;
1059
+ all?: csstype.Property.All | undefined;
1060
+ animation?: csstype.Property.Animation<string & {}> | undefined;
1061
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
1062
+ background?: csstype.Property.Background<string | number> | undefined;
1063
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
1064
+ border?: csstype.Property.Border<string | number> | undefined;
1065
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
1066
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
1067
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
1068
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
1069
+ borderColor?: csstype.Property.BorderColor | undefined;
1070
+ borderImage?: csstype.Property.BorderImage | undefined;
1071
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
1072
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
1073
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
1074
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
1075
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1076
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
1077
+ borderStyle?: csstype.Property.BorderStyle | undefined;
1078
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
1079
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
1080
+ caret?: csstype.Property.Caret | undefined;
1081
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1082
+ columns?: csstype.Property.Columns<string | number> | undefined;
1083
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
1084
+ container?: csstype.Property.Container | undefined;
1085
+ flex?: csstype.Property.Flex<string | number> | undefined;
1086
+ flexFlow?: csstype.Property.FlexFlow | undefined;
1087
+ font?: csstype.Property.Font | undefined;
1088
+ gap?: csstype.Property.Gap<string | number> | undefined;
1089
+ grid?: csstype.Property.Grid | undefined;
1090
+ gridArea?: csstype.Property.GridArea | undefined;
1091
+ gridColumn?: csstype.Property.GridColumn | undefined;
1092
+ gridRow?: csstype.Property.GridRow | undefined;
1093
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
1094
+ inset?: csstype.Property.Inset<string | number> | undefined;
1095
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
1096
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
1097
+ lineClamp?: csstype.Property.LineClamp | undefined;
1098
+ listStyle?: csstype.Property.ListStyle | undefined;
1099
+ margin?: csstype.Property.Margin<string | number> | undefined;
1100
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
1101
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
1102
+ mask?: csstype.Property.Mask<string | number> | undefined;
1103
+ maskBorder?: csstype.Property.MaskBorder | undefined;
1104
+ motion?: csstype.Property.Offset<string | number> | undefined;
1105
+ offset?: csstype.Property.Offset<string | number> | undefined;
1106
+ outline?: csstype.Property.Outline<string | number> | undefined;
1107
+ overflow?: csstype.Property.Overflow | undefined;
1108
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
1109
+ padding?: csstype.Property.Padding<string | number> | undefined;
1110
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
1111
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
1112
+ placeContent?: csstype.Property.PlaceContent | undefined;
1113
+ placeItems?: csstype.Property.PlaceItems | undefined;
1114
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
1115
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
1116
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
1117
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
1118
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
1119
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
1120
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
1121
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
1122
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
1123
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
1124
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
1125
+ transition?: csstype.Property.Transition<string & {}> | undefined;
1126
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
1127
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1128
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1129
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1130
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1131
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1132
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
1133
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1134
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1135
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
1136
+ MozBinding?: csstype.Property.MozBinding | undefined;
1137
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
1138
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
1139
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
1140
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
1141
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
1142
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
1143
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
1144
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
1145
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
1146
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
1147
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
1148
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
1149
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1150
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1151
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
1152
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
1153
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
1154
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1155
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
1156
+ MozHyphens?: csstype.Property.Hyphens | undefined;
1157
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
1158
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1159
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1160
+ MozOrient?: csstype.Property.MozOrient | undefined;
1161
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
1162
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1163
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
1164
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
1165
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
1166
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1167
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1168
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
1169
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
1170
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
1171
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1172
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
1173
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
1174
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
1175
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
1176
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
1177
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
1178
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
1179
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
1180
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
1181
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
1182
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
1183
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
1184
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
1185
+ msFilter?: csstype.Property.MsFilter | undefined;
1186
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
1187
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
1188
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
1189
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
1190
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
1191
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
1192
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
1193
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
1194
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
1195
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
1196
+ msHyphens?: csstype.Property.Hyphens | undefined;
1197
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
1198
+ msLineBreak?: csstype.Property.LineBreak | undefined;
1199
+ msOrder?: csstype.Property.Order | undefined;
1200
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
1201
+ msOverflowX?: csstype.Property.OverflowX | undefined;
1202
+ msOverflowY?: csstype.Property.OverflowY | undefined;
1203
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
1204
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
1205
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
1206
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
1207
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
1208
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
1209
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
1210
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
1211
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
1212
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
1213
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
1214
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
1215
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
1216
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
1217
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
1218
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
1219
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
1220
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
1221
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
1222
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
1223
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
1224
+ msTouchAction?: csstype.Property.TouchAction | undefined;
1225
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
1226
+ msTransform?: csstype.Property.Transform | undefined;
1227
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1228
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1229
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1230
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1231
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1232
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
1233
+ msWordBreak?: csstype.Property.WordBreak | undefined;
1234
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
1235
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
1236
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
1237
+ msWritingMode?: csstype.Property.WritingMode | undefined;
1238
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
1239
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
1240
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
1241
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1242
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1243
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1244
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1245
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1246
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
1247
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1248
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1249
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
1250
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
1251
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1252
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
1253
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1254
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1255
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
1256
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
1257
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
1258
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1259
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
1260
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
1261
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
1262
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
1263
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
1264
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
1265
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
1266
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
1267
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
1268
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
1269
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
1270
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1271
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1272
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
1273
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
1274
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
1275
+ WebkitFilter?: csstype.Property.Filter | undefined;
1276
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
1277
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
1278
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
1279
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
1280
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
1281
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1282
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
1283
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
1284
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
1285
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
1286
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
1287
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
1288
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
1289
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
1290
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
1291
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1292
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1293
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
1294
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
1295
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
1296
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
1297
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
1298
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
1299
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
1300
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
1301
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
1302
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
1303
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
1304
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
1305
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
1306
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
1307
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
1308
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
1309
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
1310
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
1311
+ WebkitOrder?: csstype.Property.Order | undefined;
1312
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
1313
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1314
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1315
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
1316
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1317
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1318
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
1319
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
1320
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
1321
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
1322
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
1323
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1324
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1325
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
1326
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1327
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
1328
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
1329
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
1330
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
1331
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
1332
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1333
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
1334
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
1335
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
1336
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
1337
+ WebkitTransform?: csstype.Property.Transform | undefined;
1338
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1339
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
1340
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1341
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1342
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1343
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1344
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
1345
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
1346
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
1347
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
1348
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
1349
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1350
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
1351
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
1352
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
1353
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
1354
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
1355
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
1356
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
1357
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
1358
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
1359
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
1360
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
1361
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
1362
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1363
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1364
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
1365
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
1366
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
1367
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
1368
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
1369
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
1370
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
1371
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
1372
+ azimuth?: csstype.Property.Azimuth | undefined;
1373
+ boxAlign?: csstype.Property.BoxAlign | undefined;
1374
+ boxDirection?: csstype.Property.BoxDirection | undefined;
1375
+ boxFlex?: csstype.Property.BoxFlex | undefined;
1376
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1377
+ boxLines?: csstype.Property.BoxLines | undefined;
1378
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1379
+ boxOrient?: csstype.Property.BoxOrient | undefined;
1380
+ boxPack?: csstype.Property.BoxPack | undefined;
1381
+ clip?: csstype.Property.Clip | undefined;
1382
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
1383
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
1384
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
1385
+ imeMode?: csstype.Property.ImeMode | undefined;
1386
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
1387
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
1388
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
1389
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
1390
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
1391
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
1392
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
1393
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
1394
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
1395
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
1396
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
1397
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
1398
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
1399
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
1400
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
1401
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1402
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
1403
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1404
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
1405
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
1406
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
1407
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
1408
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
1409
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1410
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
1411
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
1412
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1413
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1414
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1415
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1416
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
1417
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
1418
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
1419
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
1420
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
1421
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
1422
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1423
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
1424
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
1425
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
1426
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
1427
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
1428
+ MozOpacity?: csstype.Property.Opacity | undefined;
1429
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
1430
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
1431
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
1432
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
1433
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
1434
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1435
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
1436
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1437
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1438
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1439
+ MozTransform?: csstype.Property.Transform | undefined;
1440
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1441
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
1442
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
1443
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1444
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1445
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1446
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1447
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
1448
+ msImeMode?: csstype.Property.ImeMode | undefined;
1449
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
1450
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1451
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1452
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1453
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1454
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1455
+ OAnimationName?: csstype.Property.AnimationName | undefined;
1456
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1457
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1458
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1459
+ OBorderImage?: csstype.Property.BorderImage | undefined;
1460
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
1461
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
1462
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
1463
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
1464
+ OTransform?: csstype.Property.Transform | undefined;
1465
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1466
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
1467
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1468
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1469
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1470
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1471
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
1472
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
1473
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
1474
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1475
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
1476
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1477
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
1478
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
1479
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
1480
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
1481
+ clipRule?: csstype.Property.ClipRule | undefined;
1482
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
1483
+ colorRendering?: csstype.Property.ColorRendering | undefined;
1484
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
1485
+ fill?: csstype.Property.Fill | undefined;
1486
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
1487
+ fillRule?: csstype.Property.FillRule | undefined;
1488
+ floodColor?: csstype.Property.FloodColor | undefined;
1489
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
1490
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
1491
+ lightingColor?: csstype.Property.LightingColor | undefined;
1492
+ marker?: csstype.Property.Marker | undefined;
1493
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
1494
+ markerMid?: csstype.Property.MarkerMid | undefined;
1495
+ markerStart?: csstype.Property.MarkerStart | undefined;
1496
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
1497
+ stopColor?: csstype.Property.StopColor | undefined;
1498
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
1499
+ stroke?: csstype.Property.Stroke | undefined;
1500
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
1501
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
1502
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
1503
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
1504
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
1505
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
1506
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
1507
+ textAnchor?: csstype.Property.TextAnchor | undefined;
1508
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
1509
+ };
1510
+ defaultChecked?: boolean | undefined;
1511
+ defaultValue?: string | number | readonly string[] | undefined;
1512
+ suppressContentEditableWarning?: boolean | undefined;
1513
+ suppressHydrationWarning?: boolean | undefined;
1514
+ accessKey?: string | undefined;
1515
+ autoFocus?: boolean | undefined;
1516
+ contentEditable?: (boolean | "false" | "true") | "inherit" | "plaintext-only" | undefined;
1517
+ contextMenu?: string | undefined;
1518
+ dir?: string | undefined;
1519
+ draggable?: (boolean | "false" | "true") | undefined;
1520
+ hidden?: boolean | undefined;
1521
+ id?: string | undefined;
1522
+ lang?: string | undefined;
1523
+ nonce?: string | undefined;
1524
+ slot?: string | undefined;
1525
+ spellCheck?: (boolean | "false" | "true") | undefined;
1526
+ tabIndex?: number | undefined;
1527
+ title?: string | undefined;
1528
+ translate?: "yes" | "no" | undefined;
1529
+ radioGroup?: string | undefined;
1530
+ role?: React__default.AriaRole | undefined;
1531
+ about?: string | undefined;
1532
+ content?: string | undefined;
1533
+ datatype?: string | undefined;
1534
+ inlist?: any;
1535
+ prefix?: string | undefined;
1536
+ property?: string | undefined;
1537
+ rel?: string | undefined;
1538
+ resource?: string | undefined;
1539
+ rev?: string | undefined;
1540
+ typeof?: string | undefined;
1541
+ vocab?: string | undefined;
1542
+ autoCapitalize?: string | undefined;
1543
+ autoCorrect?: string | undefined;
1544
+ autoSave?: string | undefined;
1545
+ color?: string | undefined;
1546
+ itemProp?: string | undefined;
1547
+ itemScope?: boolean | undefined;
1548
+ itemType?: string | undefined;
1549
+ itemID?: string | undefined;
1550
+ itemRef?: string | undefined;
1551
+ results?: number | undefined;
1552
+ security?: string | undefined;
1553
+ unselectable?: "on" | "off" | undefined;
1554
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
1555
+ is?: string | undefined;
1556
+ "aria-activedescendant"?: string | undefined;
1557
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
1558
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
1559
+ "aria-braillelabel"?: string | undefined;
1560
+ "aria-brailleroledescription"?: string | undefined;
1561
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
1562
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
1563
+ "aria-colcount"?: number | undefined;
1564
+ "aria-colindex"?: number | undefined;
1565
+ "aria-colindextext"?: string | undefined;
1566
+ "aria-colspan"?: number | undefined;
1567
+ "aria-controls"?: string | undefined;
1568
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
1569
+ "aria-describedby"?: string | undefined;
1570
+ "aria-description"?: string | undefined;
1571
+ "aria-details"?: string | undefined;
1572
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
1573
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
1574
+ "aria-errormessage"?: string | undefined;
1575
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
1576
+ "aria-flowto"?: string | undefined;
1577
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
1578
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
1579
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
1580
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
1581
+ "aria-keyshortcuts"?: string | undefined;
1582
+ "aria-label"?: string | undefined;
1583
+ "aria-labelledby"?: string | undefined;
1584
+ "aria-level"?: number | undefined;
1585
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
1586
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
1587
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
1588
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
1589
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
1590
+ "aria-owns"?: string | undefined;
1591
+ "aria-placeholder"?: string | undefined;
1592
+ "aria-posinset"?: number | undefined;
1593
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
1594
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
1595
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
1596
+ "aria-required"?: (boolean | "false" | "true") | undefined;
1597
+ "aria-roledescription"?: string | undefined;
1598
+ "aria-rowcount"?: number | undefined;
1599
+ "aria-rowindex"?: number | undefined;
1600
+ "aria-rowindextext"?: string | undefined;
1601
+ "aria-rowspan"?: number | undefined;
1602
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
1603
+ "aria-setsize"?: number | undefined;
1604
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
1605
+ "aria-valuemax"?: number | undefined;
1606
+ "aria-valuemin"?: number | undefined;
1607
+ "aria-valuenow"?: number | undefined;
1608
+ "aria-valuetext"?: string | undefined;
1609
+ dangerouslySetInnerHTML?: {
1610
+ __html: string | TrustedHTML;
1611
+ } | undefined;
1612
+ onCopy?: React__default.ClipboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1613
+ onCopyCapture?: React__default.ClipboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1614
+ onCut?: React__default.ClipboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1615
+ onCutCapture?: React__default.ClipboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1616
+ onPaste?: React__default.ClipboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1617
+ onPasteCapture?: React__default.ClipboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1618
+ onCompositionEnd?: React__default.CompositionEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1619
+ onCompositionEndCapture?: React__default.CompositionEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1620
+ onCompositionStart?: React__default.CompositionEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1621
+ onCompositionStartCapture?: React__default.CompositionEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1622
+ onCompositionUpdate?: React__default.CompositionEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1623
+ onCompositionUpdateCapture?: React__default.CompositionEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1624
+ onFocus?: React__default.FocusEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1625
+ onFocusCapture?: React__default.FocusEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1626
+ onBlur?: React__default.FocusEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1627
+ onBlurCapture?: React__default.FocusEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1628
+ onChange?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1629
+ onChangeCapture?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1630
+ onBeforeInput?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1631
+ onBeforeInputCapture?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1632
+ onInput?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1633
+ onInputCapture?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1634
+ onReset?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1635
+ onResetCapture?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1636
+ onSubmit?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1637
+ onSubmitCapture?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1638
+ onInvalid?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1639
+ onInvalidCapture?: React__default.FormEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1640
+ onLoad?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1641
+ onLoadCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1642
+ onError?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1643
+ onErrorCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1644
+ onKeyDown?: React__default.KeyboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1645
+ onKeyDownCapture?: React__default.KeyboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1646
+ onKeyPress?: React__default.KeyboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1647
+ onKeyPressCapture?: React__default.KeyboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1648
+ onKeyUp?: React__default.KeyboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1649
+ onKeyUpCapture?: React__default.KeyboardEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1650
+ onAbort?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1651
+ onAbortCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1652
+ onCanPlay?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1653
+ onCanPlayCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1654
+ onCanPlayThrough?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1655
+ onCanPlayThroughCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1656
+ onDurationChange?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1657
+ onDurationChangeCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1658
+ onEmptied?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1659
+ onEmptiedCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1660
+ onEncrypted?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1661
+ onEncryptedCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1662
+ onEnded?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1663
+ onEndedCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1664
+ onLoadedData?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1665
+ onLoadedDataCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1666
+ onLoadedMetadata?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1667
+ onLoadedMetadataCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1668
+ onLoadStart?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1669
+ onLoadStartCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1670
+ onPause?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1671
+ onPauseCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1672
+ onPlay?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1673
+ onPlayCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1674
+ onPlaying?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1675
+ onPlayingCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1676
+ onProgress?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1677
+ onProgressCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1678
+ onRateChange?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1679
+ onRateChangeCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1680
+ onResize?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1681
+ onResizeCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1682
+ onSeeked?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1683
+ onSeekedCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1684
+ onSeeking?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1685
+ onSeekingCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1686
+ onStalled?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1687
+ onStalledCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1688
+ onSuspend?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1689
+ onSuspendCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1690
+ onTimeUpdate?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1691
+ onTimeUpdateCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1692
+ onVolumeChange?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1693
+ onVolumeChangeCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1694
+ onWaiting?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1695
+ onWaitingCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1696
+ onAuxClick?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1697
+ onAuxClickCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1698
+ onClick?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1699
+ onClickCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1700
+ onContextMenu?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1701
+ onContextMenuCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1702
+ onDoubleClick?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1703
+ onDoubleClickCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1704
+ onDrag?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1705
+ onDragCapture?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1706
+ onDragEnd?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1707
+ onDragEndCapture?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1708
+ onDragEnter?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1709
+ onDragEnterCapture?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1710
+ onDragExit?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1711
+ onDragExitCapture?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1712
+ onDragLeave?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1713
+ onDragLeaveCapture?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1714
+ onDragOver?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1715
+ onDragOverCapture?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1716
+ onDragStart?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1717
+ onDragStartCapture?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1718
+ onDrop?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1719
+ onDropCapture?: React__default.DragEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1720
+ onMouseDown?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1721
+ onMouseDownCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1722
+ onMouseEnter?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1723
+ onMouseLeave?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1724
+ onMouseMove?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1725
+ onMouseMoveCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1726
+ onMouseOut?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1727
+ onMouseOutCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1728
+ onMouseOver?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1729
+ onMouseOverCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1730
+ onMouseUp?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1731
+ onMouseUpCapture?: React__default.MouseEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1732
+ onSelect?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1733
+ onSelectCapture?: React__default.ReactEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1734
+ onTouchCancel?: React__default.TouchEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1735
+ onTouchCancelCapture?: React__default.TouchEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1736
+ onTouchEnd?: React__default.TouchEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1737
+ onTouchEndCapture?: React__default.TouchEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1738
+ onTouchMove?: React__default.TouchEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1739
+ onTouchMoveCapture?: React__default.TouchEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1740
+ onTouchStart?: React__default.TouchEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1741
+ onTouchStartCapture?: React__default.TouchEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1742
+ onPointerDown?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1743
+ onPointerDownCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1744
+ onPointerMove?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1745
+ onPointerMoveCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1746
+ onPointerUp?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1747
+ onPointerUpCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1748
+ onPointerCancel?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1749
+ onPointerCancelCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1750
+ onPointerEnter?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1751
+ onPointerLeave?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1752
+ onPointerOver?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1753
+ onPointerOverCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1754
+ onPointerOut?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1755
+ onPointerOutCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1756
+ onGotPointerCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1757
+ onGotPointerCaptureCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1758
+ onLostPointerCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1759
+ onLostPointerCaptureCapture?: React__default.PointerEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1760
+ onScroll?: React__default.UIEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1761
+ onScrollCapture?: React__default.UIEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1762
+ onWheel?: React__default.WheelEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1763
+ onWheelCapture?: React__default.WheelEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1764
+ onAnimationStart?: React__default.AnimationEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1765
+ onAnimationStartCapture?: React__default.AnimationEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1766
+ onAnimationEnd?: React__default.AnimationEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1767
+ onAnimationEndCapture?: React__default.AnimationEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1768
+ onAnimationIteration?: React__default.AnimationEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1769
+ onAnimationIterationCapture?: React__default.AnimationEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1770
+ onTransitionEnd?: React__default.TransitionEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1771
+ onTransitionEndCapture?: React__default.TransitionEventHandler<HTMLElement | HTMLLabelElement> | undefined;
1772
+ }, string | React__default.JSXElementConstructor<any>>;
1773
+ declare const Typography: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLElement | HTMLLabelElement> & {
1774
+ variant?: `${TypographyVariant}`;
1775
+ nowrap?: boolean | number;
1776
+ as?: keyof React__default.ReactHTML;
1777
+ weight?: `${TypographyWeight}`;
1778
+ children: React__default.ReactNode;
1779
+ noPadding?: boolean;
1780
+ htmlFor?: string;
1781
+ align?: React__default.CSSProperties["textAlign"];
1782
+ family?: "primary" | "code";
1783
+ recommendedWidth?: boolean;
1784
+ } & React__default.RefAttributes<unknown>>;
1785
+
1786
+ type FormProps<T extends FieldValues> = {
1787
+ onSubmit: SubmitHandler<T>;
1788
+ children: React.ReactNode;
1789
+ className?: string;
1790
+ defaultValues?: DefaultValues<T>;
1791
+ mode?: Mode;
1792
+ reValidateMode?: Exclude<Mode, 'onTouched' | 'all'>;
1793
+ shouldFocusError?: boolean;
1794
+ style?: React.CSSProperties;
1795
+ schema?: AnyObjectSchema;
1796
+ };
1797
+ declare const Form: <T extends FieldValues = FieldValues>({ mode, reValidateMode, onSubmit, className, style, defaultValues, shouldFocusError, children, schema, }: FormProps<T>) => React.ReactElement;
1798
+
1799
+ type UserT = {
1800
+ name: string;
1801
+ username: string;
1802
+ full_name: string;
1803
+ email: string;
1804
+ };
1805
+ type SessionT = {
1806
+ isAuthenticated: boolean;
1807
+ user: UserT | null;
1808
+ token: string | null;
1809
+ };
1810
+ type FetchContextT = SessionT & {
1811
+ httpClient: AxiosInstance;
1812
+ login: (user: UserT, token: string) => void;
1813
+ logout: () => void;
1814
+ };
1815
+ type FetchProviderProps = {
1816
+ children: React.ReactNode;
1817
+ baseURL: string;
1818
+ };
1819
+ declare const FetchProvider: ({ children, baseURL }: FetchProviderProps) => react_jsx_runtime.JSX.Element;
1820
+ declare const useFetch: () => FetchContextT;
1821
+
1822
+ declare enum TypographyVariants {
1823
+ HERO = "hero",
1824
+ HEADER1 = "header1",
1825
+ HEADER2 = "header2",
1826
+ HEADER3 = "header3",
1827
+ HEADER4 = "header4",
1828
+ BODY = "body",
1829
+ LABEL = "label",
1830
+ SMALL = "small"
1831
+ }
1832
+ declare enum Breakpoints {
1833
+ MOBILE = "mobile",
1834
+ MOBILE_L = "mobileL",
1835
+ TABLET = "tablet",
1836
+ LAPTOPS = "laptopS",
1837
+ LAPTOP_M = "laptopM",
1838
+ LAPTOP_L = "laptopL",
1839
+ DESKTOP = "desktop",
1840
+ LARGE = "large"
1841
+ }
1842
+ type TypographyEntity = {
1843
+ fontSize: string;
1844
+ lineHeight: string;
1845
+ defaultWeight: React__default.CSSProperties['fontWeight'];
1846
+ weights: Record<string, React__default.CSSProperties['fontWeight']>;
1847
+ breakpoints: Array<{
1848
+ from: `${Breakpoints}`;
1849
+ fontSize: string;
1850
+ lineHeight: string;
1851
+ }>;
1852
+ };
1853
+ type ThemeConstantsEntity = {
1854
+ fontFamily: string;
1855
+ sectionMinHeight: string;
1856
+ breakpoints: Record<`${Breakpoints}`, string>;
1857
+ typography: Record<`${TypographyVariants}`, TypographyEntity>;
1858
+ };
1859
+ type ThemeColor = {
1860
+ main: string;
1861
+ contrast: string;
1862
+ light: string;
1863
+ dark: string;
1864
+ };
1865
+ type CommonThemeEntity = {
1866
+ black: string;
1867
+ white: string;
1868
+ gray1: string;
1869
+ gray2: string;
1870
+ gray3: string;
1871
+ gray4: string;
1872
+ gray5: string;
1873
+ gray6: string;
1874
+ gray7: string;
1875
+ gray8: string;
1876
+ gray9: string;
1877
+ info: ThemeColor;
1878
+ active: ThemeColor;
1879
+ warning: ThemeColor;
1880
+ alert: ThemeColor;
1881
+ };
1882
+ type PaletteThemeEntity = {
1883
+ background: {
1884
+ main: string;
1885
+ paper: string;
1886
+ disabled: string;
1887
+ };
1888
+ text: {
1889
+ main: string;
1890
+ light: string;
1891
+ dark: string;
1892
+ disabled: string;
1893
+ };
1894
+ border: {
1895
+ main: string;
1896
+ };
1897
+ primary: ThemeColor;
1898
+ secondary: ThemeColor;
1899
+ tertiary: ThemeColor;
1900
+ };
1901
+ type ThemeEntity = PaletteThemeEntity & CommonThemeEntity;
1902
+ declare module 'styled-components' {
1903
+ interface DefaultTheme {
1904
+ name: string;
1905
+ colors: ThemeEntity;
1906
+ constants: ThemeConstantsEntity;
1907
+ }
1908
+ }
1909
+
1910
+ declare enum THEME {
1911
+ LIGHT = "light",
1912
+ DARK = "dark"
1913
+ }
1914
+ type ThemeContext = {
1915
+ themeName: `${THEME}`;
1916
+ changeTheme: (theme: `${THEME}`) => void;
1917
+ toggleTheme: () => void;
1918
+ setSystemTheme: () => void;
1919
+ };
1920
+ declare const ThemeContext: React__default.Context<ThemeContext | null>;
1921
+ type ThemeProviderProps = {
1922
+ children: React__default.ReactNode;
1923
+ commonTheme?: CommonThemeEntity;
1924
+ lightTheme?: PaletteThemeEntity;
1925
+ darkTheme?: PaletteThemeEntity;
1926
+ constants?: ThemeConstantsEntity;
1927
+ defaultTheme?: `${THEME}`;
1928
+ };
1929
+ declare const ThemeProvider: {
1930
+ ({ children, commonTheme, lightTheme, darkTheme, constants, defaultTheme, }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
1931
+ Wrapper: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
1932
+ };
1933
+ declare const useMyTheme: () => ThemeContext;
1934
+
1935
+ declare const ThemeConstants: ThemeConstantsEntity;
1936
+ declare const CommonTheme: CommonThemeEntity;
1937
+ declare const DarkTheme: PaletteThemeEntity;
1938
+ declare const LightTheme: PaletteThemeEntity;
1939
+
1940
+ declare class HttpClient {
1941
+ private _instance;
1942
+ private _token;
1943
+ logout: () => void;
1944
+ constructor(baseURL: string);
1945
+ get instance(): AxiosInstance;
1946
+ get token(): string;
1947
+ set token(token: string);
1948
+ }
1949
+
1950
+ type GridProps = React__default.HTMLAttributes<HTMLDivElement> & {
1951
+ tag?: keyof React__default.ReactHTML;
1952
+ children?: React__default.ReactNode;
1953
+ className?: string;
1954
+ style?: React__default.CSSProperties;
1955
+ flow?: React__default.CSSProperties['gridAutoFlow'];
1956
+ columnSize?: React__default.CSSProperties['gridAutoColumns'];
1957
+ rowSize?: React__default.CSSProperties['gridAutoRows'];
1958
+ column?: React__default.CSSProperties['gridColumn'];
1959
+ row?: React__default.CSSProperties['gridRow'];
1960
+ pc?: React__default.CSSProperties['placeContent'];
1961
+ pi?: React__default.CSSProperties['placeItems'];
1962
+ ps?: React__default.CSSProperties['placeSelf'];
1963
+ jc?: React__default.CSSProperties['justifyContent'];
1964
+ ji?: React__default.CSSProperties['justifyItems'];
1965
+ js?: React__default.CSSProperties['justifySelf'];
1966
+ ac?: React__default.CSSProperties['alignContent'];
1967
+ ai?: React__default.CSSProperties['alignItems'];
1968
+ as?: React__default.CSSProperties['alignSelf'];
1969
+ gtc?: React__default.CSSProperties['gridTemplateColumns'];
1970
+ gtr?: React__default.CSSProperties['gridTemplateRows'];
1971
+ gta?: React__default.CSSProperties['gridTemplateAreas'];
1972
+ gt?: React__default.CSSProperties['gridTemplate'];
1973
+ gap?: React__default.CSSProperties['gap'];
1974
+ };
1975
+ declare const Grid: ({ tag, children, className, style, flow, columnSize, rowSize, column, row, pc, pi, ps, jc, ji, js, ac, ai, as, gtc, gtr, gta, gt, gap, ...props }: GridProps) => React__default.DetailedReactHTMLElement<{
1976
+ style: {
1977
+ display: "grid";
1978
+ gap?: csstype.Property.Gap<string | number> | undefined;
1979
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
1980
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
1981
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
1982
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
1983
+ alignSelf?: csstype.Property.AlignSelf | undefined;
1984
+ alignItems?: csstype.Property.AlignItems | undefined;
1985
+ alignContent?: csstype.Property.AlignContent | undefined;
1986
+ justifySelf?: csstype.Property.JustifySelf | undefined;
1987
+ justifyItems?: csstype.Property.JustifyItems | undefined;
1988
+ justifyContent?: csstype.Property.JustifyContent | undefined;
1989
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
1990
+ placeItems?: csstype.Property.PlaceItems | undefined;
1991
+ placeContent?: csstype.Property.PlaceContent | undefined;
1992
+ gridRow?: csstype.Property.GridRow | undefined;
1993
+ gridColumn?: csstype.Property.GridColumn | undefined;
1994
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
1995
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
1996
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
1997
+ accentColor?: csstype.Property.AccentColor | undefined;
1998
+ alignTracks?: csstype.Property.AlignTracks | undefined;
1999
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
2000
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2001
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
2002
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2003
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
2004
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2005
+ animationName?: csstype.Property.AnimationName | undefined;
2006
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
2007
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
2008
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
2009
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
2010
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2011
+ appearance?: csstype.Property.Appearance | undefined;
2012
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
2013
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
2014
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2015
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
2016
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
2017
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
2018
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
2019
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
2020
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2021
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
2022
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
2023
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
2024
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2025
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
2026
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
2027
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
2028
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
2029
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
2030
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
2031
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
2032
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
2033
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
2034
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
2035
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
2036
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
2037
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2038
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2039
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
2040
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
2041
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
2042
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
2043
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
2044
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
2045
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
2046
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2047
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
2048
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
2049
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
2050
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2051
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2052
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2053
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2054
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2055
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
2056
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
2057
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
2058
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
2059
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
2060
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
2061
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
2062
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
2063
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
2064
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
2065
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
2066
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
2067
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
2068
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2069
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2070
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
2071
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
2072
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
2073
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
2074
+ boxShadow?: csstype.Property.BoxShadow | undefined;
2075
+ boxSizing?: csstype.Property.BoxSizing | undefined;
2076
+ breakAfter?: csstype.Property.BreakAfter | undefined;
2077
+ breakBefore?: csstype.Property.BreakBefore | undefined;
2078
+ breakInside?: csstype.Property.BreakInside | undefined;
2079
+ captionSide?: csstype.Property.CaptionSide | undefined;
2080
+ caretColor?: csstype.Property.CaretColor | undefined;
2081
+ caretShape?: csstype.Property.CaretShape | undefined;
2082
+ clear?: csstype.Property.Clear | undefined;
2083
+ clipPath?: csstype.Property.ClipPath | undefined;
2084
+ color?: csstype.Property.Color | undefined;
2085
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2086
+ colorScheme?: csstype.Property.ColorScheme | undefined;
2087
+ columnCount?: csstype.Property.ColumnCount | undefined;
2088
+ columnFill?: csstype.Property.ColumnFill | undefined;
2089
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
2090
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2091
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2092
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2093
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
2094
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2095
+ contain?: csstype.Property.Contain | undefined;
2096
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
2097
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
2098
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
2099
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
2100
+ containerName?: csstype.Property.ContainerName | undefined;
2101
+ containerType?: csstype.Property.ContainerType | undefined;
2102
+ content?: csstype.Property.Content | undefined;
2103
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
2104
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
2105
+ counterReset?: csstype.Property.CounterReset | undefined;
2106
+ counterSet?: csstype.Property.CounterSet | undefined;
2107
+ cursor?: csstype.Property.Cursor | undefined;
2108
+ direction?: csstype.Property.Direction | undefined;
2109
+ emptyCells?: csstype.Property.EmptyCells | undefined;
2110
+ filter?: csstype.Property.Filter | undefined;
2111
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2112
+ flexDirection?: csstype.Property.FlexDirection | undefined;
2113
+ flexGrow?: csstype.Property.FlexGrow | undefined;
2114
+ flexShrink?: csstype.Property.FlexShrink | undefined;
2115
+ flexWrap?: csstype.Property.FlexWrap | undefined;
2116
+ float?: csstype.Property.Float | undefined;
2117
+ fontFamily?: csstype.Property.FontFamily | undefined;
2118
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2119
+ fontKerning?: csstype.Property.FontKerning | undefined;
2120
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2121
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
2122
+ fontPalette?: csstype.Property.FontPalette | undefined;
2123
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
2124
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
2125
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
2126
+ fontStretch?: csstype.Property.FontStretch | undefined;
2127
+ fontStyle?: csstype.Property.FontStyle | undefined;
2128
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
2129
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
2130
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
2131
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
2132
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
2133
+ fontVariant?: csstype.Property.FontVariant | undefined;
2134
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
2135
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
2136
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
2137
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
2138
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
2139
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
2140
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
2141
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
2142
+ fontWeight?: csstype.Property.FontWeight | undefined;
2143
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
2144
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
2145
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
2146
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
2147
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
2148
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
2149
+ height?: csstype.Property.Height<string | number> | undefined;
2150
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
2151
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
2152
+ hyphens?: csstype.Property.Hyphens | undefined;
2153
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
2154
+ imageRendering?: csstype.Property.ImageRendering | undefined;
2155
+ imageResolution?: csstype.Property.ImageResolution | undefined;
2156
+ initialLetter?: csstype.Property.InitialLetter | undefined;
2157
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
2158
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
2159
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
2160
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
2161
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
2162
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2163
+ isolation?: csstype.Property.Isolation | undefined;
2164
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
2165
+ left?: csstype.Property.Left<string | number> | undefined;
2166
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
2167
+ lineBreak?: csstype.Property.LineBreak | undefined;
2168
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
2169
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
2170
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
2171
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
2172
+ listStyleType?: csstype.Property.ListStyleType | undefined;
2173
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
2174
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
2175
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
2176
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2177
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2178
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
2179
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
2180
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
2181
+ marginTrim?: csstype.Property.MarginTrim | undefined;
2182
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
2183
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
2184
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
2185
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
2186
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
2187
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
2188
+ maskClip?: csstype.Property.MaskClip | undefined;
2189
+ maskComposite?: csstype.Property.MaskComposite | undefined;
2190
+ maskImage?: csstype.Property.MaskImage | undefined;
2191
+ maskMode?: csstype.Property.MaskMode | undefined;
2192
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
2193
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
2194
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
2195
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
2196
+ maskType?: csstype.Property.MaskType | undefined;
2197
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
2198
+ mathDepth?: csstype.Property.MathDepth | undefined;
2199
+ mathShift?: csstype.Property.MathShift | undefined;
2200
+ mathStyle?: csstype.Property.MathStyle | undefined;
2201
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
2202
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
2203
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
2204
+ maxLines?: csstype.Property.MaxLines | undefined;
2205
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
2206
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
2207
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
2208
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
2209
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
2210
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
2211
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
2212
+ motionPath?: csstype.Property.OffsetPath | undefined;
2213
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
2214
+ objectFit?: csstype.Property.ObjectFit | undefined;
2215
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
2216
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
2217
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
2218
+ offsetPath?: csstype.Property.OffsetPath | undefined;
2219
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
2220
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
2221
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
2222
+ opacity?: csstype.Property.Opacity | undefined;
2223
+ order?: csstype.Property.Order | undefined;
2224
+ orphans?: csstype.Property.Orphans | undefined;
2225
+ outlineColor?: csstype.Property.OutlineColor | undefined;
2226
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
2227
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
2228
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
2229
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
2230
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
2231
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
2232
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
2233
+ overflowInline?: csstype.Property.OverflowInline | undefined;
2234
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
2235
+ overflowX?: csstype.Property.OverflowX | undefined;
2236
+ overflowY?: csstype.Property.OverflowY | undefined;
2237
+ overlay?: csstype.Property.Overlay | undefined;
2238
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
2239
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
2240
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
2241
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
2242
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
2243
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
2244
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
2245
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2246
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2247
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
2248
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
2249
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
2250
+ page?: csstype.Property.Page | undefined;
2251
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
2252
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
2253
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
2254
+ paintOrder?: csstype.Property.PaintOrder | undefined;
2255
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
2256
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2257
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
2258
+ position?: csstype.Property.Position | undefined;
2259
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2260
+ quotes?: csstype.Property.Quotes | undefined;
2261
+ resize?: csstype.Property.Resize | undefined;
2262
+ right?: csstype.Property.Right<string | number> | undefined;
2263
+ rotate?: csstype.Property.Rotate | undefined;
2264
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
2265
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
2266
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
2267
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
2268
+ scale?: csstype.Property.Scale | undefined;
2269
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
2270
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
2271
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
2272
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
2273
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
2274
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
2275
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
2276
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
2277
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
2278
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
2279
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
2280
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
2281
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
2282
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
2283
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
2284
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
2285
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
2286
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
2287
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
2288
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
2289
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
2290
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
2291
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
2292
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
2293
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
2294
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
2295
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
2296
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
2297
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
2298
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
2299
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
2300
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
2301
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
2302
+ tableLayout?: csstype.Property.TableLayout | undefined;
2303
+ textAlign?: csstype.Property.TextAlign | undefined;
2304
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
2305
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
2306
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2307
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2308
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
2309
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
2310
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2311
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
2312
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
2313
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
2314
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
2315
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
2316
+ textJustify?: csstype.Property.TextJustify | undefined;
2317
+ textOrientation?: csstype.Property.TextOrientation | undefined;
2318
+ textOverflow?: csstype.Property.TextOverflow | undefined;
2319
+ textRendering?: csstype.Property.TextRendering | undefined;
2320
+ textShadow?: csstype.Property.TextShadow | undefined;
2321
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2322
+ textTransform?: csstype.Property.TextTransform | undefined;
2323
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
2324
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
2325
+ textWrap?: csstype.Property.TextWrap | undefined;
2326
+ timelineScope?: csstype.Property.TimelineScope | undefined;
2327
+ top?: csstype.Property.Top<string | number> | undefined;
2328
+ touchAction?: csstype.Property.TouchAction | undefined;
2329
+ transform?: csstype.Property.Transform | undefined;
2330
+ transformBox?: csstype.Property.TransformBox | undefined;
2331
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2332
+ transformStyle?: csstype.Property.TransformStyle | undefined;
2333
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
2334
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2335
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2336
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
2337
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2338
+ translate?: csstype.Property.Translate<string | number> | undefined;
2339
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
2340
+ userSelect?: csstype.Property.UserSelect | undefined;
2341
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
2342
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
2343
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
2344
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
2345
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
2346
+ visibility?: csstype.Property.Visibility | undefined;
2347
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
2348
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
2349
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
2350
+ widows?: csstype.Property.Widows | undefined;
2351
+ width?: csstype.Property.Width<string | number> | undefined;
2352
+ willChange?: csstype.Property.WillChange | undefined;
2353
+ wordBreak?: csstype.Property.WordBreak | undefined;
2354
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
2355
+ wordWrap?: csstype.Property.WordWrap | undefined;
2356
+ writingMode?: csstype.Property.WritingMode | undefined;
2357
+ zIndex?: csstype.Property.ZIndex | undefined;
2358
+ zoom?: csstype.Property.Zoom | undefined;
2359
+ all?: csstype.Property.All | undefined;
2360
+ animation?: csstype.Property.Animation<string & {}> | undefined;
2361
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
2362
+ background?: csstype.Property.Background<string | number> | undefined;
2363
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
2364
+ border?: csstype.Property.Border<string | number> | undefined;
2365
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
2366
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
2367
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
2368
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
2369
+ borderColor?: csstype.Property.BorderColor | undefined;
2370
+ borderImage?: csstype.Property.BorderImage | undefined;
2371
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
2372
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
2373
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
2374
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
2375
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2376
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
2377
+ borderStyle?: csstype.Property.BorderStyle | undefined;
2378
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
2379
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
2380
+ caret?: csstype.Property.Caret | undefined;
2381
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2382
+ columns?: csstype.Property.Columns<string | number> | undefined;
2383
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
2384
+ container?: csstype.Property.Container | undefined;
2385
+ flex?: csstype.Property.Flex<string | number> | undefined;
2386
+ flexFlow?: csstype.Property.FlexFlow | undefined;
2387
+ font?: csstype.Property.Font | undefined;
2388
+ grid?: csstype.Property.Grid | undefined;
2389
+ gridArea?: csstype.Property.GridArea | undefined;
2390
+ inset?: csstype.Property.Inset<string | number> | undefined;
2391
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
2392
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
2393
+ lineClamp?: csstype.Property.LineClamp | undefined;
2394
+ listStyle?: csstype.Property.ListStyle | undefined;
2395
+ margin?: csstype.Property.Margin<string | number> | undefined;
2396
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
2397
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
2398
+ mask?: csstype.Property.Mask<string | number> | undefined;
2399
+ maskBorder?: csstype.Property.MaskBorder | undefined;
2400
+ motion?: csstype.Property.Offset<string | number> | undefined;
2401
+ offset?: csstype.Property.Offset<string | number> | undefined;
2402
+ outline?: csstype.Property.Outline<string | number> | undefined;
2403
+ overflow?: csstype.Property.Overflow | undefined;
2404
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
2405
+ padding?: csstype.Property.Padding<string | number> | undefined;
2406
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
2407
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
2408
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
2409
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
2410
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
2411
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
2412
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
2413
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
2414
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
2415
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
2416
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
2417
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
2418
+ transition?: csstype.Property.Transition<string & {}> | undefined;
2419
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
2420
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2421
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2422
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2423
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2424
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2425
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
2426
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2427
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2428
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
2429
+ MozBinding?: csstype.Property.MozBinding | undefined;
2430
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
2431
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2432
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2433
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2434
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
2435
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
2436
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2437
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2438
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
2439
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
2440
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
2441
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
2442
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2443
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2444
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2445
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2446
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
2447
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2448
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2449
+ MozHyphens?: csstype.Property.Hyphens | undefined;
2450
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
2451
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2452
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2453
+ MozOrient?: csstype.Property.MozOrient | undefined;
2454
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
2455
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2456
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
2457
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
2458
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
2459
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2460
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2461
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
2462
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
2463
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
2464
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2465
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
2466
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
2467
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
2468
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
2469
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
2470
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
2471
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
2472
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
2473
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
2474
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
2475
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
2476
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
2477
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
2478
+ msFilter?: csstype.Property.MsFilter | undefined;
2479
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
2480
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
2481
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
2482
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
2483
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
2484
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
2485
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
2486
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
2487
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
2488
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
2489
+ msHyphens?: csstype.Property.Hyphens | undefined;
2490
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
2491
+ msLineBreak?: csstype.Property.LineBreak | undefined;
2492
+ msOrder?: csstype.Property.Order | undefined;
2493
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
2494
+ msOverflowX?: csstype.Property.OverflowX | undefined;
2495
+ msOverflowY?: csstype.Property.OverflowY | undefined;
2496
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
2497
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
2498
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
2499
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
2500
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
2501
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
2502
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
2503
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
2504
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
2505
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
2506
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
2507
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
2508
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
2509
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
2510
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
2511
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
2512
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
2513
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
2514
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
2515
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
2516
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
2517
+ msTouchAction?: csstype.Property.TouchAction | undefined;
2518
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
2519
+ msTransform?: csstype.Property.Transform | undefined;
2520
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2521
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2522
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2523
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2524
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2525
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
2526
+ msWordBreak?: csstype.Property.WordBreak | undefined;
2527
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
2528
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
2529
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
2530
+ msWritingMode?: csstype.Property.WritingMode | undefined;
2531
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
2532
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
2533
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
2534
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2535
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2536
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2537
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2538
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2539
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
2540
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2541
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2542
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
2543
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
2544
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2545
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
2546
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2547
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2548
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
2549
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
2550
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
2551
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2552
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2553
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2554
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2555
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2556
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
2557
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
2558
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
2559
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
2560
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
2561
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
2562
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
2563
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2564
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2565
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2566
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
2567
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2568
+ WebkitFilter?: csstype.Property.Filter | undefined;
2569
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2570
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
2571
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
2572
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
2573
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
2574
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2575
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
2576
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
2577
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
2578
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
2579
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
2580
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
2581
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
2582
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
2583
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
2584
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2585
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2586
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
2587
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
2588
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
2589
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
2590
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
2591
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
2592
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
2593
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
2594
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
2595
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
2596
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
2597
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
2598
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
2599
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
2600
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
2601
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
2602
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
2603
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
2604
+ WebkitOrder?: csstype.Property.Order | undefined;
2605
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
2606
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2607
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2608
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
2609
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2610
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2611
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
2612
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
2613
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
2614
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
2615
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
2616
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2617
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2618
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
2619
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2620
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
2621
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
2622
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
2623
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
2624
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
2625
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2626
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
2627
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
2628
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
2629
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
2630
+ WebkitTransform?: csstype.Property.Transform | undefined;
2631
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2632
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
2633
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2634
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2635
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2636
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2637
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
2638
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
2639
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
2640
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
2641
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
2642
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2643
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
2644
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
2645
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
2646
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
2647
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
2648
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
2649
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
2650
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
2651
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
2652
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
2653
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
2654
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
2655
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2656
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2657
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
2658
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
2659
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
2660
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
2661
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
2662
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
2663
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
2664
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
2665
+ azimuth?: csstype.Property.Azimuth | undefined;
2666
+ boxAlign?: csstype.Property.BoxAlign | undefined;
2667
+ boxDirection?: csstype.Property.BoxDirection | undefined;
2668
+ boxFlex?: csstype.Property.BoxFlex | undefined;
2669
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2670
+ boxLines?: csstype.Property.BoxLines | undefined;
2671
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2672
+ boxOrient?: csstype.Property.BoxOrient | undefined;
2673
+ boxPack?: csstype.Property.BoxPack | undefined;
2674
+ clip?: csstype.Property.Clip | undefined;
2675
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
2676
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
2677
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
2678
+ imeMode?: csstype.Property.ImeMode | undefined;
2679
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
2680
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
2681
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
2682
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
2683
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
2684
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2685
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
2686
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
2687
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
2688
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
2689
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
2690
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
2691
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
2692
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
2693
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
2694
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2695
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
2696
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2697
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
2698
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
2699
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
2700
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
2701
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
2702
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2703
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
2704
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
2705
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2706
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2707
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2708
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2709
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2710
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2711
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2712
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
2713
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
2714
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
2715
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2716
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
2717
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
2718
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
2719
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
2720
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
2721
+ MozOpacity?: csstype.Property.Opacity | undefined;
2722
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
2723
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
2724
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
2725
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
2726
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
2727
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2728
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
2729
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2730
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2731
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2732
+ MozTransform?: csstype.Property.Transform | undefined;
2733
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2734
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
2735
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
2736
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2737
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2738
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2739
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2740
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
2741
+ msImeMode?: csstype.Property.ImeMode | undefined;
2742
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
2743
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2744
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2745
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2746
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2747
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2748
+ OAnimationName?: csstype.Property.AnimationName | undefined;
2749
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2750
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2751
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2752
+ OBorderImage?: csstype.Property.BorderImage | undefined;
2753
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
2754
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
2755
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
2756
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
2757
+ OTransform?: csstype.Property.Transform | undefined;
2758
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2759
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
2760
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2761
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2762
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2763
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2764
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
2765
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
2766
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
2767
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2768
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
2769
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2770
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
2771
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
2772
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
2773
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
2774
+ clipRule?: csstype.Property.ClipRule | undefined;
2775
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
2776
+ colorRendering?: csstype.Property.ColorRendering | undefined;
2777
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
2778
+ fill?: csstype.Property.Fill | undefined;
2779
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
2780
+ fillRule?: csstype.Property.FillRule | undefined;
2781
+ floodColor?: csstype.Property.FloodColor | undefined;
2782
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
2783
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
2784
+ lightingColor?: csstype.Property.LightingColor | undefined;
2785
+ marker?: csstype.Property.Marker | undefined;
2786
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
2787
+ markerMid?: csstype.Property.MarkerMid | undefined;
2788
+ markerStart?: csstype.Property.MarkerStart | undefined;
2789
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
2790
+ stopColor?: csstype.Property.StopColor | undefined;
2791
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
2792
+ stroke?: csstype.Property.Stroke | undefined;
2793
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
2794
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
2795
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
2796
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
2797
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
2798
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
2799
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
2800
+ textAnchor?: csstype.Property.TextAnchor | undefined;
2801
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
2802
+ };
2803
+ defaultChecked?: boolean | undefined;
2804
+ defaultValue?: string | number | readonly string[] | undefined;
2805
+ suppressContentEditableWarning?: boolean | undefined;
2806
+ suppressHydrationWarning?: boolean | undefined;
2807
+ accessKey?: string | undefined;
2808
+ autoFocus?: boolean | undefined;
2809
+ contentEditable?: (boolean | "false" | "true") | "inherit" | "plaintext-only" | undefined;
2810
+ contextMenu?: string | undefined;
2811
+ dir?: string | undefined;
2812
+ draggable?: (boolean | "false" | "true") | undefined;
2813
+ hidden?: boolean | undefined;
2814
+ id?: string | undefined;
2815
+ lang?: string | undefined;
2816
+ nonce?: string | undefined;
2817
+ slot?: string | undefined;
2818
+ spellCheck?: (boolean | "false" | "true") | undefined;
2819
+ tabIndex?: number | undefined;
2820
+ title?: string | undefined;
2821
+ translate?: "yes" | "no" | undefined;
2822
+ radioGroup?: string | undefined;
2823
+ role?: React__default.AriaRole | undefined;
2824
+ about?: string | undefined;
2825
+ content?: string | undefined;
2826
+ datatype?: string | undefined;
2827
+ inlist?: any;
2828
+ prefix?: string | undefined;
2829
+ property?: string | undefined;
2830
+ rel?: string | undefined;
2831
+ resource?: string | undefined;
2832
+ rev?: string | undefined;
2833
+ typeof?: string | undefined;
2834
+ vocab?: string | undefined;
2835
+ autoCapitalize?: string | undefined;
2836
+ autoCorrect?: string | undefined;
2837
+ autoSave?: string | undefined;
2838
+ color?: string | undefined;
2839
+ itemProp?: string | undefined;
2840
+ itemScope?: boolean | undefined;
2841
+ itemType?: string | undefined;
2842
+ itemID?: string | undefined;
2843
+ itemRef?: string | undefined;
2844
+ results?: number | undefined;
2845
+ security?: string | undefined;
2846
+ unselectable?: "on" | "off" | undefined;
2847
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
2848
+ is?: string | undefined;
2849
+ "aria-activedescendant"?: string | undefined;
2850
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
2851
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
2852
+ "aria-braillelabel"?: string | undefined;
2853
+ "aria-brailleroledescription"?: string | undefined;
2854
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
2855
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
2856
+ "aria-colcount"?: number | undefined;
2857
+ "aria-colindex"?: number | undefined;
2858
+ "aria-colindextext"?: string | undefined;
2859
+ "aria-colspan"?: number | undefined;
2860
+ "aria-controls"?: string | undefined;
2861
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
2862
+ "aria-describedby"?: string | undefined;
2863
+ "aria-description"?: string | undefined;
2864
+ "aria-details"?: string | undefined;
2865
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
2866
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
2867
+ "aria-errormessage"?: string | undefined;
2868
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
2869
+ "aria-flowto"?: string | undefined;
2870
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
2871
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
2872
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
2873
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
2874
+ "aria-keyshortcuts"?: string | undefined;
2875
+ "aria-label"?: string | undefined;
2876
+ "aria-labelledby"?: string | undefined;
2877
+ "aria-level"?: number | undefined;
2878
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
2879
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
2880
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
2881
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
2882
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
2883
+ "aria-owns"?: string | undefined;
2884
+ "aria-placeholder"?: string | undefined;
2885
+ "aria-posinset"?: number | undefined;
2886
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
2887
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
2888
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
2889
+ "aria-required"?: (boolean | "false" | "true") | undefined;
2890
+ "aria-roledescription"?: string | undefined;
2891
+ "aria-rowcount"?: number | undefined;
2892
+ "aria-rowindex"?: number | undefined;
2893
+ "aria-rowindextext"?: string | undefined;
2894
+ "aria-rowspan"?: number | undefined;
2895
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
2896
+ "aria-setsize"?: number | undefined;
2897
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
2898
+ "aria-valuemax"?: number | undefined;
2899
+ "aria-valuemin"?: number | undefined;
2900
+ "aria-valuenow"?: number | undefined;
2901
+ "aria-valuetext"?: string | undefined;
2902
+ dangerouslySetInnerHTML?: {
2903
+ __html: string | TrustedHTML;
2904
+ } | undefined;
2905
+ onCopy?: React__default.ClipboardEventHandler<HTMLDivElement> | undefined;
2906
+ onCopyCapture?: React__default.ClipboardEventHandler<HTMLDivElement> | undefined;
2907
+ onCut?: React__default.ClipboardEventHandler<HTMLDivElement> | undefined;
2908
+ onCutCapture?: React__default.ClipboardEventHandler<HTMLDivElement> | undefined;
2909
+ onPaste?: React__default.ClipboardEventHandler<HTMLDivElement> | undefined;
2910
+ onPasteCapture?: React__default.ClipboardEventHandler<HTMLDivElement> | undefined;
2911
+ onCompositionEnd?: React__default.CompositionEventHandler<HTMLDivElement> | undefined;
2912
+ onCompositionEndCapture?: React__default.CompositionEventHandler<HTMLDivElement> | undefined;
2913
+ onCompositionStart?: React__default.CompositionEventHandler<HTMLDivElement> | undefined;
2914
+ onCompositionStartCapture?: React__default.CompositionEventHandler<HTMLDivElement> | undefined;
2915
+ onCompositionUpdate?: React__default.CompositionEventHandler<HTMLDivElement> | undefined;
2916
+ onCompositionUpdateCapture?: React__default.CompositionEventHandler<HTMLDivElement> | undefined;
2917
+ onFocus?: React__default.FocusEventHandler<HTMLDivElement> | undefined;
2918
+ onFocusCapture?: React__default.FocusEventHandler<HTMLDivElement> | undefined;
2919
+ onBlur?: React__default.FocusEventHandler<HTMLDivElement> | undefined;
2920
+ onBlurCapture?: React__default.FocusEventHandler<HTMLDivElement> | undefined;
2921
+ onChange?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2922
+ onChangeCapture?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2923
+ onBeforeInput?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2924
+ onBeforeInputCapture?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2925
+ onInput?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2926
+ onInputCapture?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2927
+ onReset?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2928
+ onResetCapture?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2929
+ onSubmit?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2930
+ onSubmitCapture?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2931
+ onInvalid?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2932
+ onInvalidCapture?: React__default.FormEventHandler<HTMLDivElement> | undefined;
2933
+ onLoad?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2934
+ onLoadCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2935
+ onError?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2936
+ onErrorCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2937
+ onKeyDown?: React__default.KeyboardEventHandler<HTMLDivElement> | undefined;
2938
+ onKeyDownCapture?: React__default.KeyboardEventHandler<HTMLDivElement> | undefined;
2939
+ onKeyPress?: React__default.KeyboardEventHandler<HTMLDivElement> | undefined;
2940
+ onKeyPressCapture?: React__default.KeyboardEventHandler<HTMLDivElement> | undefined;
2941
+ onKeyUp?: React__default.KeyboardEventHandler<HTMLDivElement> | undefined;
2942
+ onKeyUpCapture?: React__default.KeyboardEventHandler<HTMLDivElement> | undefined;
2943
+ onAbort?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2944
+ onAbortCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2945
+ onCanPlay?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2946
+ onCanPlayCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2947
+ onCanPlayThrough?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2948
+ onCanPlayThroughCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2949
+ onDurationChange?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2950
+ onDurationChangeCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2951
+ onEmptied?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2952
+ onEmptiedCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2953
+ onEncrypted?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2954
+ onEncryptedCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2955
+ onEnded?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2956
+ onEndedCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2957
+ onLoadedData?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2958
+ onLoadedDataCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2959
+ onLoadedMetadata?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2960
+ onLoadedMetadataCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2961
+ onLoadStart?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2962
+ onLoadStartCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2963
+ onPause?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2964
+ onPauseCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2965
+ onPlay?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2966
+ onPlayCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2967
+ onPlaying?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2968
+ onPlayingCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2969
+ onProgress?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2970
+ onProgressCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2971
+ onRateChange?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2972
+ onRateChangeCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2973
+ onResize?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2974
+ onResizeCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2975
+ onSeeked?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2976
+ onSeekedCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2977
+ onSeeking?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2978
+ onSeekingCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2979
+ onStalled?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2980
+ onStalledCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2981
+ onSuspend?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2982
+ onSuspendCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2983
+ onTimeUpdate?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2984
+ onTimeUpdateCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2985
+ onVolumeChange?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2986
+ onVolumeChangeCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2987
+ onWaiting?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2988
+ onWaitingCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
2989
+ onAuxClick?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
2990
+ onAuxClickCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
2991
+ onClick?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
2992
+ onClickCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
2993
+ onContextMenu?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
2994
+ onContextMenuCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
2995
+ onDoubleClick?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
2996
+ onDoubleClickCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
2997
+ onDrag?: React__default.DragEventHandler<HTMLDivElement> | undefined;
2998
+ onDragCapture?: React__default.DragEventHandler<HTMLDivElement> | undefined;
2999
+ onDragEnd?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3000
+ onDragEndCapture?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3001
+ onDragEnter?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3002
+ onDragEnterCapture?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3003
+ onDragExit?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3004
+ onDragExitCapture?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3005
+ onDragLeave?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3006
+ onDragLeaveCapture?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3007
+ onDragOver?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3008
+ onDragOverCapture?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3009
+ onDragStart?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3010
+ onDragStartCapture?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3011
+ onDrop?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3012
+ onDropCapture?: React__default.DragEventHandler<HTMLDivElement> | undefined;
3013
+ onMouseDown?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3014
+ onMouseDownCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3015
+ onMouseEnter?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3016
+ onMouseLeave?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3017
+ onMouseMove?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3018
+ onMouseMoveCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3019
+ onMouseOut?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3020
+ onMouseOutCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3021
+ onMouseOver?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3022
+ onMouseOverCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3023
+ onMouseUp?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3024
+ onMouseUpCapture?: React__default.MouseEventHandler<HTMLDivElement> | undefined;
3025
+ onSelect?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
3026
+ onSelectCapture?: React__default.ReactEventHandler<HTMLDivElement> | undefined;
3027
+ onTouchCancel?: React__default.TouchEventHandler<HTMLDivElement> | undefined;
3028
+ onTouchCancelCapture?: React__default.TouchEventHandler<HTMLDivElement> | undefined;
3029
+ onTouchEnd?: React__default.TouchEventHandler<HTMLDivElement> | undefined;
3030
+ onTouchEndCapture?: React__default.TouchEventHandler<HTMLDivElement> | undefined;
3031
+ onTouchMove?: React__default.TouchEventHandler<HTMLDivElement> | undefined;
3032
+ onTouchMoveCapture?: React__default.TouchEventHandler<HTMLDivElement> | undefined;
3033
+ onTouchStart?: React__default.TouchEventHandler<HTMLDivElement> | undefined;
3034
+ onTouchStartCapture?: React__default.TouchEventHandler<HTMLDivElement> | undefined;
3035
+ onPointerDown?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3036
+ onPointerDownCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3037
+ onPointerMove?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3038
+ onPointerMoveCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3039
+ onPointerUp?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3040
+ onPointerUpCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3041
+ onPointerCancel?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3042
+ onPointerCancelCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3043
+ onPointerEnter?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3044
+ onPointerLeave?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3045
+ onPointerOver?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3046
+ onPointerOverCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3047
+ onPointerOut?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3048
+ onPointerOutCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3049
+ onGotPointerCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3050
+ onGotPointerCaptureCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3051
+ onLostPointerCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3052
+ onLostPointerCaptureCapture?: React__default.PointerEventHandler<HTMLDivElement> | undefined;
3053
+ onScroll?: React__default.UIEventHandler<HTMLDivElement> | undefined;
3054
+ onScrollCapture?: React__default.UIEventHandler<HTMLDivElement> | undefined;
3055
+ onWheel?: React__default.WheelEventHandler<HTMLDivElement> | undefined;
3056
+ onWheelCapture?: React__default.WheelEventHandler<HTMLDivElement> | undefined;
3057
+ onAnimationStart?: React__default.AnimationEventHandler<HTMLDivElement> | undefined;
3058
+ onAnimationStartCapture?: React__default.AnimationEventHandler<HTMLDivElement> | undefined;
3059
+ onAnimationEnd?: React__default.AnimationEventHandler<HTMLDivElement> | undefined;
3060
+ onAnimationEndCapture?: React__default.AnimationEventHandler<HTMLDivElement> | undefined;
3061
+ onAnimationIteration?: React__default.AnimationEventHandler<HTMLDivElement> | undefined;
3062
+ onAnimationIterationCapture?: React__default.AnimationEventHandler<HTMLDivElement> | undefined;
3063
+ onTransitionEnd?: React__default.TransitionEventHandler<HTMLDivElement> | undefined;
3064
+ onTransitionEndCapture?: React__default.TransitionEventHandler<HTMLDivElement> | undefined;
3065
+ className: string | undefined;
3066
+ }, HTMLElement>;
3067
+
3068
+ type FlexProps = {
3069
+ tag?: keyof React__default.ReactHTML;
3070
+ children?: React__default.ReactNode;
3071
+ className?: string;
3072
+ style?: React__default.CSSProperties;
3073
+ direction?: React__default.CSSProperties['flexDirection'];
3074
+ wrap?: React__default.CSSProperties['flexWrap'];
3075
+ basis?: React__default.CSSProperties['flexBasis'];
3076
+ grow?: React__default.CSSProperties['flexGrow'];
3077
+ shrink?: React__default.CSSProperties['flexShrink'];
3078
+ flow?: React__default.CSSProperties['flexFlow'];
3079
+ pc?: React__default.CSSProperties['placeContent'];
3080
+ pi?: React__default.CSSProperties['placeItems'];
3081
+ ps?: React__default.CSSProperties['placeSelf'];
3082
+ jc?: React__default.CSSProperties['justifyContent'];
3083
+ ji?: React__default.CSSProperties['justifyItems'];
3084
+ js?: React__default.CSSProperties['justifySelf'];
3085
+ ac?: React__default.CSSProperties['alignContent'];
3086
+ ai?: React__default.CSSProperties['alignItems'];
3087
+ as?: React__default.CSSProperties['alignSelf'];
3088
+ gap?: React__default.CSSProperties['gap'];
3089
+ };
3090
+ declare const Flex: ({ tag, children, className, style, direction, wrap, basis, grow, shrink, flow, pc, pi, ps, jc, ji, js, ac, ai, as, gap, }: FlexProps) => React__default.DetailedReactHTMLElement<{
3091
+ className: string | undefined;
3092
+ style: {
3093
+ display: "flex";
3094
+ gap?: csstype.Property.Gap<string | number> | undefined;
3095
+ alignSelf?: csstype.Property.AlignSelf | undefined;
3096
+ alignItems?: csstype.Property.AlignItems | undefined;
3097
+ alignContent?: csstype.Property.AlignContent | undefined;
3098
+ justifySelf?: csstype.Property.JustifySelf | undefined;
3099
+ justifyItems?: csstype.Property.JustifyItems | undefined;
3100
+ justifyContent?: csstype.Property.JustifyContent | undefined;
3101
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
3102
+ placeItems?: csstype.Property.PlaceItems | undefined;
3103
+ placeContent?: csstype.Property.PlaceContent | undefined;
3104
+ flexFlow?: csstype.Property.FlexFlow | undefined;
3105
+ flexShrink?: csstype.Property.FlexShrink | undefined;
3106
+ flexGrow?: csstype.Property.FlexGrow | undefined;
3107
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
3108
+ flexWrap?: csstype.Property.FlexWrap | undefined;
3109
+ flexDirection?: csstype.Property.FlexDirection | undefined;
3110
+ accentColor?: csstype.Property.AccentColor | undefined;
3111
+ alignTracks?: csstype.Property.AlignTracks | undefined;
3112
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
3113
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3114
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
3115
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3116
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
3117
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3118
+ animationName?: csstype.Property.AnimationName | undefined;
3119
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
3120
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
3121
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
3122
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
3123
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3124
+ appearance?: csstype.Property.Appearance | undefined;
3125
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
3126
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
3127
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3128
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
3129
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
3130
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
3131
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
3132
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
3133
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
3134
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
3135
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
3136
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
3137
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3138
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
3139
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
3140
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
3141
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
3142
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
3143
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
3144
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
3145
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
3146
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
3147
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
3148
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
3149
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
3150
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
3151
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
3152
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
3153
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
3154
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
3155
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
3156
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
3157
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
3158
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
3159
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
3160
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
3161
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
3162
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
3163
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
3164
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
3165
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
3166
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
3167
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
3168
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
3169
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
3170
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
3171
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
3172
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
3173
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
3174
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
3175
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
3176
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
3177
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
3178
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
3179
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
3180
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
3181
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
3182
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
3183
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
3184
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
3185
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
3186
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
3187
+ boxShadow?: csstype.Property.BoxShadow | undefined;
3188
+ boxSizing?: csstype.Property.BoxSizing | undefined;
3189
+ breakAfter?: csstype.Property.BreakAfter | undefined;
3190
+ breakBefore?: csstype.Property.BreakBefore | undefined;
3191
+ breakInside?: csstype.Property.BreakInside | undefined;
3192
+ captionSide?: csstype.Property.CaptionSide | undefined;
3193
+ caretColor?: csstype.Property.CaretColor | undefined;
3194
+ caretShape?: csstype.Property.CaretShape | undefined;
3195
+ clear?: csstype.Property.Clear | undefined;
3196
+ clipPath?: csstype.Property.ClipPath | undefined;
3197
+ color?: csstype.Property.Color | undefined;
3198
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3199
+ colorScheme?: csstype.Property.ColorScheme | undefined;
3200
+ columnCount?: csstype.Property.ColumnCount | undefined;
3201
+ columnFill?: csstype.Property.ColumnFill | undefined;
3202
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
3203
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
3204
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
3205
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
3206
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
3207
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
3208
+ contain?: csstype.Property.Contain | undefined;
3209
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
3210
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
3211
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
3212
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
3213
+ containerName?: csstype.Property.ContainerName | undefined;
3214
+ containerType?: csstype.Property.ContainerType | undefined;
3215
+ content?: csstype.Property.Content | undefined;
3216
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
3217
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
3218
+ counterReset?: csstype.Property.CounterReset | undefined;
3219
+ counterSet?: csstype.Property.CounterSet | undefined;
3220
+ cursor?: csstype.Property.Cursor | undefined;
3221
+ direction?: csstype.Property.Direction | undefined;
3222
+ emptyCells?: csstype.Property.EmptyCells | undefined;
3223
+ filter?: csstype.Property.Filter | undefined;
3224
+ float?: csstype.Property.Float | undefined;
3225
+ fontFamily?: csstype.Property.FontFamily | undefined;
3226
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3227
+ fontKerning?: csstype.Property.FontKerning | undefined;
3228
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
3229
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
3230
+ fontPalette?: csstype.Property.FontPalette | undefined;
3231
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
3232
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
3233
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
3234
+ fontStretch?: csstype.Property.FontStretch | undefined;
3235
+ fontStyle?: csstype.Property.FontStyle | undefined;
3236
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
3237
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
3238
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
3239
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
3240
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
3241
+ fontVariant?: csstype.Property.FontVariant | undefined;
3242
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
3243
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
3244
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
3245
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
3246
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
3247
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
3248
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
3249
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
3250
+ fontWeight?: csstype.Property.FontWeight | undefined;
3251
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
3252
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
3253
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
3254
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
3255
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
3256
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
3257
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
3258
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
3259
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
3260
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
3261
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
3262
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
3263
+ height?: csstype.Property.Height<string | number> | undefined;
3264
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
3265
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
3266
+ hyphens?: csstype.Property.Hyphens | undefined;
3267
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
3268
+ imageRendering?: csstype.Property.ImageRendering | undefined;
3269
+ imageResolution?: csstype.Property.ImageResolution | undefined;
3270
+ initialLetter?: csstype.Property.InitialLetter | undefined;
3271
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
3272
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
3273
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
3274
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
3275
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
3276
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
3277
+ isolation?: csstype.Property.Isolation | undefined;
3278
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
3279
+ left?: csstype.Property.Left<string | number> | undefined;
3280
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
3281
+ lineBreak?: csstype.Property.LineBreak | undefined;
3282
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
3283
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
3284
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
3285
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
3286
+ listStyleType?: csstype.Property.ListStyleType | undefined;
3287
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
3288
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
3289
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
3290
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3291
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3292
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
3293
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
3294
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
3295
+ marginTrim?: csstype.Property.MarginTrim | undefined;
3296
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
3297
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
3298
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
3299
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
3300
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
3301
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
3302
+ maskClip?: csstype.Property.MaskClip | undefined;
3303
+ maskComposite?: csstype.Property.MaskComposite | undefined;
3304
+ maskImage?: csstype.Property.MaskImage | undefined;
3305
+ maskMode?: csstype.Property.MaskMode | undefined;
3306
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
3307
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
3308
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
3309
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
3310
+ maskType?: csstype.Property.MaskType | undefined;
3311
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
3312
+ mathDepth?: csstype.Property.MathDepth | undefined;
3313
+ mathShift?: csstype.Property.MathShift | undefined;
3314
+ mathStyle?: csstype.Property.MathStyle | undefined;
3315
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
3316
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
3317
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
3318
+ maxLines?: csstype.Property.MaxLines | undefined;
3319
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
3320
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
3321
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
3322
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
3323
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
3324
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
3325
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
3326
+ motionPath?: csstype.Property.OffsetPath | undefined;
3327
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
3328
+ objectFit?: csstype.Property.ObjectFit | undefined;
3329
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
3330
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
3331
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
3332
+ offsetPath?: csstype.Property.OffsetPath | undefined;
3333
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
3334
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
3335
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
3336
+ opacity?: csstype.Property.Opacity | undefined;
3337
+ order?: csstype.Property.Order | undefined;
3338
+ orphans?: csstype.Property.Orphans | undefined;
3339
+ outlineColor?: csstype.Property.OutlineColor | undefined;
3340
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
3341
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
3342
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
3343
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
3344
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
3345
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
3346
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
3347
+ overflowInline?: csstype.Property.OverflowInline | undefined;
3348
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
3349
+ overflowX?: csstype.Property.OverflowX | undefined;
3350
+ overflowY?: csstype.Property.OverflowY | undefined;
3351
+ overlay?: csstype.Property.Overlay | undefined;
3352
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
3353
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
3354
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
3355
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
3356
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
3357
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
3358
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
3359
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3360
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3361
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
3362
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
3363
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
3364
+ page?: csstype.Property.Page | undefined;
3365
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
3366
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
3367
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
3368
+ paintOrder?: csstype.Property.PaintOrder | undefined;
3369
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
3370
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3371
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
3372
+ position?: csstype.Property.Position | undefined;
3373
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3374
+ quotes?: csstype.Property.Quotes | undefined;
3375
+ resize?: csstype.Property.Resize | undefined;
3376
+ right?: csstype.Property.Right<string | number> | undefined;
3377
+ rotate?: csstype.Property.Rotate | undefined;
3378
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
3379
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
3380
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
3381
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
3382
+ scale?: csstype.Property.Scale | undefined;
3383
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
3384
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
3385
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
3386
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
3387
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
3388
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
3389
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
3390
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
3391
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
3392
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
3393
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
3394
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
3395
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
3396
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
3397
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
3398
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
3399
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
3400
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
3401
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
3402
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
3403
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
3404
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
3405
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
3406
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
3407
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
3408
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
3409
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
3410
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
3411
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
3412
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
3413
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
3414
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
3415
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
3416
+ tableLayout?: csstype.Property.TableLayout | undefined;
3417
+ textAlign?: csstype.Property.TextAlign | undefined;
3418
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
3419
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
3420
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3421
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3422
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
3423
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
3424
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3425
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
3426
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
3427
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
3428
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
3429
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
3430
+ textJustify?: csstype.Property.TextJustify | undefined;
3431
+ textOrientation?: csstype.Property.TextOrientation | undefined;
3432
+ textOverflow?: csstype.Property.TextOverflow | undefined;
3433
+ textRendering?: csstype.Property.TextRendering | undefined;
3434
+ textShadow?: csstype.Property.TextShadow | undefined;
3435
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3436
+ textTransform?: csstype.Property.TextTransform | undefined;
3437
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
3438
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
3439
+ textWrap?: csstype.Property.TextWrap | undefined;
3440
+ timelineScope?: csstype.Property.TimelineScope | undefined;
3441
+ top?: csstype.Property.Top<string | number> | undefined;
3442
+ touchAction?: csstype.Property.TouchAction | undefined;
3443
+ transform?: csstype.Property.Transform | undefined;
3444
+ transformBox?: csstype.Property.TransformBox | undefined;
3445
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3446
+ transformStyle?: csstype.Property.TransformStyle | undefined;
3447
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
3448
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3449
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3450
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
3451
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3452
+ translate?: csstype.Property.Translate<string | number> | undefined;
3453
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
3454
+ userSelect?: csstype.Property.UserSelect | undefined;
3455
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
3456
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
3457
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
3458
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
3459
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
3460
+ visibility?: csstype.Property.Visibility | undefined;
3461
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
3462
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
3463
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
3464
+ widows?: csstype.Property.Widows | undefined;
3465
+ width?: csstype.Property.Width<string | number> | undefined;
3466
+ willChange?: csstype.Property.WillChange | undefined;
3467
+ wordBreak?: csstype.Property.WordBreak | undefined;
3468
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
3469
+ wordWrap?: csstype.Property.WordWrap | undefined;
3470
+ writingMode?: csstype.Property.WritingMode | undefined;
3471
+ zIndex?: csstype.Property.ZIndex | undefined;
3472
+ zoom?: csstype.Property.Zoom | undefined;
3473
+ all?: csstype.Property.All | undefined;
3474
+ animation?: csstype.Property.Animation<string & {}> | undefined;
3475
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
3476
+ background?: csstype.Property.Background<string | number> | undefined;
3477
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
3478
+ border?: csstype.Property.Border<string | number> | undefined;
3479
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
3480
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
3481
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
3482
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
3483
+ borderColor?: csstype.Property.BorderColor | undefined;
3484
+ borderImage?: csstype.Property.BorderImage | undefined;
3485
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
3486
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
3487
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
3488
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
3489
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3490
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
3491
+ borderStyle?: csstype.Property.BorderStyle | undefined;
3492
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
3493
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
3494
+ caret?: csstype.Property.Caret | undefined;
3495
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3496
+ columns?: csstype.Property.Columns<string | number> | undefined;
3497
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
3498
+ container?: csstype.Property.Container | undefined;
3499
+ flex?: csstype.Property.Flex<string | number> | undefined;
3500
+ font?: csstype.Property.Font | undefined;
3501
+ grid?: csstype.Property.Grid | undefined;
3502
+ gridArea?: csstype.Property.GridArea | undefined;
3503
+ gridColumn?: csstype.Property.GridColumn | undefined;
3504
+ gridRow?: csstype.Property.GridRow | undefined;
3505
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
3506
+ inset?: csstype.Property.Inset<string | number> | undefined;
3507
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
3508
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
3509
+ lineClamp?: csstype.Property.LineClamp | undefined;
3510
+ listStyle?: csstype.Property.ListStyle | undefined;
3511
+ margin?: csstype.Property.Margin<string | number> | undefined;
3512
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
3513
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
3514
+ mask?: csstype.Property.Mask<string | number> | undefined;
3515
+ maskBorder?: csstype.Property.MaskBorder | undefined;
3516
+ motion?: csstype.Property.Offset<string | number> | undefined;
3517
+ offset?: csstype.Property.Offset<string | number> | undefined;
3518
+ outline?: csstype.Property.Outline<string | number> | undefined;
3519
+ overflow?: csstype.Property.Overflow | undefined;
3520
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
3521
+ padding?: csstype.Property.Padding<string | number> | undefined;
3522
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
3523
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
3524
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
3525
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
3526
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
3527
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
3528
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
3529
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
3530
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
3531
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
3532
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
3533
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
3534
+ transition?: csstype.Property.Transition<string & {}> | undefined;
3535
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
3536
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3537
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3538
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3539
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3540
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3541
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
3542
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3543
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3544
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
3545
+ MozBinding?: csstype.Property.MozBinding | undefined;
3546
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
3547
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
3548
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
3549
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
3550
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
3551
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
3552
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
3553
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
3554
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
3555
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
3556
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
3557
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
3558
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
3559
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
3560
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
3561
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
3562
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
3563
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3564
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
3565
+ MozHyphens?: csstype.Property.Hyphens | undefined;
3566
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
3567
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3568
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3569
+ MozOrient?: csstype.Property.MozOrient | undefined;
3570
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
3571
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
3572
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
3573
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
3574
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
3575
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3576
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3577
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
3578
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
3579
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
3580
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3581
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
3582
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
3583
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
3584
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
3585
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
3586
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
3587
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
3588
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
3589
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
3590
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
3591
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
3592
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
3593
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
3594
+ msFilter?: csstype.Property.MsFilter | undefined;
3595
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
3596
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
3597
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
3598
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
3599
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
3600
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
3601
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
3602
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
3603
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
3604
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
3605
+ msHyphens?: csstype.Property.Hyphens | undefined;
3606
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
3607
+ msLineBreak?: csstype.Property.LineBreak | undefined;
3608
+ msOrder?: csstype.Property.Order | undefined;
3609
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
3610
+ msOverflowX?: csstype.Property.OverflowX | undefined;
3611
+ msOverflowY?: csstype.Property.OverflowY | undefined;
3612
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
3613
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
3614
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
3615
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
3616
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
3617
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
3618
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
3619
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
3620
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
3621
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
3622
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
3623
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
3624
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
3625
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
3626
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
3627
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
3628
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
3629
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
3630
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
3631
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
3632
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
3633
+ msTouchAction?: csstype.Property.TouchAction | undefined;
3634
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
3635
+ msTransform?: csstype.Property.Transform | undefined;
3636
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3637
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3638
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3639
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3640
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3641
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
3642
+ msWordBreak?: csstype.Property.WordBreak | undefined;
3643
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
3644
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
3645
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
3646
+ msWritingMode?: csstype.Property.WritingMode | undefined;
3647
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
3648
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
3649
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
3650
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3651
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3652
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3653
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3654
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3655
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
3656
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3657
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3658
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
3659
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
3660
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3661
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
3662
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
3663
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3664
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
3665
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
3666
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
3667
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
3668
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
3669
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
3670
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
3671
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
3672
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
3673
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
3674
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
3675
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
3676
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
3677
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
3678
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
3679
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
3680
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
3681
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
3682
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
3683
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
3684
+ WebkitFilter?: csstype.Property.Filter | undefined;
3685
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
3686
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
3687
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
3688
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
3689
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
3690
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3691
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
3692
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
3693
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
3694
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
3695
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
3696
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
3697
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
3698
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
3699
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
3700
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3701
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3702
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
3703
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
3704
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
3705
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
3706
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
3707
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
3708
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
3709
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
3710
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
3711
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
3712
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
3713
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
3714
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
3715
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
3716
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
3717
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
3718
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
3719
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
3720
+ WebkitOrder?: csstype.Property.Order | undefined;
3721
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
3722
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3723
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3724
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
3725
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3726
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3727
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
3728
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
3729
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
3730
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
3731
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
3732
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3733
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3734
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
3735
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3736
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
3737
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
3738
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
3739
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
3740
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
3741
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3742
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
3743
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
3744
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
3745
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
3746
+ WebkitTransform?: csstype.Property.Transform | undefined;
3747
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3748
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
3749
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3750
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3751
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3752
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3753
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
3754
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
3755
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
3756
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
3757
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
3758
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3759
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
3760
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
3761
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
3762
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
3763
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
3764
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
3765
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
3766
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
3767
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
3768
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
3769
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
3770
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
3771
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3772
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3773
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
3774
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
3775
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
3776
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
3777
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
3778
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
3779
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
3780
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
3781
+ azimuth?: csstype.Property.Azimuth | undefined;
3782
+ boxAlign?: csstype.Property.BoxAlign | undefined;
3783
+ boxDirection?: csstype.Property.BoxDirection | undefined;
3784
+ boxFlex?: csstype.Property.BoxFlex | undefined;
3785
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3786
+ boxLines?: csstype.Property.BoxLines | undefined;
3787
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3788
+ boxOrient?: csstype.Property.BoxOrient | undefined;
3789
+ boxPack?: csstype.Property.BoxPack | undefined;
3790
+ clip?: csstype.Property.Clip | undefined;
3791
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
3792
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
3793
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
3794
+ imeMode?: csstype.Property.ImeMode | undefined;
3795
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
3796
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
3797
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
3798
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
3799
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
3800
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
3801
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
3802
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
3803
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
3804
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
3805
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
3806
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
3807
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
3808
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
3809
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
3810
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3811
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
3812
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3813
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
3814
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
3815
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
3816
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
3817
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
3818
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3819
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
3820
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
3821
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
3822
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3823
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3824
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
3825
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
3826
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
3827
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
3828
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
3829
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
3830
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
3831
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3832
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
3833
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
3834
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
3835
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
3836
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
3837
+ MozOpacity?: csstype.Property.Opacity | undefined;
3838
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
3839
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
3840
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
3841
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
3842
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
3843
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3844
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
3845
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3846
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3847
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3848
+ MozTransform?: csstype.Property.Transform | undefined;
3849
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3850
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
3851
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
3852
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3853
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3854
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3855
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3856
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
3857
+ msImeMode?: csstype.Property.ImeMode | undefined;
3858
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
3859
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3860
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3861
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3862
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3863
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3864
+ OAnimationName?: csstype.Property.AnimationName | undefined;
3865
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3866
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3867
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3868
+ OBorderImage?: csstype.Property.BorderImage | undefined;
3869
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
3870
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
3871
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
3872
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
3873
+ OTransform?: csstype.Property.Transform | undefined;
3874
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3875
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
3876
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3877
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3878
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3879
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3880
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
3881
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
3882
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
3883
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3884
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
3885
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3886
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
3887
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
3888
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
3889
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
3890
+ clipRule?: csstype.Property.ClipRule | undefined;
3891
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
3892
+ colorRendering?: csstype.Property.ColorRendering | undefined;
3893
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
3894
+ fill?: csstype.Property.Fill | undefined;
3895
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
3896
+ fillRule?: csstype.Property.FillRule | undefined;
3897
+ floodColor?: csstype.Property.FloodColor | undefined;
3898
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
3899
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
3900
+ lightingColor?: csstype.Property.LightingColor | undefined;
3901
+ marker?: csstype.Property.Marker | undefined;
3902
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
3903
+ markerMid?: csstype.Property.MarkerMid | undefined;
3904
+ markerStart?: csstype.Property.MarkerStart | undefined;
3905
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
3906
+ stopColor?: csstype.Property.StopColor | undefined;
3907
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
3908
+ stroke?: csstype.Property.Stroke | undefined;
3909
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
3910
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
3911
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
3912
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
3913
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
3914
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
3915
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
3916
+ textAnchor?: csstype.Property.TextAnchor | undefined;
3917
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
3918
+ };
3919
+ }, HTMLElement>;
3920
+
3921
+ type SectionLayoutProps = {
3922
+ children?: React.ReactNode;
3923
+ className?: string;
3924
+ contentClassName?: string;
3925
+ style?: React.CSSProperties;
3926
+ padding?: string;
3927
+ fitHeightContent?: boolean;
3928
+ alignContent?: React.CSSProperties['alignContent'];
3929
+ };
3930
+ declare const SectionLayout: React$1.ForwardRefExoticComponent<SectionLayoutProps & React$1.RefAttributes<HTMLDivElement>>;
3931
+
3932
+ export { Accordion, AccordionItem, ActionModal, type ActionModalProps, AsideModal, AsidePosition, Breakpoints, Button, ButtonColor, type ButtonProps, ButtonVariant, Checkbox, ClickToCopy, CommonTheme, type CommonThemeEntity, ConfirmationModal, Controller, DarkTheme, DatePicker, type DeepPartial, FetchProvider, Field, type FieldProps, FieldVariant, Flex, FlipCard, Form, Grid, HoverCard, HttpClient, Icon, type IconNameT, IconNames, Image, InfinityScroll, Input, InputColor, type InputFieldProps, InputFile, InputPassword, type KeyValuesOf, LightTheme, Line, LineOrientation, LineStyle, Modal, ModalBackdrop, type ModalCommonProps, ModalComponent, type ModalNoOverlayProps, type ModalOverlayProps, type ModalProps, type PaletteThemeEntity, Radio, Ripple, SectionLayout, Select, SimpleLoader, SlideCard, Slider, SmartTable, Switch, THEME, Tabs, Tag, TagSize, Textarea, type ThemeColor, ThemeConstants, type ThemeConstantsEntity, type ThemeEntity, ThemeProvider, Tooltip, type TooltipProps, Typography, TypographyComponent, type TypographyEntity, TypographyVariant, TypographyVariants, TypographyVariantsClassNames, TypographyVariantsElements, TypographyWeight, useAccordionItem, useFetch, useMyTheme };