@kiva/kv-components 7.6.3 → 8.0.1

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 (336) hide show
  1. package/.eslintignore +5 -0
  2. package/.github/copilot-instructions.md +11 -0
  3. package/AGENTS.md +184 -0
  4. package/CLAUDE.md +11 -0
  5. package/GEMINI.md +11 -0
  6. package/dist/index.d.ts +3 -0
  7. package/dist/index.js +236 -216
  8. package/dist/utils/Alea.d.ts +9 -0
  9. package/dist/utils/Alea.js +23 -23
  10. package/dist/utils/arrayUtils.d.ts +3 -0
  11. package/dist/utils/arrayUtils.js +1 -1
  12. package/dist/utils/attrs.d.ts +6 -0
  13. package/dist/utils/carousels.d.ts +21 -0
  14. package/dist/utils/comparators.d.ts +3 -0
  15. package/dist/utils/comparators.js +20 -6
  16. package/dist/utils/debounce.d.ts +1 -0
  17. package/dist/utils/debounce.js +4 -4
  18. package/dist/utils/event.d.ts +1 -0
  19. package/dist/utils/event.js +7 -0
  20. package/dist/utils/expander.d.ts +14 -0
  21. package/dist/utils/imageUtils.d.ts +11 -0
  22. package/dist/utils/imageUtils.js +12 -12
  23. package/dist/utils/index.d.ts +21 -0
  24. package/dist/utils/loanCard.d.ts +35 -0
  25. package/dist/utils/loanCard.js +2 -2
  26. package/dist/utils/loanSearch/queryParamUtils.d.ts +1 -0
  27. package/dist/utils/loanUtils.d.ts +11 -0
  28. package/dist/utils/loanUtils.js +56 -53
  29. package/dist/utils/mapUtils.d.ts +5 -0
  30. package/dist/utils/markMatches.d.ts +1 -0
  31. package/dist/utils/paramCase.d.ts +1 -0
  32. package/dist/utils/printing.d.ts +2 -0
  33. package/dist/utils/scrollLock.d.ts +4 -0
  34. package/dist/utils/themeUtils.d.ts +12 -0
  35. package/dist/utils/throttle.d.ts +1 -0
  36. package/dist/utils/throttle.js +4 -4
  37. package/dist/utils/touchEvents.d.ts +3 -0
  38. package/dist/utils/touchEvents.js +9 -9
  39. package/dist/utils/treemap.d.ts +16 -0
  40. package/dist/utils/treemap.js +1 -1
  41. package/dist/vue/KvAccordionItem.js +28 -82
  42. package/dist/vue/KvAccordionItem.vue.d.ts +107 -0
  43. package/dist/vue/KvAccordionItem2.js +60 -0
  44. package/dist/vue/KvActivityRow.js +11 -22
  45. package/dist/vue/KvActivityRow.vue.d.ts +66 -0
  46. package/dist/vue/KvActivityRow2.js +16 -0
  47. package/dist/vue/KvAtbModal.css +1 -1
  48. package/dist/vue/KvAtbModal.js +68 -248
  49. package/dist/vue/KvAtbModal.vue.d.ts +359 -0
  50. package/dist/vue/KvAtbModal2.js +186 -0
  51. package/dist/vue/KvBorrowerImage.js +17 -118
  52. package/dist/vue/KvBorrowerImage.vue.d.ts +62 -0
  53. package/dist/vue/KvBorrowerImage2.js +106 -0
  54. package/dist/vue/KvButton.js +20 -164
  55. package/dist/vue/KvButton.vue.d.ts +94 -0
  56. package/dist/vue/KvButton2.js +149 -0
  57. package/dist/vue/KvCardFrame.js +12 -74
  58. package/dist/vue/KvCardFrame.vue.d.ts +86 -0
  59. package/dist/vue/KvCardFrame2.js +67 -0
  60. package/dist/vue/KvCarousel.css +1 -1
  61. package/dist/vue/KvCarousel.js +55 -192
  62. package/dist/vue/KvCarousel.vue.d.ts +135 -0
  63. package/dist/vue/KvCarousel2.js +142 -0
  64. package/dist/vue/KvCartModal.css +1 -1
  65. package/dist/vue/KvCartModal.js +31 -131
  66. package/dist/vue/KvCartModal.vue.d.ts +163 -0
  67. package/dist/vue/KvCartModal2.js +106 -0
  68. package/dist/vue/KvCartPill.js +12 -51
  69. package/dist/vue/KvCartPill.vue.d.ts +52 -0
  70. package/dist/vue/KvCartPill2.js +45 -0
  71. package/dist/vue/KvCheckbox.css +1 -1
  72. package/dist/vue/KvCheckbox.js +30 -126
  73. package/dist/vue/KvCheckbox.vue.d.ts +90 -0
  74. package/dist/vue/KvCheckbox2.js +102 -0
  75. package/dist/vue/KvCheckoutReceipt.css +1 -1
  76. package/dist/vue/KvCheckoutReceipt.js +120 -199
  77. package/dist/vue/KvCheckoutReceipt.vue.d.ts +164 -0
  78. package/dist/vue/KvCheckoutReceipt2.js +85 -0
  79. package/dist/vue/KvChip.js +12 -29
  80. package/dist/vue/KvChip.vue.d.ts +22 -0
  81. package/dist/vue/KvChip2.js +22 -0
  82. package/dist/vue/KvClassicLoanCard.css +1 -1
  83. package/dist/vue/KvClassicLoanCard.js +83 -351
  84. package/dist/vue/KvClassicLoanCard.vue.d.ts +2120 -0
  85. package/dist/vue/KvClassicLoanCard2.js +281 -0
  86. package/dist/vue/KvCommentsAdd.css +1 -1
  87. package/dist/vue/KvCommentsAdd.js +34 -81
  88. package/dist/vue/KvCommentsAdd.vue.d.ts +296 -0
  89. package/dist/vue/KvCommentsAdd2.js +57 -0
  90. package/dist/vue/KvCommentsContainer.js +15 -66
  91. package/dist/vue/KvCommentsContainer.vue.d.ts +954 -0
  92. package/dist/vue/KvCommentsContainer2.js +58 -0
  93. package/dist/vue/KvCommentsHeartButton.css +1 -1
  94. package/dist/vue/KvCommentsHeartButton.js +12 -51
  95. package/dist/vue/KvCommentsHeartButton.vue.d.ts +42 -0
  96. package/dist/vue/KvCommentsHeartButton2.js +44 -0
  97. package/dist/vue/KvCommentsList.js +9 -51
  98. package/dist/vue/KvCommentsList.vue.d.ts +619 -0
  99. package/dist/vue/KvCommentsList2.js +46 -0
  100. package/dist/vue/KvCommentsListItem.js +62 -186
  101. package/dist/vue/KvCommentsListItem.vue.d.ts +571 -0
  102. package/dist/vue/KvCommentsListItem2.js +135 -0
  103. package/dist/vue/KvCommentsReplyButton.css +1 -1
  104. package/dist/vue/KvCommentsReplyButton.js +8 -17
  105. package/dist/vue/KvCommentsReplyButton.vue.d.ts +98 -0
  106. package/dist/vue/KvCommentsReplyButton2.js +13 -0
  107. package/dist/vue/KvCompactLoanCard.css +1 -1
  108. package/dist/vue/KvCompactLoanCard.js +71 -327
  109. package/dist/vue/KvCompactLoanCard.vue.d.ts +1272 -0
  110. package/dist/vue/KvCompactLoanCard2.js +269 -0
  111. package/dist/vue/KvContentfulImg.js +51 -164
  112. package/dist/vue/KvContentfulImg.vue.d.ts +107 -0
  113. package/dist/vue/KvContentfulImg2.js +119 -0
  114. package/dist/vue/KvCountdownTimer.js +8 -28
  115. package/dist/vue/KvCountdownTimer.vue.d.ts +15 -0
  116. package/dist/vue/KvCountdownTimer2.js +26 -0
  117. package/dist/vue/KvDatePicker.js +21 -101
  118. package/dist/vue/KvDatePicker.vue.d.ts +58 -0
  119. package/dist/vue/KvDatePicker2.js +86 -0
  120. package/dist/vue/KvExpandable.js +9 -56
  121. package/dist/vue/KvExpandable.vue.d.ts +53 -0
  122. package/dist/vue/KvExpandable2.js +52 -0
  123. package/dist/vue/KvExpandableQuestion.js +23 -82
  124. package/dist/vue/KvExpandableQuestion.vue.d.ts +124 -0
  125. package/dist/vue/KvExpandableQuestion2.js +65 -0
  126. package/dist/vue/KvFlag.css +1 -1
  127. package/dist/vue/KvFlag.js +16 -617
  128. package/dist/vue/KvFlag.vue.d.ts +66 -0
  129. package/dist/vue/KvFlag2.js +606 -0
  130. package/dist/vue/KvGrid.js +7 -18
  131. package/dist/vue/KvGrid.vue.d.ts +14 -0
  132. package/dist/vue/KvGrid2.js +15 -0
  133. package/dist/vue/KvIconBag.js +12 -18
  134. package/dist/vue/KvIconBag.vue.d.ts +14 -0
  135. package/dist/vue/KvIconBag2.js +11 -0
  136. package/dist/vue/KvImpactDashboardHeader.vue.d.ts +17 -0
  137. package/dist/vue/KvImpactVerticalSelector.js +31 -110
  138. package/dist/vue/KvImpactVerticalSelector.vue.d.ts +278 -0
  139. package/dist/vue/KvImpactVerticalSelector2.js +85 -0
  140. package/dist/vue/KvInlineActivityCard.js +15 -44
  141. package/dist/vue/KvInlineActivityCard.vue.d.ts +71 -0
  142. package/dist/vue/KvInlineActivityCard2.js +35 -0
  143. package/dist/vue/KvInlineActivityFeed.css +1 -1
  144. package/dist/vue/KvInlineActivityFeed.js +11 -23
  145. package/dist/vue/KvInlineActivityFeed.vue.d.ts +85 -0
  146. package/dist/vue/KvInlineActivityFeed2.js +17 -0
  147. package/dist/vue/KvIntroductionLoanCard.css +1 -1
  148. package/dist/vue/KvIntroductionLoanCard.js +111 -309
  149. package/dist/vue/KvIntroductionLoanCard.vue.d.ts +617 -0
  150. package/dist/vue/KvIntroductionLoanCard2.js +209 -0
  151. package/dist/vue/KvLendAmountButton.js +9 -53
  152. package/dist/vue/KvLendAmountButton.vue.d.ts +140 -0
  153. package/dist/vue/KvLendAmountButton2.js +48 -0
  154. package/dist/vue/KvLendCta.css +1 -1
  155. package/dist/vue/KvLendCta.js +150 -530
  156. package/dist/vue/KvLendCta.vue.d.ts +583 -0
  157. package/dist/vue/KvLendCta2.js +387 -0
  158. package/dist/vue/KvLightbox.js +37 -148
  159. package/dist/vue/KvLightbox.vue.d.ts +77 -0
  160. package/dist/vue/KvLightbox2.js +117 -0
  161. package/dist/vue/KvLineGraph.js +25 -58
  162. package/dist/vue/KvLineGraph.vue.d.ts +35 -0
  163. package/dist/vue/KvLineGraph2.js +39 -0
  164. package/dist/vue/KvLoadingPlaceholder.vue.d.ts +2 -0
  165. package/dist/vue/KvLoadingSpinner.js +9 -34
  166. package/dist/vue/KvLoadingSpinner.vue.d.ts +27 -0
  167. package/dist/vue/KvLoadingSpinner2.js +29 -0
  168. package/dist/vue/KvLoanActivities.css +1 -1
  169. package/dist/vue/KvLoanActivities.js +37 -179
  170. package/dist/vue/KvLoanActivities.vue.d.ts +853 -0
  171. package/dist/vue/KvLoanActivities2.js +151 -0
  172. package/dist/vue/KvLoanBookmark.js +14 -40
  173. package/dist/vue/KvLoanBookmark.vue.d.ts +32 -0
  174. package/dist/vue/KvLoanBookmark2.js +32 -0
  175. package/dist/vue/KvLoanCallouts.css +1 -1
  176. package/dist/vue/KvLoanCallouts.js +10 -17
  177. package/dist/vue/KvLoanCallouts.vue.d.ts +18 -0
  178. package/dist/vue/KvLoanCallouts2.js +12 -0
  179. package/dist/vue/KvLoanInfoCard.js +20 -19
  180. package/dist/vue/KvLoanProgressGroup.css +1 -1
  181. package/dist/vue/KvLoanProgressGroup.js +18 -57
  182. package/dist/vue/KvLoanProgressGroup.vue.d.ts +108 -0
  183. package/dist/vue/KvLoanProgressGroup2.js +44 -0
  184. package/dist/vue/KvLoanTag.js +15 -103
  185. package/dist/vue/KvLoanTag.vue.d.ts +46 -0
  186. package/dist/vue/KvLoanTag2.js +94 -0
  187. package/dist/vue/KvLoanTeamPick.vue.d.ts +2 -0
  188. package/dist/vue/KvLoanUse.js +12 -100
  189. package/dist/vue/KvLoanUse.vue.d.ts +120 -0
  190. package/dist/vue/KvLoanUse2.js +95 -0
  191. package/dist/vue/KvLogo.vue.d.ts +2 -0
  192. package/dist/vue/KvMap.js +13 -381
  193. package/dist/vue/KvMap.vue.d.ts +213 -0
  194. package/dist/vue/KvMap2.js +376 -0
  195. package/dist/vue/KvMaterialIcon.js +10 -20
  196. package/dist/vue/KvMaterialIcon.vue.d.ts +14 -0
  197. package/dist/vue/KvMaterialIcon2.js +15 -0
  198. package/dist/vue/KvPageContainer.js +9 -8
  199. package/dist/vue/KvPageContainer.vue.d.ts +2 -0
  200. package/dist/vue/KvPageContainer2.js +4 -0
  201. package/dist/vue/KvPagination.js +38 -138
  202. package/dist/vue/KvPagination.vue.d.ts +107 -0
  203. package/dist/vue/KvPagination2.js +105 -0
  204. package/dist/vue/KvPieChart.css +1 -1
  205. package/dist/vue/KvPieChart.js +49 -128
  206. package/dist/vue/KvPieChart.vue.d.ts +47 -0
  207. package/dist/vue/KvPieChart2.js +85 -0
  208. package/dist/vue/KvPill.js +9 -19
  209. package/dist/vue/KvPill.vue.d.ts +23 -0
  210. package/dist/vue/KvPill2.js +15 -0
  211. package/dist/vue/KvPopper.js +14 -122
  212. package/dist/vue/KvPopper.vue.d.ts +80 -0
  213. package/dist/vue/KvPopper2.js +113 -0
  214. package/dist/vue/KvProgressBar.js +17 -112
  215. package/dist/vue/KvProgressBar.vue.d.ts +70 -0
  216. package/dist/vue/KvProgressBar2.js +101 -0
  217. package/dist/vue/KvPulsingDot.css +1 -1
  218. package/dist/vue/KvPulsingDot.js +11 -25
  219. package/dist/vue/KvPulsingDot.vue.d.ts +23 -0
  220. package/dist/vue/KvPulsingDot2.js +19 -0
  221. package/dist/vue/KvRadio.js +23 -106
  222. package/dist/vue/KvRadio.vue.d.ts +62 -0
  223. package/dist/vue/KvRadio2.js +89 -0
  224. package/dist/vue/KvSecondaryNav.css +1 -1
  225. package/dist/vue/KvSecondaryNav.js +46 -122
  226. package/dist/vue/KvSecondaryNav.vue.d.ts +117 -0
  227. package/dist/vue/KvSecondaryNav2.js +82 -0
  228. package/dist/vue/KvSelect.css +1 -1
  229. package/dist/vue/KvSelect.js +18 -78
  230. package/dist/vue/KvSelect.vue.d.ts +58 -0
  231. package/dist/vue/KvSelect2.js +66 -0
  232. package/dist/vue/KvSideSheet.js +44 -262
  233. package/dist/vue/KvSideSheet.vue.d.ts +136 -0
  234. package/dist/vue/KvSideSheet2.js +224 -0
  235. package/dist/vue/KvSwitch.js +23 -76
  236. package/dist/vue/KvSwitch.vue.d.ts +34 -0
  237. package/dist/vue/KvSwitch2.js +59 -0
  238. package/dist/vue/KvTab.js +15 -57
  239. package/dist/vue/KvTab.vue.d.ts +34 -0
  240. package/dist/vue/KvTab2.js +48 -0
  241. package/dist/vue/KvTabPanel.js +14 -36
  242. package/dist/vue/KvTabPanel.vue.d.ts +14 -0
  243. package/dist/vue/KvTabPanel2.js +28 -0
  244. package/dist/vue/KvTabs.js +21 -75
  245. package/dist/vue/KvTabs.vue.d.ts +22 -0
  246. package/dist/vue/KvTabs2.js +60 -0
  247. package/dist/vue/KvTextInput.js +28 -148
  248. package/dist/vue/KvTextInput.vue.d.ts +105 -0
  249. package/dist/vue/KvTextInput2.js +126 -0
  250. package/dist/vue/KvTextLink.js +13 -76
  251. package/dist/vue/KvTextLink.vue.d.ts +64 -0
  252. package/dist/vue/KvTextLink2.js +68 -0
  253. package/dist/vue/KvThemeProvider.js +8 -59
  254. package/dist/vue/KvThemeProvider.vue.d.ts +23 -0
  255. package/dist/vue/KvThemeProvider2.js +55 -0
  256. package/dist/vue/KvToast.js +32 -69
  257. package/dist/vue/KvToast.vue.d.ts +31 -0
  258. package/dist/vue/KvToast2.js +43 -0
  259. package/dist/vue/KvTooltip.css +1 -1
  260. package/dist/vue/KvTooltip.js +27 -123
  261. package/dist/vue/KvTooltip.vue.d.ts +2 -0
  262. package/dist/vue/KvTooltip2.js +103 -0
  263. package/dist/vue/KvTreeMapChart.css +1 -1
  264. package/dist/vue/KvTreeMapChart.js +28 -156
  265. package/dist/vue/KvTreeMapChart.vue.d.ts +60 -0
  266. package/dist/vue/KvTreeMapChart2.js +133 -0
  267. package/dist/vue/KvUserAvatar.js +28 -110
  268. package/dist/vue/KvUserAvatar.vue.d.ts +55 -0
  269. package/dist/vue/KvUserAvatar2.js +88 -0
  270. package/dist/vue/KvUtilityMenu.js +19 -95
  271. package/dist/vue/KvUtilityMenu.vue.d.ts +104 -0
  272. package/dist/vue/KvUtilityMenu2.js +81 -0
  273. package/dist/vue/KvVerticalCarousel.js +40 -137
  274. package/dist/vue/KvVerticalCarousel.vue.d.ts +90 -0
  275. package/dist/vue/KvVerticalCarousel2.js +103 -0
  276. package/dist/vue/KvVotingCard.css +1 -1
  277. package/dist/vue/KvVotingCard.js +31 -88
  278. package/dist/vue/KvVotingCard.vue.d.ts +249 -0
  279. package/dist/vue/KvVotingCard2.js +63 -0
  280. package/dist/vue/KvVotingCardV2.js +35 -90
  281. package/dist/vue/KvVotingCardV2.vue.d.ts +308 -0
  282. package/dist/vue/KvVotingCardV22.js +61 -0
  283. package/dist/vue/KvWideLoanCard.css +1 -1
  284. package/dist/vue/KvWideLoanCard.js +66 -274
  285. package/dist/vue/KvWideLoanCard.vue.d.ts +1191 -0
  286. package/dist/vue/KvWideLoanCard2.js +220 -0
  287. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu.js +34 -38
  288. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu.vue.d.ts +20 -0
  289. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu2.js +9 -0
  290. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink.js +20 -83
  291. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink.vue.d.ts +91 -0
  292. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink2.js +69 -0
  293. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.css +1 -1
  294. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.js +77 -248
  295. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.vue.d.ts +1071 -0
  296. package/dist/vue/KvWwwHeader/KvHeaderLinkBar2.js +178 -0
  297. package/dist/vue/KvWwwHeader/KvHeaderLogo.js +8 -12
  298. package/dist/vue/KvWwwHeader/KvHeaderLogo.vue.d.ts +4 -0
  299. package/dist/vue/KvWwwHeader/KvHeaderLogo2.js +9 -0
  300. package/dist/vue/KvWwwHeader/KvHeaderMenuLink.vue.d.ts +17 -0
  301. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.css +1 -1
  302. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.js +37 -91
  303. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.vue.d.ts +162 -0
  304. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu2.js +59 -0
  305. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu.js +36 -58
  306. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu.vue.d.ts +59 -0
  307. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu2.js +27 -0
  308. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu.js +20 -24
  309. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu.vue.d.ts +20 -0
  310. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu2.js +9 -0
  311. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.css +1 -1
  312. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.js +105 -181
  313. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.vue.d.ts +319 -0
  314. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu2.js +82 -0
  315. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.css +1 -1
  316. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.js +93 -173
  317. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.vue.d.ts +166 -0
  318. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu2.js +86 -0
  319. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu.js +17 -157
  320. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu.vue.d.ts +506 -0
  321. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu2.js +145 -0
  322. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.css +1 -1
  323. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.js +11 -18
  324. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.vue.d.ts +20 -0
  325. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList2.js +12 -0
  326. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList.js +10 -16
  327. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList.vue.d.ts +20 -0
  328. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList2.js +11 -0
  329. package/dist/vue/KvWwwHeader.css +1 -1
  330. package/dist/vue/KvWwwHeader.js +35 -148
  331. package/dist/vue/KvWwwHeader.vue.d.ts +4430 -0
  332. package/dist/vue/KvWwwHeader2.js +119 -0
  333. package/dist/vue/index.d.ts +86 -0
  334. package/package.json +35 -33
  335. package/tsconfig.json +32 -0
  336. package/vite.config.ts +84 -0
@@ -0,0 +1,4430 @@
1
+ import { CSSProperties } from 'vue';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ loggedIn: {
4
+ type: BooleanConstructor;
5
+ default: boolean;
6
+ };
7
+ basketCount: {
8
+ type: NumberConstructor;
9
+ default: number;
10
+ };
11
+ loginUrl: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ balance: {
16
+ type: NumberConstructor;
17
+ default: number;
18
+ };
19
+ isBasketDataLoading: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ isBorrower: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ isTrustee: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ isUserDataLoading: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ userId: {
36
+ type: NumberConstructor;
37
+ default: any;
38
+ };
39
+ myDashboardUrl: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ lenderName: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ lenderImageUrl: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ showMGUpsellLink: {
52
+ type: BooleanConstructor;
53
+ default: boolean;
54
+ };
55
+ countriesNotLentToUrl: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ }>, {
60
+ HEADER_HEIGHT: string;
61
+ emitLendMenuEvent: () => void;
62
+ isMobile: import('vue').Ref<boolean, boolean>;
63
+ linksVisible: import('vue').Ref<boolean, boolean>;
64
+ menuOpen: import('vue').Ref<boolean, boolean>;
65
+ isMobileMenuActive: import('vue').ComputedRef<boolean>;
66
+ onHover: (item?: any, menu?: any, targetPosition?: any) => void;
67
+ loadMenuData: (apollo: any) => void;
68
+ handleOverlayClick: () => void;
69
+ activeHeaderItem: import('vue').Ref<any, any>;
70
+ menuComponent: import('vue').ShallowRef<any, any>;
71
+ menuComponentInstance: import('vue').Ref<any, any>;
72
+ menuPosition: import('vue').Ref<{
73
+ [x: `--${string}`]: string | number;
74
+ accentColor?: import("csstype").Property.AccentColor | undefined;
75
+ alignContent?: import("csstype").Property.AlignContent | undefined;
76
+ alignItems?: import("csstype").Property.AlignItems | undefined;
77
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
78
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
79
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
80
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
81
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
82
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
83
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
84
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
85
+ animationName?: import("csstype").Property.AnimationName | undefined;
86
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
87
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number>;
88
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number>;
89
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
90
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
91
+ appearance?: import("csstype").Property.Appearance | undefined;
92
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
93
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
94
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
95
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
96
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
97
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
98
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
99
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
100
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
101
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number>;
102
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number>;
103
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
104
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
105
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
106
+ blockSize?: import("csstype").Property.BlockSize<string | number>;
107
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
108
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
109
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
110
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number>;
111
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
112
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
113
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number>;
114
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
115
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number>;
116
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
117
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
118
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
119
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
120
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number>;
121
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
122
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number>;
123
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number>;
124
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number>;
125
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
126
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
127
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
128
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number>;
129
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
130
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
131
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
132
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
133
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
134
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
135
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number>;
136
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
137
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number>;
138
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
139
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
140
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number>;
141
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
142
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
143
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number>;
144
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number>;
145
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number>;
146
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number>;
147
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
148
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
149
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
150
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
151
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number>;
152
+ bottom?: import("csstype").Property.Bottom<string | number>;
153
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
154
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
155
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
156
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
157
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
158
+ breakInside?: import("csstype").Property.BreakInside | undefined;
159
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
160
+ caretColor?: import("csstype").Property.CaretColor | undefined;
161
+ caretShape?: import("csstype").Property.CaretShape | undefined;
162
+ clear?: import("csstype").Property.Clear | undefined;
163
+ clipPath?: import("csstype").Property.ClipPath | undefined;
164
+ color?: import("csstype").Property.Color | undefined;
165
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
166
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
167
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
168
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
169
+ columnGap?: import("csstype").Property.ColumnGap<string | number>;
170
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
171
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
172
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
173
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
174
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number>;
175
+ contain?: import("csstype").Property.Contain | undefined;
176
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number>;
177
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number>;
178
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number>;
179
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number>;
180
+ containerName?: import("csstype").Property.ContainerName | undefined;
181
+ containerType?: import("csstype").Property.ContainerType | undefined;
182
+ content?: import("csstype").Property.Content | undefined;
183
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
184
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
185
+ counterReset?: import("csstype").Property.CounterReset | undefined;
186
+ counterSet?: import("csstype").Property.CounterSet | undefined;
187
+ cursor?: import("csstype").Property.Cursor | undefined;
188
+ direction?: import("csstype").Property.Direction | undefined;
189
+ display?: import("csstype").Property.Display | undefined;
190
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
191
+ filter?: import("csstype").Property.Filter | undefined;
192
+ flexBasis?: import("csstype").Property.FlexBasis<string | number>;
193
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
194
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
195
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
196
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
197
+ float?: import("csstype").Property.Float | undefined;
198
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
199
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
200
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
201
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
202
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
203
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
204
+ fontSize?: import("csstype").Property.FontSize<string | number>;
205
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
206
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number>;
207
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
208
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
209
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
210
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
211
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
212
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
213
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
214
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
215
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
216
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
217
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
218
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
219
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
220
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
221
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
222
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
223
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
224
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
225
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number>;
226
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
227
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number>;
228
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
229
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
230
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
231
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
232
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
233
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number>;
234
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number>;
235
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
236
+ height?: import("csstype").Property.Height<string | number>;
237
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
238
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
239
+ hyphens?: import("csstype").Property.Hyphens | undefined;
240
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
241
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
242
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
243
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
244
+ inlineSize?: import("csstype").Property.InlineSize<string | number>;
245
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
246
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
247
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
248
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
249
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
250
+ isolation?: import("csstype").Property.Isolation | undefined;
251
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
252
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
253
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
254
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
255
+ left?: import("csstype").Property.Left<string | number>;
256
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number>;
257
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
258
+ lineHeight?: import("csstype").Property.LineHeight<string | number>;
259
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number>;
260
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
261
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
262
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
263
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number>;
264
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number>;
265
+ marginBottom?: import("csstype").Property.MarginBottom<string | number>;
266
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
267
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number>;
268
+ marginLeft?: import("csstype").Property.MarginLeft<string | number>;
269
+ marginRight?: import("csstype").Property.MarginRight<string | number>;
270
+ marginTop?: import("csstype").Property.MarginTop<string | number>;
271
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
272
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
273
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
274
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
275
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
276
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
277
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
278
+ maskClip?: import("csstype").Property.MaskClip | undefined;
279
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
280
+ maskImage?: import("csstype").Property.MaskImage | undefined;
281
+ maskMode?: import("csstype").Property.MaskMode | undefined;
282
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
283
+ maskPosition?: import("csstype").Property.MaskPosition<string | number>;
284
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
285
+ maskSize?: import("csstype").Property.MaskSize<string | number>;
286
+ maskType?: import("csstype").Property.MaskType | undefined;
287
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
288
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
289
+ mathShift?: import("csstype").Property.MathShift | undefined;
290
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
291
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number>;
292
+ maxHeight?: import("csstype").Property.MaxHeight<string | number>;
293
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
294
+ maxLines?: import("csstype").Property.MaxLines | undefined;
295
+ maxWidth?: import("csstype").Property.MaxWidth<string | number>;
296
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number>;
297
+ minHeight?: import("csstype").Property.MinHeight<string | number>;
298
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number>;
299
+ minWidth?: import("csstype").Property.MinWidth<string | number>;
300
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
301
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number>;
302
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
303
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
304
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
305
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number>;
306
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number>;
307
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number>;
308
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
309
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number>;
310
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
311
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
312
+ opacity?: import("csstype").Property.Opacity | undefined;
313
+ order?: import("csstype").Property.Order | undefined;
314
+ orphans?: import("csstype").Property.Orphans | undefined;
315
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
316
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number>;
317
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
318
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
319
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
320
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
321
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
322
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number>;
323
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
324
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
325
+ overflowX?: import("csstype").Property.OverflowX | undefined;
326
+ overflowY?: import("csstype").Property.OverflowY | undefined;
327
+ overlay?: import("csstype").Property.Overlay | undefined;
328
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
329
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
330
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
331
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
332
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number>;
333
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number>;
334
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number>;
335
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
336
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number>;
337
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number>;
338
+ paddingRight?: import("csstype").Property.PaddingRight<string | number>;
339
+ paddingTop?: import("csstype").Property.PaddingTop<string | number>;
340
+ page?: import("csstype").Property.Page | undefined;
341
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
342
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
343
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
344
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
345
+ perspective?: import("csstype").Property.Perspective<string | number>;
346
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
347
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
348
+ position?: import("csstype").Property.Position | undefined;
349
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
350
+ quotes?: import("csstype").Property.Quotes | undefined;
351
+ resize?: import("csstype").Property.Resize | undefined;
352
+ right?: import("csstype").Property.Right<string | number>;
353
+ rotate?: import("csstype").Property.Rotate | undefined;
354
+ rowGap?: import("csstype").Property.RowGap<string | number>;
355
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
356
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
357
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
358
+ scale?: import("csstype").Property.Scale | undefined;
359
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
360
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number>;
361
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number>;
362
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
363
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number>;
364
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number>;
365
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
366
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
367
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
368
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number>;
369
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number>;
370
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number>;
371
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number>;
372
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number>;
373
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number>;
374
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number>;
375
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number>;
376
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
377
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
378
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
379
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
380
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
381
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
382
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
383
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
384
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
385
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
386
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
387
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
388
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
389
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
390
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
391
+ tabSize?: import("csstype").Property.TabSize<string | number>;
392
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
393
+ textAlign?: import("csstype").Property.TextAlign | undefined;
394
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
395
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
396
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
397
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
398
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
399
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
400
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
401
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number>;
402
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
403
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
404
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
405
+ textIndent?: import("csstype").Property.TextIndent<string | number>;
406
+ textJustify?: import("csstype").Property.TextJustify | undefined;
407
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
408
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
409
+ textRendering?: import("csstype").Property.TextRendering | undefined;
410
+ textShadow?: import("csstype").Property.TextShadow | undefined;
411
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
412
+ textTransform?: import("csstype").Property.TextTransform | undefined;
413
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number>;
414
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
415
+ textWrap?: import("csstype").Property.TextWrap | undefined;
416
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
417
+ top?: import("csstype").Property.Top<string | number>;
418
+ touchAction?: import("csstype").Property.TouchAction | undefined;
419
+ transform?: import("csstype").Property.Transform | undefined;
420
+ transformBox?: import("csstype").Property.TransformBox | undefined;
421
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
422
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
423
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
424
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
425
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
426
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
427
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
428
+ translate?: import("csstype").Property.Translate<string | number>;
429
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
430
+ userSelect?: import("csstype").Property.UserSelect | undefined;
431
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number>;
432
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
433
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number>;
434
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
435
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
436
+ visibility?: import("csstype").Property.Visibility | undefined;
437
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
438
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
439
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
440
+ widows?: import("csstype").Property.Widows | undefined;
441
+ width?: import("csstype").Property.Width<string | number>;
442
+ willChange?: import("csstype").Property.WillChange | undefined;
443
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
444
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number>;
445
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
446
+ writingMode?: import("csstype").Property.WritingMode | undefined;
447
+ zIndex?: import("csstype").Property.ZIndex | undefined;
448
+ zoom?: import("csstype").Property.Zoom | undefined;
449
+ all?: import("csstype").Property.All | undefined;
450
+ animation?: import("csstype").Property.Animation<string & {}>;
451
+ animationRange?: import("csstype").Property.AnimationRange<string | number>;
452
+ background?: import("csstype").Property.Background<string | number>;
453
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number>;
454
+ border?: import("csstype").Property.Border<string | number>;
455
+ borderBlock?: import("csstype").Property.BorderBlock<string | number>;
456
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number>;
457
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number>;
458
+ borderBottom?: import("csstype").Property.BorderBottom<string | number>;
459
+ borderColor?: import("csstype").Property.BorderColor | undefined;
460
+ borderImage?: import("csstype").Property.BorderImage | undefined;
461
+ borderInline?: import("csstype").Property.BorderInline<string | number>;
462
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number>;
463
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number>;
464
+ borderLeft?: import("csstype").Property.BorderLeft<string | number>;
465
+ borderRadius?: import("csstype").Property.BorderRadius<string | number>;
466
+ borderRight?: import("csstype").Property.BorderRight<string | number>;
467
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
468
+ borderTop?: import("csstype").Property.BorderTop<string | number>;
469
+ borderWidth?: import("csstype").Property.BorderWidth<string | number>;
470
+ caret?: import("csstype").Property.Caret | undefined;
471
+ columnRule?: import("csstype").Property.ColumnRule<string | number>;
472
+ columns?: import("csstype").Property.Columns<string | number>;
473
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number>;
474
+ container?: import("csstype").Property.Container | undefined;
475
+ flex?: import("csstype").Property.Flex<string | number>;
476
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
477
+ font?: import("csstype").Property.Font | undefined;
478
+ gap?: import("csstype").Property.Gap<string | number>;
479
+ grid?: import("csstype").Property.Grid | undefined;
480
+ gridArea?: import("csstype").Property.GridArea | undefined;
481
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
482
+ gridRow?: import("csstype").Property.GridRow | undefined;
483
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
484
+ inset?: import("csstype").Property.Inset<string | number>;
485
+ insetBlock?: import("csstype").Property.InsetBlock<string | number>;
486
+ insetInline?: import("csstype").Property.InsetInline<string | number>;
487
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
488
+ listStyle?: import("csstype").Property.ListStyle | undefined;
489
+ margin?: import("csstype").Property.Margin<string | number>;
490
+ marginBlock?: import("csstype").Property.MarginBlock<string | number>;
491
+ marginInline?: import("csstype").Property.MarginInline<string | number>;
492
+ mask?: import("csstype").Property.Mask<string | number>;
493
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
494
+ motion?: import("csstype").Property.Offset<string | number>;
495
+ offset?: import("csstype").Property.Offset<string | number>;
496
+ outline?: import("csstype").Property.Outline<string | number>;
497
+ overflow?: import("csstype").Property.Overflow | undefined;
498
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
499
+ padding?: import("csstype").Property.Padding<string | number>;
500
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number>;
501
+ paddingInline?: import("csstype").Property.PaddingInline<string | number>;
502
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
503
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
504
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
505
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number>;
506
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number>;
507
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number>;
508
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number>;
509
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number>;
510
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number>;
511
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number>;
512
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
513
+ textDecoration?: import("csstype").Property.TextDecoration<string | number>;
514
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
515
+ transition?: import("csstype").Property.Transition<string & {}>;
516
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
517
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
518
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
519
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
520
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
521
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
522
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
523
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
524
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
525
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
526
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
527
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
528
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
529
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
530
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
531
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
532
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
533
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
534
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
535
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
536
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
537
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
538
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
539
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
540
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
541
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
542
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
543
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
544
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
545
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
546
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
547
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
548
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
549
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
550
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
551
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
552
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number>;
553
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number>;
554
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number>;
555
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number>;
556
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
557
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
558
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
559
+ MozTabSize?: import("csstype").Property.TabSize<string | number>;
560
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
561
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
562
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
563
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
564
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
565
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
566
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
567
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
568
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
569
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
570
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
571
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
572
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
573
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
574
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
575
+ msFilter?: import("csstype").Property.MsFilter | undefined;
576
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
577
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
578
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
579
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
580
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number>;
581
+ msGridRows?: import("csstype").Property.MsGridRows<string | number>;
582
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
583
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
584
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
585
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number>;
586
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
587
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
588
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
589
+ msOrder?: import("csstype").Property.Order | undefined;
590
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
591
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
592
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
593
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
594
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number>;
595
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number>;
596
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number>;
597
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number>;
598
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
599
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
600
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
601
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
602
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
603
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
604
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
605
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
606
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
607
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
608
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
609
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
610
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
611
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
612
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
613
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
614
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
615
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
616
+ msTransform?: import("csstype").Property.Transform | undefined;
617
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
618
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
619
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
620
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
621
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
622
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
623
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
624
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
625
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number>;
626
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
627
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
628
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
629
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
630
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
631
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
632
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
633
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
634
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
635
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
636
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
637
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
638
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
639
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
640
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
641
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
642
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
643
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
644
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
645
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
646
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
647
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number>;
648
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
649
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
650
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
651
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
652
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
653
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
654
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number>;
655
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
656
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
657
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
658
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
659
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
660
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
661
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
662
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
663
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
664
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
665
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
666
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number>;
667
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
668
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
669
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
670
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
671
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
672
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
673
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
674
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
675
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
676
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
677
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
678
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
679
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
680
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
681
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
682
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
683
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
684
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
685
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
686
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
687
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
688
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
689
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
690
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
691
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
692
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
693
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number>;
694
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number>;
695
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number>;
696
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
697
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
698
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
699
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number>;
700
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
701
+ WebkitOrder?: import("csstype").Property.Order | undefined;
702
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
703
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
704
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
705
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number>;
706
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
707
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
708
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
709
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
710
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
711
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
712
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
713
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
714
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
715
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
716
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
717
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
718
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
719
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
720
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
721
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
722
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
723
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
724
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number>;
725
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
726
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
727
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
728
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
729
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
730
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
731
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
732
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
733
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
734
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
735
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
736
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
737
+ MozAnimation?: import("csstype").Property.Animation<string & {}>;
738
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
739
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number>;
740
+ MozColumns?: import("csstype").Property.Columns<string | number>;
741
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number>;
742
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
743
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
744
+ msFlex?: import("csstype").Property.Flex<string | number>;
745
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
746
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
747
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
748
+ msTransition?: import("csstype").Property.Transition<string & {}>;
749
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}>;
750
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number>;
751
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
752
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
753
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number>;
754
+ WebkitColumns?: import("csstype").Property.Columns<string | number>;
755
+ WebkitFlex?: import("csstype").Property.Flex<string | number>;
756
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
757
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number>;
758
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
759
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
760
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number>;
761
+ WebkitTransition?: import("csstype").Property.Transition<string & {}>;
762
+ azimuth?: import("csstype").Property.Azimuth | undefined;
763
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
764
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
765
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
766
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
767
+ boxLines?: import("csstype").Property.BoxLines | undefined;
768
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
769
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
770
+ boxPack?: import("csstype").Property.BoxPack | undefined;
771
+ clip?: import("csstype").Property.Clip | undefined;
772
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number>;
773
+ gridGap?: import("csstype").Property.GridGap<string | number>;
774
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number>;
775
+ imeMode?: import("csstype").Property.ImeMode | undefined;
776
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number>;
777
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
778
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
779
+ offsetInline?: import("csstype").Property.InsetInline<string | number>;
780
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
781
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
782
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number>;
783
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number>;
784
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
785
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
786
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
787
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
788
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
789
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
790
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
791
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
792
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
793
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
794
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
795
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
796
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
797
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
798
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
799
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
800
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
801
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
802
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
803
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
804
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
805
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
806
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number>;
807
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number>;
808
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number>;
809
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
810
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
811
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
812
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
813
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
814
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
815
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
816
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
817
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
818
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
819
+ MozOutline?: import("csstype").Property.Outline<string | number>;
820
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
821
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
822
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
823
+ MozPerspective?: import("csstype").Property.Perspective<string | number>;
824
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
825
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
826
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
827
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
828
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
829
+ MozTransform?: import("csstype").Property.Transform | undefined;
830
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
831
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
832
+ MozTransition?: import("csstype").Property.Transition<string & {}>;
833
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
834
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
835
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
836
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
837
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
838
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
839
+ OAnimation?: import("csstype").Property.Animation<string & {}>;
840
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
841
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
842
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
843
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
844
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
845
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
846
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
847
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
848
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
849
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
850
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
851
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number>;
852
+ OTabSize?: import("csstype").Property.TabSize<string | number>;
853
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
854
+ OTransform?: import("csstype").Property.Transform | undefined;
855
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
856
+ OTransition?: import("csstype").Property.Transition<string & {}>;
857
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
858
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
859
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
860
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
861
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
862
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
863
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
864
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
865
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
866
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
867
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
868
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
869
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
870
+ baselineShift?: import("csstype").Property.BaselineShift<string | number>;
871
+ clipRule?: import("csstype").Property.ClipRule | undefined;
872
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
873
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
874
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
875
+ fill?: import("csstype").Property.Fill | undefined;
876
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
877
+ fillRule?: import("csstype").Property.FillRule | undefined;
878
+ floodColor?: import("csstype").Property.FloodColor | undefined;
879
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
880
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
881
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
882
+ marker?: import("csstype").Property.Marker | undefined;
883
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
884
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
885
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
886
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
887
+ stopColor?: import("csstype").Property.StopColor | undefined;
888
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
889
+ stroke?: import("csstype").Property.Stroke | undefined;
890
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number>;
891
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number>;
892
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
893
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
894
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
895
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
896
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number>;
897
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
898
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
899
+ "accent-color"?: import("csstype").Property.AccentColor | undefined;
900
+ "align-content"?: import("csstype").Property.AlignContent | undefined;
901
+ "align-items"?: import("csstype").Property.AlignItems | undefined;
902
+ "align-self"?: import("csstype").Property.AlignSelf | undefined;
903
+ "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
904
+ "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
905
+ "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}>;
906
+ "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
907
+ "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}>;
908
+ "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
909
+ "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
910
+ "animation-name"?: import("csstype").Property.AnimationName | undefined;
911
+ "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
912
+ "animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number>;
913
+ "animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number>;
914
+ "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
915
+ "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
916
+ "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
917
+ "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
918
+ "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
919
+ "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
920
+ "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
921
+ "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
922
+ "background-color"?: import("csstype").Property.BackgroundColor | undefined;
923
+ "background-image"?: import("csstype").Property.BackgroundImage | undefined;
924
+ "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
925
+ "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number>;
926
+ "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number>;
927
+ "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
928
+ "background-size"?: import("csstype").Property.BackgroundSize<string | number>;
929
+ "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
930
+ "block-size"?: import("csstype").Property.BlockSize<string | number>;
931
+ "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
932
+ "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
933
+ "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
934
+ "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number>;
935
+ "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
936
+ "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
937
+ "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number>;
938
+ "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
939
+ "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number>;
940
+ "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
941
+ "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
942
+ "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number>;
943
+ "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
944
+ "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number>;
945
+ "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
946
+ "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number>;
947
+ "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number>;
948
+ "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number>;
949
+ "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
950
+ "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
951
+ "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
952
+ "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number>;
953
+ "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
954
+ "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
955
+ "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
956
+ "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number>;
957
+ "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
958
+ "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
959
+ "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number>;
960
+ "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
961
+ "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number>;
962
+ "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
963
+ "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
964
+ "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number>;
965
+ "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
966
+ "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
967
+ "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number>;
968
+ "border-spacing"?: import("csstype").Property.BorderSpacing<string | number>;
969
+ "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number>;
970
+ "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number>;
971
+ "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
972
+ "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number>;
973
+ "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number>;
974
+ "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
975
+ "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number>;
976
+ "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
977
+ "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
978
+ "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
979
+ "break-after"?: import("csstype").Property.BreakAfter | undefined;
980
+ "break-before"?: import("csstype").Property.BreakBefore | undefined;
981
+ "break-inside"?: import("csstype").Property.BreakInside | undefined;
982
+ "caption-side"?: import("csstype").Property.CaptionSide | undefined;
983
+ "caret-color"?: import("csstype").Property.CaretColor | undefined;
984
+ "caret-shape"?: import("csstype").Property.CaretShape | undefined;
985
+ "clip-path"?: import("csstype").Property.ClipPath | undefined;
986
+ "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
987
+ "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
988
+ "column-count"?: import("csstype").Property.ColumnCount | undefined;
989
+ "column-fill"?: import("csstype").Property.ColumnFill | undefined;
990
+ "column-gap"?: import("csstype").Property.ColumnGap<string | number>;
991
+ "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
992
+ "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
993
+ "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number>;
994
+ "column-span"?: import("csstype").Property.ColumnSpan | undefined;
995
+ "column-width"?: import("csstype").Property.ColumnWidth<string | number>;
996
+ "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number>;
997
+ "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number>;
998
+ "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number>;
999
+ "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number>;
1000
+ "container-name"?: import("csstype").Property.ContainerName | undefined;
1001
+ "container-type"?: import("csstype").Property.ContainerType | undefined;
1002
+ "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
1003
+ "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
1004
+ "counter-reset"?: import("csstype").Property.CounterReset | undefined;
1005
+ "counter-set"?: import("csstype").Property.CounterSet | undefined;
1006
+ "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
1007
+ "flex-basis"?: import("csstype").Property.FlexBasis<string | number>;
1008
+ "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1009
+ "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1010
+ "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1011
+ "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1012
+ "font-family"?: import("csstype").Property.FontFamily | undefined;
1013
+ "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1014
+ "font-kerning"?: import("csstype").Property.FontKerning | undefined;
1015
+ "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1016
+ "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
1017
+ "font-palette"?: import("csstype").Property.FontPalette | undefined;
1018
+ "font-size"?: import("csstype").Property.FontSize<string | number>;
1019
+ "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
1020
+ "font-smooth"?: import("csstype").Property.FontSmooth<string | number>;
1021
+ "font-stretch"?: import("csstype").Property.FontStretch | undefined;
1022
+ "font-style"?: import("csstype").Property.FontStyle | undefined;
1023
+ "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
1024
+ "font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
1025
+ "font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1026
+ "font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
1027
+ "font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
1028
+ "font-variant"?: import("csstype").Property.FontVariant | undefined;
1029
+ "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
1030
+ "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
1031
+ "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
1032
+ "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
1033
+ "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1034
+ "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
1035
+ "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
1036
+ "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
1037
+ "font-weight"?: import("csstype").Property.FontWeight | undefined;
1038
+ "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
1039
+ "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number>;
1040
+ "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
1041
+ "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number>;
1042
+ "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
1043
+ "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
1044
+ "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
1045
+ "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
1046
+ "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
1047
+ "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number>;
1048
+ "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number>;
1049
+ "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
1050
+ "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1051
+ "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
1052
+ "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
1053
+ "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
1054
+ "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
1055
+ "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1056
+ "inline-size"?: import("csstype").Property.InlineSize<string | number>;
1057
+ "input-security"?: import("csstype").Property.InputSecurity | undefined;
1058
+ "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number>;
1059
+ "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number>;
1060
+ "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number>;
1061
+ "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number>;
1062
+ "justify-content"?: import("csstype").Property.JustifyContent | undefined;
1063
+ "justify-items"?: import("csstype").Property.JustifyItems | undefined;
1064
+ "justify-self"?: import("csstype").Property.JustifySelf | undefined;
1065
+ "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
1066
+ "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number>;
1067
+ "line-break"?: import("csstype").Property.LineBreak | undefined;
1068
+ "line-height"?: import("csstype").Property.LineHeight<string | number>;
1069
+ "line-height-step"?: import("csstype").Property.LineHeightStep<string | number>;
1070
+ "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
1071
+ "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
1072
+ "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
1073
+ "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number>;
1074
+ "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number>;
1075
+ "margin-bottom"?: import("csstype").Property.MarginBottom<string | number>;
1076
+ "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number>;
1077
+ "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number>;
1078
+ "margin-left"?: import("csstype").Property.MarginLeft<string | number>;
1079
+ "margin-right"?: import("csstype").Property.MarginRight<string | number>;
1080
+ "margin-top"?: import("csstype").Property.MarginTop<string | number>;
1081
+ "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
1082
+ "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
1083
+ "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number>;
1084
+ "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1085
+ "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1086
+ "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
1087
+ "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number>;
1088
+ "mask-clip"?: import("csstype").Property.MaskClip | undefined;
1089
+ "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
1090
+ "mask-image"?: import("csstype").Property.MaskImage | undefined;
1091
+ "mask-mode"?: import("csstype").Property.MaskMode | undefined;
1092
+ "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
1093
+ "mask-position"?: import("csstype").Property.MaskPosition<string | number>;
1094
+ "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
1095
+ "mask-size"?: import("csstype").Property.MaskSize<string | number>;
1096
+ "mask-type"?: import("csstype").Property.MaskType | undefined;
1097
+ "masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
1098
+ "math-depth"?: import("csstype").Property.MathDepth | undefined;
1099
+ "math-shift"?: import("csstype").Property.MathShift | undefined;
1100
+ "math-style"?: import("csstype").Property.MathStyle | undefined;
1101
+ "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number>;
1102
+ "max-height"?: import("csstype").Property.MaxHeight<string | number>;
1103
+ "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number>;
1104
+ "max-lines"?: import("csstype").Property.MaxLines | undefined;
1105
+ "max-width"?: import("csstype").Property.MaxWidth<string | number>;
1106
+ "min-block-size"?: import("csstype").Property.MinBlockSize<string | number>;
1107
+ "min-height"?: import("csstype").Property.MinHeight<string | number>;
1108
+ "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number>;
1109
+ "min-width"?: import("csstype").Property.MinWidth<string | number>;
1110
+ "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
1111
+ "motion-distance"?: import("csstype").Property.OffsetDistance<string | number>;
1112
+ "motion-path"?: import("csstype").Property.OffsetPath | undefined;
1113
+ "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1114
+ "object-fit"?: import("csstype").Property.ObjectFit | undefined;
1115
+ "object-position"?: import("csstype").Property.ObjectPosition<string | number>;
1116
+ "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number>;
1117
+ "offset-distance"?: import("csstype").Property.OffsetDistance<string | number>;
1118
+ "offset-path"?: import("csstype").Property.OffsetPath | undefined;
1119
+ "offset-position"?: import("csstype").Property.OffsetPosition<string | number>;
1120
+ "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
1121
+ "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1122
+ "outline-color"?: import("csstype").Property.OutlineColor | undefined;
1123
+ "outline-offset"?: import("csstype").Property.OutlineOffset<string | number>;
1124
+ "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1125
+ "outline-width"?: import("csstype").Property.OutlineWidth<string | number>;
1126
+ "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
1127
+ "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
1128
+ "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
1129
+ "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number>;
1130
+ "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
1131
+ "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
1132
+ "overflow-x"?: import("csstype").Property.OverflowX | undefined;
1133
+ "overflow-y"?: import("csstype").Property.OverflowY | undefined;
1134
+ "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1135
+ "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1136
+ "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
1137
+ "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
1138
+ "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number>;
1139
+ "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number>;
1140
+ "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number>;
1141
+ "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number>;
1142
+ "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number>;
1143
+ "padding-left"?: import("csstype").Property.PaddingLeft<string | number>;
1144
+ "padding-right"?: import("csstype").Property.PaddingRight<string | number>;
1145
+ "padding-top"?: import("csstype").Property.PaddingTop<string | number>;
1146
+ "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
1147
+ "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
1148
+ "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
1149
+ "paint-order"?: import("csstype").Property.PaintOrder | undefined;
1150
+ "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number>;
1151
+ "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
1152
+ "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1153
+ "row-gap"?: import("csstype").Property.RowGap<string | number>;
1154
+ "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
1155
+ "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
1156
+ "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1157
+ "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
1158
+ "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number>;
1159
+ "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number>;
1160
+ "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number>;
1161
+ "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number>;
1162
+ "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number>;
1163
+ "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number>;
1164
+ "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number>;
1165
+ "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number>;
1166
+ "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number>;
1167
+ "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number>;
1168
+ "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number>;
1169
+ "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number>;
1170
+ "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number>;
1171
+ "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number>;
1172
+ "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number>;
1173
+ "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number>;
1174
+ "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
1175
+ "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number>;
1176
+ "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number>;
1177
+ "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number>;
1178
+ "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number>;
1179
+ "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
1180
+ "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
1181
+ "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
1182
+ "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
1183
+ "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
1184
+ "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
1185
+ "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
1186
+ "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
1187
+ "shape-margin"?: import("csstype").Property.ShapeMargin<string | number>;
1188
+ "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
1189
+ "tab-size"?: import("csstype").Property.TabSize<string | number>;
1190
+ "table-layout"?: import("csstype").Property.TableLayout | undefined;
1191
+ "text-align"?: import("csstype").Property.TextAlign | undefined;
1192
+ "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
1193
+ "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
1194
+ "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1195
+ "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1196
+ "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
1197
+ "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
1198
+ "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1199
+ "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number>;
1200
+ "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
1201
+ "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
1202
+ "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
1203
+ "text-indent"?: import("csstype").Property.TextIndent<string | number>;
1204
+ "text-justify"?: import("csstype").Property.TextJustify | undefined;
1205
+ "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
1206
+ "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1207
+ "text-rendering"?: import("csstype").Property.TextRendering | undefined;
1208
+ "text-shadow"?: import("csstype").Property.TextShadow | undefined;
1209
+ "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1210
+ "text-transform"?: import("csstype").Property.TextTransform | undefined;
1211
+ "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number>;
1212
+ "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
1213
+ "text-wrap"?: import("csstype").Property.TextWrap | undefined;
1214
+ "timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
1215
+ "touch-action"?: import("csstype").Property.TouchAction | undefined;
1216
+ "transform-box"?: import("csstype").Property.TransformBox | undefined;
1217
+ "transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
1218
+ "transform-style"?: import("csstype").Property.TransformStyle | undefined;
1219
+ "transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
1220
+ "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
1221
+ "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
1222
+ "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1223
+ "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1224
+ "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
1225
+ "user-select"?: import("csstype").Property.UserSelect | undefined;
1226
+ "vertical-align"?: import("csstype").Property.VerticalAlign<string | number>;
1227
+ "view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
1228
+ "view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number>;
1229
+ "view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
1230
+ "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
1231
+ "white-space"?: import("csstype").Property.WhiteSpace | undefined;
1232
+ "white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1233
+ "white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
1234
+ "will-change"?: import("csstype").Property.WillChange | undefined;
1235
+ "word-break"?: import("csstype").Property.WordBreak | undefined;
1236
+ "word-spacing"?: import("csstype").Property.WordSpacing<string | number>;
1237
+ "word-wrap"?: import("csstype").Property.WordWrap | undefined;
1238
+ "writing-mode"?: import("csstype").Property.WritingMode | undefined;
1239
+ "z-index"?: import("csstype").Property.ZIndex | undefined;
1240
+ "animation-range"?: import("csstype").Property.AnimationRange<string | number>;
1241
+ "background-position"?: import("csstype").Property.BackgroundPosition<string | number>;
1242
+ "border-block"?: import("csstype").Property.BorderBlock<string | number>;
1243
+ "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number>;
1244
+ "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number>;
1245
+ "border-bottom"?: import("csstype").Property.BorderBottom<string | number>;
1246
+ "border-color"?: import("csstype").Property.BorderColor | undefined;
1247
+ "border-image"?: import("csstype").Property.BorderImage | undefined;
1248
+ "border-inline"?: import("csstype").Property.BorderInline<string | number>;
1249
+ "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number>;
1250
+ "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number>;
1251
+ "border-left"?: import("csstype").Property.BorderLeft<string | number>;
1252
+ "border-radius"?: import("csstype").Property.BorderRadius<string | number>;
1253
+ "border-right"?: import("csstype").Property.BorderRight<string | number>;
1254
+ "border-style"?: import("csstype").Property.BorderStyle | undefined;
1255
+ "border-top"?: import("csstype").Property.BorderTop<string | number>;
1256
+ "border-width"?: import("csstype").Property.BorderWidth<string | number>;
1257
+ "column-rule"?: import("csstype").Property.ColumnRule<string | number>;
1258
+ "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number>;
1259
+ "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
1260
+ "grid-area"?: import("csstype").Property.GridArea | undefined;
1261
+ "grid-column"?: import("csstype").Property.GridColumn | undefined;
1262
+ "grid-row"?: import("csstype").Property.GridRow | undefined;
1263
+ "grid-template"?: import("csstype").Property.GridTemplate | undefined;
1264
+ "inset-block"?: import("csstype").Property.InsetBlock<string | number>;
1265
+ "inset-inline"?: import("csstype").Property.InsetInline<string | number>;
1266
+ "line-clamp"?: import("csstype").Property.LineClamp | undefined;
1267
+ "list-style"?: import("csstype").Property.ListStyle | undefined;
1268
+ "margin-block"?: import("csstype").Property.MarginBlock<string | number>;
1269
+ "margin-inline"?: import("csstype").Property.MarginInline<string | number>;
1270
+ "mask-border"?: import("csstype").Property.MaskBorder | undefined;
1271
+ "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
1272
+ "padding-block"?: import("csstype").Property.PaddingBlock<string | number>;
1273
+ "padding-inline"?: import("csstype").Property.PaddingInline<string | number>;
1274
+ "place-content"?: import("csstype").Property.PlaceContent | undefined;
1275
+ "place-items"?: import("csstype").Property.PlaceItems | undefined;
1276
+ "place-self"?: import("csstype").Property.PlaceSelf | undefined;
1277
+ "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number>;
1278
+ "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number>;
1279
+ "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number>;
1280
+ "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number>;
1281
+ "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number>;
1282
+ "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number>;
1283
+ "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number>;
1284
+ "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
1285
+ "text-decoration"?: import("csstype").Property.TextDecoration<string | number>;
1286
+ "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
1287
+ "view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
1288
+ "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}>;
1289
+ "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1290
+ "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}>;
1291
+ "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1292
+ "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1293
+ "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
1294
+ "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1295
+ "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1296
+ "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
1297
+ "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
1298
+ "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
1299
+ "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
1300
+ "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
1301
+ "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number>;
1302
+ "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
1303
+ "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
1304
+ "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
1305
+ "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
1306
+ "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
1307
+ "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1308
+ "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
1309
+ "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
1310
+ "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1311
+ "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1312
+ "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number>;
1313
+ "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number>;
1314
+ "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
1315
+ "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1316
+ "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1317
+ "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
1318
+ "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
1319
+ "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number>;
1320
+ "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number>;
1321
+ "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
1322
+ "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number>;
1323
+ "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number>;
1324
+ "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number>;
1325
+ "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number>;
1326
+ "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number>;
1327
+ "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number>;
1328
+ "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number>;
1329
+ "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
1330
+ "-moz-tab-size"?: import("csstype").Property.TabSize<string | number>;
1331
+ "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
1332
+ "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1333
+ "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
1334
+ "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
1335
+ "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
1336
+ "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
1337
+ "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
1338
+ "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
1339
+ "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
1340
+ "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
1341
+ "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1342
+ "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1343
+ "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1344
+ "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
1345
+ "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
1346
+ "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
1347
+ "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1348
+ "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
1349
+ "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
1350
+ "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
1351
+ "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number>;
1352
+ "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number>;
1353
+ "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
1354
+ "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1355
+ "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1356
+ "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number>;
1357
+ "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
1358
+ "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
1359
+ "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
1360
+ "-ms-order"?: import("csstype").Property.Order | undefined;
1361
+ "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
1362
+ "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
1363
+ "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
1364
+ "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
1365
+ "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number>;
1366
+ "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number>;
1367
+ "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number>;
1368
+ "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number>;
1369
+ "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
1370
+ "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1371
+ "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1372
+ "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
1373
+ "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
1374
+ "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1375
+ "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1376
+ "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1377
+ "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1378
+ "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1379
+ "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1380
+ "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1381
+ "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1382
+ "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
1383
+ "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
1384
+ "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1385
+ "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
1386
+ "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
1387
+ "-ms-transform"?: import("csstype").Property.Transform | undefined;
1388
+ "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
1389
+ "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
1390
+ "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
1391
+ "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1392
+ "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1393
+ "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
1394
+ "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
1395
+ "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
1396
+ "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number>;
1397
+ "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
1398
+ "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
1399
+ "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
1400
+ "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
1401
+ "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
1402
+ "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}>;
1403
+ "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1404
+ "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}>;
1405
+ "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1406
+ "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1407
+ "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
1408
+ "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1409
+ "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1410
+ "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
1411
+ "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
1412
+ "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1413
+ "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1414
+ "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1415
+ "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number>;
1416
+ "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1417
+ "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1418
+ "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number>;
1419
+ "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
1420
+ "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number>;
1421
+ "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
1422
+ "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number>;
1423
+ "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number>;
1424
+ "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
1425
+ "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number>;
1426
+ "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1427
+ "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1428
+ "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
1429
+ "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
1430
+ "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
1431
+ "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1432
+ "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1433
+ "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number>;
1434
+ "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
1435
+ "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number>;
1436
+ "-webkit-filter"?: import("csstype").Property.Filter | undefined;
1437
+ "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number>;
1438
+ "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1439
+ "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1440
+ "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1441
+ "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1442
+ "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1443
+ "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
1444
+ "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number>;
1445
+ "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1446
+ "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1447
+ "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
1448
+ "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1449
+ "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
1450
+ "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
1451
+ "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
1452
+ "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number>;
1453
+ "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number>;
1454
+ "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
1455
+ "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number>;
1456
+ "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1457
+ "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1458
+ "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
1459
+ "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number>;
1460
+ "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
1461
+ "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
1462
+ "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
1463
+ "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
1464
+ "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number>;
1465
+ "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number>;
1466
+ "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number>;
1467
+ "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
1468
+ "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1469
+ "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1470
+ "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number>;
1471
+ "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number>;
1472
+ "-webkit-order"?: import("csstype").Property.Order | undefined;
1473
+ "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1474
+ "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number>;
1475
+ "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number>;
1476
+ "-webkit-perspective"?: import("csstype").Property.Perspective<string | number>;
1477
+ "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number>;
1478
+ "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1479
+ "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1480
+ "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
1481
+ "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number>;
1482
+ "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1483
+ "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
1484
+ "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1485
+ "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1486
+ "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
1487
+ "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1488
+ "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
1489
+ "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
1490
+ "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
1491
+ "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
1492
+ "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
1493
+ "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1494
+ "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1495
+ "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number>;
1496
+ "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
1497
+ "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
1498
+ "-webkit-transform"?: import("csstype").Property.Transform | undefined;
1499
+ "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
1500
+ "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
1501
+ "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
1502
+ "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
1503
+ "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1504
+ "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1505
+ "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
1506
+ "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
1507
+ "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
1508
+ "-moz-animation"?: import("csstype").Property.Animation<string & {}>;
1509
+ "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
1510
+ "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number>;
1511
+ "-moz-columns"?: import("csstype").Property.Columns<string | number>;
1512
+ "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number>;
1513
+ "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
1514
+ "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
1515
+ "-ms-flex"?: import("csstype").Property.Flex<string | number>;
1516
+ "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
1517
+ "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
1518
+ "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
1519
+ "-ms-transition"?: import("csstype").Property.Transition<string & {}>;
1520
+ "-webkit-animation"?: import("csstype").Property.Animation<string & {}>;
1521
+ "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number>;
1522
+ "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
1523
+ "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number>;
1524
+ "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number>;
1525
+ "-webkit-columns"?: import("csstype").Property.Columns<string | number>;
1526
+ "-webkit-flex"?: import("csstype").Property.Flex<string | number>;
1527
+ "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
1528
+ "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number>;
1529
+ "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
1530
+ "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
1531
+ "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number>;
1532
+ "-webkit-transition"?: import("csstype").Property.Transition<string & {}>;
1533
+ "box-align"?: import("csstype").Property.BoxAlign | undefined;
1534
+ "box-direction"?: import("csstype").Property.BoxDirection | undefined;
1535
+ "box-flex"?: import("csstype").Property.BoxFlex | undefined;
1536
+ "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1537
+ "box-lines"?: import("csstype").Property.BoxLines | undefined;
1538
+ "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1539
+ "box-orient"?: import("csstype").Property.BoxOrient | undefined;
1540
+ "box-pack"?: import("csstype").Property.BoxPack | undefined;
1541
+ "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number>;
1542
+ "grid-gap"?: import("csstype").Property.GridGap<string | number>;
1543
+ "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number>;
1544
+ "ime-mode"?: import("csstype").Property.ImeMode | undefined;
1545
+ "offset-block"?: import("csstype").Property.InsetBlock<string | number>;
1546
+ "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number>;
1547
+ "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number>;
1548
+ "offset-inline"?: import("csstype").Property.InsetInline<string | number>;
1549
+ "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number>;
1550
+ "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number>;
1551
+ "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number>;
1552
+ "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number>;
1553
+ "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
1554
+ "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
1555
+ "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
1556
+ "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
1557
+ "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
1558
+ "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1559
+ "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1560
+ "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1561
+ "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
1562
+ "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1563
+ "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1564
+ "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
1565
+ "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
1566
+ "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
1567
+ "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
1568
+ "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1569
+ "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1570
+ "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
1571
+ "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1572
+ "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number>;
1573
+ "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number>;
1574
+ "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
1575
+ "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number>;
1576
+ "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number>;
1577
+ "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number>;
1578
+ "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
1579
+ "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1580
+ "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1581
+ "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1582
+ "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1583
+ "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
1584
+ "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1585
+ "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
1586
+ "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1587
+ "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
1588
+ "-moz-outline"?: import("csstype").Property.Outline<string | number>;
1589
+ "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
1590
+ "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1591
+ "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number>;
1592
+ "-moz-perspective"?: import("csstype").Property.Perspective<string | number>;
1593
+ "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number>;
1594
+ "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
1595
+ "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1596
+ "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1597
+ "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1598
+ "-moz-transform"?: import("csstype").Property.Transform | undefined;
1599
+ "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
1600
+ "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
1601
+ "-moz-transition"?: import("csstype").Property.Transition<string & {}>;
1602
+ "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
1603
+ "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
1604
+ "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1605
+ "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1606
+ "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
1607
+ "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
1608
+ "-o-animation"?: import("csstype").Property.Animation<string & {}>;
1609
+ "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}>;
1610
+ "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1611
+ "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}>;
1612
+ "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1613
+ "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1614
+ "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
1615
+ "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1616
+ "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1617
+ "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number>;
1618
+ "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
1619
+ "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
1620
+ "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number>;
1621
+ "-o-tab-size"?: import("csstype").Property.TabSize<string | number>;
1622
+ "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1623
+ "-o-transform"?: import("csstype").Property.Transform | undefined;
1624
+ "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
1625
+ "-o-transition"?: import("csstype").Property.Transition<string & {}>;
1626
+ "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
1627
+ "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
1628
+ "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1629
+ "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1630
+ "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
1631
+ "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1632
+ "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1633
+ "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1634
+ "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
1635
+ "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1636
+ "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1637
+ "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
1638
+ "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
1639
+ "baseline-shift"?: import("csstype").Property.BaselineShift<string | number>;
1640
+ "clip-rule"?: import("csstype").Property.ClipRule | undefined;
1641
+ "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
1642
+ "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
1643
+ "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
1644
+ "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
1645
+ "fill-rule"?: import("csstype").Property.FillRule | undefined;
1646
+ "flood-color"?: import("csstype").Property.FloodColor | undefined;
1647
+ "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
1648
+ "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
1649
+ "lighting-color"?: import("csstype").Property.LightingColor | undefined;
1650
+ "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
1651
+ "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
1652
+ "marker-start"?: import("csstype").Property.MarkerStart | undefined;
1653
+ "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
1654
+ "stop-color"?: import("csstype").Property.StopColor | undefined;
1655
+ "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
1656
+ "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number>;
1657
+ "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number>;
1658
+ "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
1659
+ "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
1660
+ "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
1661
+ "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
1662
+ "stroke-width"?: import("csstype").Property.StrokeWidth<string | number>;
1663
+ "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
1664
+ "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
1665
+ }, CSSProperties | {
1666
+ [x: `--${string}`]: string | number;
1667
+ accentColor?: import("csstype").Property.AccentColor | undefined;
1668
+ alignContent?: import("csstype").Property.AlignContent | undefined;
1669
+ alignItems?: import("csstype").Property.AlignItems | undefined;
1670
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
1671
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
1672
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1673
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
1674
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1675
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
1676
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1677
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1678
+ animationName?: import("csstype").Property.AnimationName | undefined;
1679
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1680
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number>;
1681
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number>;
1682
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1683
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1684
+ appearance?: import("csstype").Property.Appearance | undefined;
1685
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1686
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1687
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1688
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1689
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1690
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1691
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1692
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1693
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1694
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number>;
1695
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number>;
1696
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1697
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
1698
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1699
+ blockSize?: import("csstype").Property.BlockSize<string | number>;
1700
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1701
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1702
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1703
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number>;
1704
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1705
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1706
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number>;
1707
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1708
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number>;
1709
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1710
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
1711
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
1712
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1713
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number>;
1714
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1715
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number>;
1716
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number>;
1717
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number>;
1718
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1719
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1720
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1721
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number>;
1722
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1723
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1724
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1725
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
1726
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1727
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1728
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number>;
1729
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1730
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number>;
1731
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1732
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1733
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number>;
1734
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1735
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1736
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number>;
1737
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number>;
1738
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number>;
1739
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number>;
1740
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1741
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
1742
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
1743
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1744
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number>;
1745
+ bottom?: import("csstype").Property.Bottom<string | number>;
1746
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1747
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1748
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1749
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1750
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1751
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1752
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1753
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1754
+ caretShape?: import("csstype").Property.CaretShape | undefined;
1755
+ clear?: import("csstype").Property.Clear | undefined;
1756
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1757
+ color?: import("csstype").Property.Color | undefined;
1758
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1759
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1760
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1761
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1762
+ columnGap?: import("csstype").Property.ColumnGap<string | number>;
1763
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1764
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1765
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
1766
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1767
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number>;
1768
+ contain?: import("csstype").Property.Contain | undefined;
1769
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number>;
1770
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number>;
1771
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number>;
1772
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number>;
1773
+ containerName?: import("csstype").Property.ContainerName | undefined;
1774
+ containerType?: import("csstype").Property.ContainerType | undefined;
1775
+ content?: import("csstype").Property.Content | undefined;
1776
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1777
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1778
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1779
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1780
+ cursor?: import("csstype").Property.Cursor | undefined;
1781
+ direction?: import("csstype").Property.Direction | undefined;
1782
+ display?: import("csstype").Property.Display | undefined;
1783
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1784
+ filter?: import("csstype").Property.Filter | undefined;
1785
+ flexBasis?: import("csstype").Property.FlexBasis<string | number>;
1786
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1787
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1788
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1789
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1790
+ float?: import("csstype").Property.Float | undefined;
1791
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1792
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1793
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1794
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1795
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1796
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1797
+ fontSize?: import("csstype").Property.FontSize<string | number>;
1798
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1799
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number>;
1800
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1801
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1802
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1803
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1804
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1805
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1806
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1807
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1808
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1809
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1810
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1811
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1812
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1813
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1814
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1815
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1816
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1817
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1818
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number>;
1819
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1820
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number>;
1821
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1822
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1823
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1824
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1825
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1826
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number>;
1827
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number>;
1828
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1829
+ height?: import("csstype").Property.Height<string | number>;
1830
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1831
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1832
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1833
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1834
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1835
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1836
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1837
+ inlineSize?: import("csstype").Property.InlineSize<string | number>;
1838
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1839
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
1840
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
1841
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
1842
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
1843
+ isolation?: import("csstype").Property.Isolation | undefined;
1844
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1845
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1846
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1847
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1848
+ left?: import("csstype").Property.Left<string | number>;
1849
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number>;
1850
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1851
+ lineHeight?: import("csstype").Property.LineHeight<string | number>;
1852
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number>;
1853
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1854
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1855
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1856
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number>;
1857
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number>;
1858
+ marginBottom?: import("csstype").Property.MarginBottom<string | number>;
1859
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
1860
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number>;
1861
+ marginLeft?: import("csstype").Property.MarginLeft<string | number>;
1862
+ marginRight?: import("csstype").Property.MarginRight<string | number>;
1863
+ marginTop?: import("csstype").Property.MarginTop<string | number>;
1864
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1865
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1866
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
1867
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1868
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1869
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1870
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
1871
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1872
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1873
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1874
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1875
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1876
+ maskPosition?: import("csstype").Property.MaskPosition<string | number>;
1877
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1878
+ maskSize?: import("csstype").Property.MaskSize<string | number>;
1879
+ maskType?: import("csstype").Property.MaskType | undefined;
1880
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1881
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1882
+ mathShift?: import("csstype").Property.MathShift | undefined;
1883
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1884
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number>;
1885
+ maxHeight?: import("csstype").Property.MaxHeight<string | number>;
1886
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
1887
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1888
+ maxWidth?: import("csstype").Property.MaxWidth<string | number>;
1889
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number>;
1890
+ minHeight?: import("csstype").Property.MinHeight<string | number>;
1891
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number>;
1892
+ minWidth?: import("csstype").Property.MinWidth<string | number>;
1893
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1894
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number>;
1895
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1896
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1897
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1898
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number>;
1899
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number>;
1900
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number>;
1901
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1902
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number>;
1903
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1904
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1905
+ opacity?: import("csstype").Property.Opacity | undefined;
1906
+ order?: import("csstype").Property.Order | undefined;
1907
+ orphans?: import("csstype").Property.Orphans | undefined;
1908
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1909
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number>;
1910
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1911
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
1912
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1913
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1914
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1915
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number>;
1916
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1917
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1918
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1919
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1920
+ overlay?: import("csstype").Property.Overlay | undefined;
1921
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1922
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1923
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1924
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1925
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number>;
1926
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number>;
1927
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number>;
1928
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
1929
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number>;
1930
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number>;
1931
+ paddingRight?: import("csstype").Property.PaddingRight<string | number>;
1932
+ paddingTop?: import("csstype").Property.PaddingTop<string | number>;
1933
+ page?: import("csstype").Property.Page | undefined;
1934
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1935
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1936
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1937
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1938
+ perspective?: import("csstype").Property.Perspective<string | number>;
1939
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
1940
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1941
+ position?: import("csstype").Property.Position | undefined;
1942
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1943
+ quotes?: import("csstype").Property.Quotes | undefined;
1944
+ resize?: import("csstype").Property.Resize | undefined;
1945
+ right?: import("csstype").Property.Right<string | number>;
1946
+ rotate?: import("csstype").Property.Rotate | undefined;
1947
+ rowGap?: import("csstype").Property.RowGap<string | number>;
1948
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1949
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1950
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1951
+ scale?: import("csstype").Property.Scale | undefined;
1952
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1953
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number>;
1954
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number>;
1955
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
1956
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number>;
1957
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number>;
1958
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
1959
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
1960
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
1961
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number>;
1962
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number>;
1963
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number>;
1964
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number>;
1965
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number>;
1966
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number>;
1967
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number>;
1968
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number>;
1969
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1970
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
1971
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
1972
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
1973
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
1974
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1975
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1976
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1977
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1978
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1979
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1980
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1981
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1982
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
1983
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1984
+ tabSize?: import("csstype").Property.TabSize<string | number>;
1985
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1986
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1987
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1988
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1989
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1990
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1991
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1992
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1993
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1994
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number>;
1995
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1996
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1997
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1998
+ textIndent?: import("csstype").Property.TextIndent<string | number>;
1999
+ textJustify?: import("csstype").Property.TextJustify | undefined;
2000
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
2001
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
2002
+ textRendering?: import("csstype").Property.TextRendering | undefined;
2003
+ textShadow?: import("csstype").Property.TextShadow | undefined;
2004
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2005
+ textTransform?: import("csstype").Property.TextTransform | undefined;
2006
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number>;
2007
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2008
+ textWrap?: import("csstype").Property.TextWrap | undefined;
2009
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
2010
+ top?: import("csstype").Property.Top<string | number>;
2011
+ touchAction?: import("csstype").Property.TouchAction | undefined;
2012
+ transform?: import("csstype").Property.Transform | undefined;
2013
+ transformBox?: import("csstype").Property.TransformBox | undefined;
2014
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
2015
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
2016
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2017
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
2018
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
2019
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2020
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2021
+ translate?: import("csstype").Property.Translate<string | number>;
2022
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2023
+ userSelect?: import("csstype").Property.UserSelect | undefined;
2024
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number>;
2025
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2026
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number>;
2027
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2028
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2029
+ visibility?: import("csstype").Property.Visibility | undefined;
2030
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2031
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2032
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
2033
+ widows?: import("csstype").Property.Widows | undefined;
2034
+ width?: import("csstype").Property.Width<string | number>;
2035
+ willChange?: import("csstype").Property.WillChange | undefined;
2036
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
2037
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number>;
2038
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
2039
+ writingMode?: import("csstype").Property.WritingMode | undefined;
2040
+ zIndex?: import("csstype").Property.ZIndex | undefined;
2041
+ zoom?: import("csstype").Property.Zoom | undefined;
2042
+ all?: import("csstype").Property.All | undefined;
2043
+ animation?: import("csstype").Property.Animation<string & {}>;
2044
+ animationRange?: import("csstype").Property.AnimationRange<string | number>;
2045
+ background?: import("csstype").Property.Background<string | number>;
2046
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number>;
2047
+ border?: import("csstype").Property.Border<string | number>;
2048
+ borderBlock?: import("csstype").Property.BorderBlock<string | number>;
2049
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number>;
2050
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number>;
2051
+ borderBottom?: import("csstype").Property.BorderBottom<string | number>;
2052
+ borderColor?: import("csstype").Property.BorderColor | undefined;
2053
+ borderImage?: import("csstype").Property.BorderImage | undefined;
2054
+ borderInline?: import("csstype").Property.BorderInline<string | number>;
2055
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number>;
2056
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number>;
2057
+ borderLeft?: import("csstype").Property.BorderLeft<string | number>;
2058
+ borderRadius?: import("csstype").Property.BorderRadius<string | number>;
2059
+ borderRight?: import("csstype").Property.BorderRight<string | number>;
2060
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
2061
+ borderTop?: import("csstype").Property.BorderTop<string | number>;
2062
+ borderWidth?: import("csstype").Property.BorderWidth<string | number>;
2063
+ caret?: import("csstype").Property.Caret | undefined;
2064
+ columnRule?: import("csstype").Property.ColumnRule<string | number>;
2065
+ columns?: import("csstype").Property.Columns<string | number>;
2066
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number>;
2067
+ container?: import("csstype").Property.Container | undefined;
2068
+ flex?: import("csstype").Property.Flex<string | number>;
2069
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
2070
+ font?: import("csstype").Property.Font | undefined;
2071
+ gap?: import("csstype").Property.Gap<string | number>;
2072
+ grid?: import("csstype").Property.Grid | undefined;
2073
+ gridArea?: import("csstype").Property.GridArea | undefined;
2074
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
2075
+ gridRow?: import("csstype").Property.GridRow | undefined;
2076
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2077
+ inset?: import("csstype").Property.Inset<string | number>;
2078
+ insetBlock?: import("csstype").Property.InsetBlock<string | number>;
2079
+ insetInline?: import("csstype").Property.InsetInline<string | number>;
2080
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
2081
+ listStyle?: import("csstype").Property.ListStyle | undefined;
2082
+ margin?: import("csstype").Property.Margin<string | number>;
2083
+ marginBlock?: import("csstype").Property.MarginBlock<string | number>;
2084
+ marginInline?: import("csstype").Property.MarginInline<string | number>;
2085
+ mask?: import("csstype").Property.Mask<string | number>;
2086
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
2087
+ motion?: import("csstype").Property.Offset<string | number>;
2088
+ offset?: import("csstype").Property.Offset<string | number>;
2089
+ outline?: import("csstype").Property.Outline<string | number>;
2090
+ overflow?: import("csstype").Property.Overflow | undefined;
2091
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2092
+ padding?: import("csstype").Property.Padding<string | number>;
2093
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number>;
2094
+ paddingInline?: import("csstype").Property.PaddingInline<string | number>;
2095
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
2096
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
2097
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2098
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number>;
2099
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number>;
2100
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number>;
2101
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number>;
2102
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number>;
2103
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number>;
2104
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number>;
2105
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2106
+ textDecoration?: import("csstype").Property.TextDecoration<string | number>;
2107
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2108
+ transition?: import("csstype").Property.Transition<string & {}>;
2109
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2110
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
2111
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2112
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
2113
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2114
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2115
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2116
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2117
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2118
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2119
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
2120
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2121
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2122
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2123
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
2124
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2125
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2126
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2127
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2128
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2129
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2130
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2131
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2132
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2133
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2134
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
2135
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
2136
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2137
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2138
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2139
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
2140
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2141
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
2142
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
2143
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
2144
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
2145
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number>;
2146
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number>;
2147
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number>;
2148
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number>;
2149
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
2150
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
2151
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2152
+ MozTabSize?: import("csstype").Property.TabSize<string | number>;
2153
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2154
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2155
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2156
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2157
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2158
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2159
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2160
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2161
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2162
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2163
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2164
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2165
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2166
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2167
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2168
+ msFilter?: import("csstype").Property.MsFilter | undefined;
2169
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2170
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2171
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2172
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2173
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number>;
2174
+ msGridRows?: import("csstype").Property.MsGridRows<string | number>;
2175
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2176
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2177
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2178
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number>;
2179
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
2180
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2181
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
2182
+ msOrder?: import("csstype").Property.Order | undefined;
2183
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2184
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
2185
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
2186
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2187
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number>;
2188
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number>;
2189
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number>;
2190
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number>;
2191
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2192
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2193
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2194
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2195
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2196
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2197
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2198
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2199
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2200
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2201
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2202
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2203
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2204
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2205
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2206
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2207
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
2208
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2209
+ msTransform?: import("csstype").Property.Transform | undefined;
2210
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
2211
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
2212
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
2213
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2214
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2215
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2216
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
2217
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2218
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number>;
2219
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2220
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
2221
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2222
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2223
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2224
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
2225
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2226
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
2227
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2228
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2229
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2230
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2231
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2232
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2233
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2234
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2235
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2236
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2237
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
2238
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2239
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2240
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number>;
2241
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
2242
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
2243
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2244
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
2245
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
2246
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2247
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number>;
2248
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2249
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2250
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2251
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2252
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2253
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2254
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2255
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
2256
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2257
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
2258
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
2259
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number>;
2260
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2261
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2262
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2263
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
2264
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2265
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
2266
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
2267
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2268
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2269
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
2270
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
2271
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
2272
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
2273
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
2274
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
2275
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
2276
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
2277
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
2278
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2279
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2280
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
2281
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
2282
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
2283
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
2284
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
2285
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
2286
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number>;
2287
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number>;
2288
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number>;
2289
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
2290
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2291
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2292
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number>;
2293
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
2294
+ WebkitOrder?: import("csstype").Property.Order | undefined;
2295
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2296
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
2297
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
2298
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number>;
2299
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
2300
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2301
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
2302
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2303
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
2304
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2305
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
2306
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2307
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2308
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2309
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2310
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2311
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2312
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2313
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
2314
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
2315
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2316
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2317
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number>;
2318
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2319
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
2320
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
2321
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
2322
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2323
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
2324
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
2325
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2326
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2327
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
2328
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
2329
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
2330
+ MozAnimation?: import("csstype").Property.Animation<string & {}>;
2331
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
2332
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number>;
2333
+ MozColumns?: import("csstype").Property.Columns<string | number>;
2334
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number>;
2335
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
2336
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
2337
+ msFlex?: import("csstype").Property.Flex<string | number>;
2338
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
2339
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
2340
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
2341
+ msTransition?: import("csstype").Property.Transition<string & {}>;
2342
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}>;
2343
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number>;
2344
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
2345
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
2346
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number>;
2347
+ WebkitColumns?: import("csstype").Property.Columns<string | number>;
2348
+ WebkitFlex?: import("csstype").Property.Flex<string | number>;
2349
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
2350
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number>;
2351
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
2352
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2353
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number>;
2354
+ WebkitTransition?: import("csstype").Property.Transition<string & {}>;
2355
+ azimuth?: import("csstype").Property.Azimuth | undefined;
2356
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
2357
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
2358
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
2359
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2360
+ boxLines?: import("csstype").Property.BoxLines | undefined;
2361
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2362
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
2363
+ boxPack?: import("csstype").Property.BoxPack | undefined;
2364
+ clip?: import("csstype").Property.Clip | undefined;
2365
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number>;
2366
+ gridGap?: import("csstype").Property.GridGap<string | number>;
2367
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number>;
2368
+ imeMode?: import("csstype").Property.ImeMode | undefined;
2369
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number>;
2370
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
2371
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
2372
+ offsetInline?: import("csstype").Property.InsetInline<string | number>;
2373
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
2374
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
2375
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number>;
2376
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number>;
2377
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2378
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2379
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
2380
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
2381
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2382
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2383
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2384
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2385
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
2386
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2387
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2388
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
2389
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
2390
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
2391
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
2392
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2393
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2394
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
2395
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2396
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
2397
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
2398
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
2399
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number>;
2400
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number>;
2401
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number>;
2402
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2403
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2404
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2405
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2406
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2407
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
2408
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2409
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
2410
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2411
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
2412
+ MozOutline?: import("csstype").Property.Outline<string | number>;
2413
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
2414
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2415
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
2416
+ MozPerspective?: import("csstype").Property.Perspective<string | number>;
2417
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
2418
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2419
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2420
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2421
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2422
+ MozTransform?: import("csstype").Property.Transform | undefined;
2423
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
2424
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2425
+ MozTransition?: import("csstype").Property.Transition<string & {}>;
2426
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
2427
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
2428
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2429
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2430
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
2431
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
2432
+ OAnimation?: import("csstype").Property.Animation<string & {}>;
2433
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
2434
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2435
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
2436
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2437
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2438
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
2439
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2440
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2441
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
2442
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
2443
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
2444
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number>;
2445
+ OTabSize?: import("csstype").Property.TabSize<string | number>;
2446
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2447
+ OTransform?: import("csstype").Property.Transform | undefined;
2448
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
2449
+ OTransition?: import("csstype").Property.Transition<string & {}>;
2450
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
2451
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
2452
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2453
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2454
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2455
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2456
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2457
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2458
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
2459
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2460
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2461
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
2462
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
2463
+ baselineShift?: import("csstype").Property.BaselineShift<string | number>;
2464
+ clipRule?: import("csstype").Property.ClipRule | undefined;
2465
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
2466
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
2467
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
2468
+ fill?: import("csstype").Property.Fill | undefined;
2469
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
2470
+ fillRule?: import("csstype").Property.FillRule | undefined;
2471
+ floodColor?: import("csstype").Property.FloodColor | undefined;
2472
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
2473
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
2474
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
2475
+ marker?: import("csstype").Property.Marker | undefined;
2476
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
2477
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
2478
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
2479
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2480
+ stopColor?: import("csstype").Property.StopColor | undefined;
2481
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2482
+ stroke?: import("csstype").Property.Stroke | undefined;
2483
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number>;
2484
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number>;
2485
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2486
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2487
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2488
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2489
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number>;
2490
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
2491
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2492
+ "accent-color"?: import("csstype").Property.AccentColor | undefined;
2493
+ "align-content"?: import("csstype").Property.AlignContent | undefined;
2494
+ "align-items"?: import("csstype").Property.AlignItems | undefined;
2495
+ "align-self"?: import("csstype").Property.AlignSelf | undefined;
2496
+ "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
2497
+ "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
2498
+ "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}>;
2499
+ "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2500
+ "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}>;
2501
+ "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2502
+ "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2503
+ "animation-name"?: import("csstype").Property.AnimationName | undefined;
2504
+ "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2505
+ "animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number>;
2506
+ "animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number>;
2507
+ "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
2508
+ "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2509
+ "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
2510
+ "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
2511
+ "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
2512
+ "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
2513
+ "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
2514
+ "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
2515
+ "background-color"?: import("csstype").Property.BackgroundColor | undefined;
2516
+ "background-image"?: import("csstype").Property.BackgroundImage | undefined;
2517
+ "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
2518
+ "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number>;
2519
+ "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number>;
2520
+ "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
2521
+ "background-size"?: import("csstype").Property.BackgroundSize<string | number>;
2522
+ "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
2523
+ "block-size"?: import("csstype").Property.BlockSize<string | number>;
2524
+ "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
2525
+ "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
2526
+ "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
2527
+ "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number>;
2528
+ "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
2529
+ "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
2530
+ "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number>;
2531
+ "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
2532
+ "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number>;
2533
+ "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
2534
+ "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
2535
+ "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number>;
2536
+ "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
2537
+ "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number>;
2538
+ "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
2539
+ "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number>;
2540
+ "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number>;
2541
+ "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number>;
2542
+ "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
2543
+ "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
2544
+ "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
2545
+ "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number>;
2546
+ "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
2547
+ "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
2548
+ "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
2549
+ "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number>;
2550
+ "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
2551
+ "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
2552
+ "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number>;
2553
+ "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
2554
+ "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number>;
2555
+ "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
2556
+ "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
2557
+ "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number>;
2558
+ "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
2559
+ "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
2560
+ "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number>;
2561
+ "border-spacing"?: import("csstype").Property.BorderSpacing<string | number>;
2562
+ "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number>;
2563
+ "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number>;
2564
+ "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
2565
+ "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number>;
2566
+ "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number>;
2567
+ "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
2568
+ "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number>;
2569
+ "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
2570
+ "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
2571
+ "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2572
+ "break-after"?: import("csstype").Property.BreakAfter | undefined;
2573
+ "break-before"?: import("csstype").Property.BreakBefore | undefined;
2574
+ "break-inside"?: import("csstype").Property.BreakInside | undefined;
2575
+ "caption-side"?: import("csstype").Property.CaptionSide | undefined;
2576
+ "caret-color"?: import("csstype").Property.CaretColor | undefined;
2577
+ "caret-shape"?: import("csstype").Property.CaretShape | undefined;
2578
+ "clip-path"?: import("csstype").Property.ClipPath | undefined;
2579
+ "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
2580
+ "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
2581
+ "column-count"?: import("csstype").Property.ColumnCount | undefined;
2582
+ "column-fill"?: import("csstype").Property.ColumnFill | undefined;
2583
+ "column-gap"?: import("csstype").Property.ColumnGap<string | number>;
2584
+ "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2585
+ "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2586
+ "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number>;
2587
+ "column-span"?: import("csstype").Property.ColumnSpan | undefined;
2588
+ "column-width"?: import("csstype").Property.ColumnWidth<string | number>;
2589
+ "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number>;
2590
+ "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number>;
2591
+ "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number>;
2592
+ "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number>;
2593
+ "container-name"?: import("csstype").Property.ContainerName | undefined;
2594
+ "container-type"?: import("csstype").Property.ContainerType | undefined;
2595
+ "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
2596
+ "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
2597
+ "counter-reset"?: import("csstype").Property.CounterReset | undefined;
2598
+ "counter-set"?: import("csstype").Property.CounterSet | undefined;
2599
+ "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
2600
+ "flex-basis"?: import("csstype").Property.FlexBasis<string | number>;
2601
+ "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2602
+ "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
2603
+ "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
2604
+ "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
2605
+ "font-family"?: import("csstype").Property.FontFamily | undefined;
2606
+ "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2607
+ "font-kerning"?: import("csstype").Property.FontKerning | undefined;
2608
+ "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
2609
+ "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
2610
+ "font-palette"?: import("csstype").Property.FontPalette | undefined;
2611
+ "font-size"?: import("csstype").Property.FontSize<string | number>;
2612
+ "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
2613
+ "font-smooth"?: import("csstype").Property.FontSmooth<string | number>;
2614
+ "font-stretch"?: import("csstype").Property.FontStretch | undefined;
2615
+ "font-style"?: import("csstype").Property.FontStyle | undefined;
2616
+ "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
2617
+ "font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
2618
+ "font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
2619
+ "font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
2620
+ "font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
2621
+ "font-variant"?: import("csstype").Property.FontVariant | undefined;
2622
+ "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
2623
+ "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
2624
+ "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
2625
+ "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
2626
+ "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
2627
+ "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
2628
+ "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
2629
+ "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
2630
+ "font-weight"?: import("csstype").Property.FontWeight | undefined;
2631
+ "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
2632
+ "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number>;
2633
+ "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
2634
+ "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number>;
2635
+ "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
2636
+ "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
2637
+ "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
2638
+ "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
2639
+ "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
2640
+ "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number>;
2641
+ "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number>;
2642
+ "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
2643
+ "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
2644
+ "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
2645
+ "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
2646
+ "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
2647
+ "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
2648
+ "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
2649
+ "inline-size"?: import("csstype").Property.InlineSize<string | number>;
2650
+ "input-security"?: import("csstype").Property.InputSecurity | undefined;
2651
+ "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number>;
2652
+ "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number>;
2653
+ "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number>;
2654
+ "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number>;
2655
+ "justify-content"?: import("csstype").Property.JustifyContent | undefined;
2656
+ "justify-items"?: import("csstype").Property.JustifyItems | undefined;
2657
+ "justify-self"?: import("csstype").Property.JustifySelf | undefined;
2658
+ "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
2659
+ "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number>;
2660
+ "line-break"?: import("csstype").Property.LineBreak | undefined;
2661
+ "line-height"?: import("csstype").Property.LineHeight<string | number>;
2662
+ "line-height-step"?: import("csstype").Property.LineHeightStep<string | number>;
2663
+ "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
2664
+ "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
2665
+ "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
2666
+ "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number>;
2667
+ "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number>;
2668
+ "margin-bottom"?: import("csstype").Property.MarginBottom<string | number>;
2669
+ "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number>;
2670
+ "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number>;
2671
+ "margin-left"?: import("csstype").Property.MarginLeft<string | number>;
2672
+ "margin-right"?: import("csstype").Property.MarginRight<string | number>;
2673
+ "margin-top"?: import("csstype").Property.MarginTop<string | number>;
2674
+ "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
2675
+ "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
2676
+ "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number>;
2677
+ "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
2678
+ "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
2679
+ "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
2680
+ "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number>;
2681
+ "mask-clip"?: import("csstype").Property.MaskClip | undefined;
2682
+ "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
2683
+ "mask-image"?: import("csstype").Property.MaskImage | undefined;
2684
+ "mask-mode"?: import("csstype").Property.MaskMode | undefined;
2685
+ "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
2686
+ "mask-position"?: import("csstype").Property.MaskPosition<string | number>;
2687
+ "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
2688
+ "mask-size"?: import("csstype").Property.MaskSize<string | number>;
2689
+ "mask-type"?: import("csstype").Property.MaskType | undefined;
2690
+ "masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
2691
+ "math-depth"?: import("csstype").Property.MathDepth | undefined;
2692
+ "math-shift"?: import("csstype").Property.MathShift | undefined;
2693
+ "math-style"?: import("csstype").Property.MathStyle | undefined;
2694
+ "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number>;
2695
+ "max-height"?: import("csstype").Property.MaxHeight<string | number>;
2696
+ "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number>;
2697
+ "max-lines"?: import("csstype").Property.MaxLines | undefined;
2698
+ "max-width"?: import("csstype").Property.MaxWidth<string | number>;
2699
+ "min-block-size"?: import("csstype").Property.MinBlockSize<string | number>;
2700
+ "min-height"?: import("csstype").Property.MinHeight<string | number>;
2701
+ "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number>;
2702
+ "min-width"?: import("csstype").Property.MinWidth<string | number>;
2703
+ "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
2704
+ "motion-distance"?: import("csstype").Property.OffsetDistance<string | number>;
2705
+ "motion-path"?: import("csstype").Property.OffsetPath | undefined;
2706
+ "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
2707
+ "object-fit"?: import("csstype").Property.ObjectFit | undefined;
2708
+ "object-position"?: import("csstype").Property.ObjectPosition<string | number>;
2709
+ "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number>;
2710
+ "offset-distance"?: import("csstype").Property.OffsetDistance<string | number>;
2711
+ "offset-path"?: import("csstype").Property.OffsetPath | undefined;
2712
+ "offset-position"?: import("csstype").Property.OffsetPosition<string | number>;
2713
+ "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
2714
+ "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
2715
+ "outline-color"?: import("csstype").Property.OutlineColor | undefined;
2716
+ "outline-offset"?: import("csstype").Property.OutlineOffset<string | number>;
2717
+ "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
2718
+ "outline-width"?: import("csstype").Property.OutlineWidth<string | number>;
2719
+ "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
2720
+ "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
2721
+ "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
2722
+ "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number>;
2723
+ "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
2724
+ "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
2725
+ "overflow-x"?: import("csstype").Property.OverflowX | undefined;
2726
+ "overflow-y"?: import("csstype").Property.OverflowY | undefined;
2727
+ "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
2728
+ "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
2729
+ "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
2730
+ "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
2731
+ "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number>;
2732
+ "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number>;
2733
+ "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number>;
2734
+ "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number>;
2735
+ "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number>;
2736
+ "padding-left"?: import("csstype").Property.PaddingLeft<string | number>;
2737
+ "padding-right"?: import("csstype").Property.PaddingRight<string | number>;
2738
+ "padding-top"?: import("csstype").Property.PaddingTop<string | number>;
2739
+ "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
2740
+ "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
2741
+ "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
2742
+ "paint-order"?: import("csstype").Property.PaintOrder | undefined;
2743
+ "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number>;
2744
+ "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
2745
+ "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
2746
+ "row-gap"?: import("csstype").Property.RowGap<string | number>;
2747
+ "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
2748
+ "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
2749
+ "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
2750
+ "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
2751
+ "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number>;
2752
+ "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number>;
2753
+ "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number>;
2754
+ "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number>;
2755
+ "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number>;
2756
+ "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number>;
2757
+ "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number>;
2758
+ "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number>;
2759
+ "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number>;
2760
+ "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number>;
2761
+ "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number>;
2762
+ "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number>;
2763
+ "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number>;
2764
+ "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number>;
2765
+ "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number>;
2766
+ "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number>;
2767
+ "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
2768
+ "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number>;
2769
+ "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number>;
2770
+ "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number>;
2771
+ "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number>;
2772
+ "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
2773
+ "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
2774
+ "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
2775
+ "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
2776
+ "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
2777
+ "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
2778
+ "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
2779
+ "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
2780
+ "shape-margin"?: import("csstype").Property.ShapeMargin<string | number>;
2781
+ "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
2782
+ "tab-size"?: import("csstype").Property.TabSize<string | number>;
2783
+ "table-layout"?: import("csstype").Property.TableLayout | undefined;
2784
+ "text-align"?: import("csstype").Property.TextAlign | undefined;
2785
+ "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
2786
+ "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
2787
+ "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
2788
+ "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
2789
+ "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
2790
+ "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
2791
+ "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
2792
+ "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number>;
2793
+ "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
2794
+ "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
2795
+ "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
2796
+ "text-indent"?: import("csstype").Property.TextIndent<string | number>;
2797
+ "text-justify"?: import("csstype").Property.TextJustify | undefined;
2798
+ "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
2799
+ "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
2800
+ "text-rendering"?: import("csstype").Property.TextRendering | undefined;
2801
+ "text-shadow"?: import("csstype").Property.TextShadow | undefined;
2802
+ "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2803
+ "text-transform"?: import("csstype").Property.TextTransform | undefined;
2804
+ "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number>;
2805
+ "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
2806
+ "text-wrap"?: import("csstype").Property.TextWrap | undefined;
2807
+ "timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
2808
+ "touch-action"?: import("csstype").Property.TouchAction | undefined;
2809
+ "transform-box"?: import("csstype").Property.TransformBox | undefined;
2810
+ "transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
2811
+ "transform-style"?: import("csstype").Property.TransformStyle | undefined;
2812
+ "transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
2813
+ "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
2814
+ "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
2815
+ "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2816
+ "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2817
+ "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
2818
+ "user-select"?: import("csstype").Property.UserSelect | undefined;
2819
+ "vertical-align"?: import("csstype").Property.VerticalAlign<string | number>;
2820
+ "view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
2821
+ "view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number>;
2822
+ "view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
2823
+ "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
2824
+ "white-space"?: import("csstype").Property.WhiteSpace | undefined;
2825
+ "white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2826
+ "white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
2827
+ "will-change"?: import("csstype").Property.WillChange | undefined;
2828
+ "word-break"?: import("csstype").Property.WordBreak | undefined;
2829
+ "word-spacing"?: import("csstype").Property.WordSpacing<string | number>;
2830
+ "word-wrap"?: import("csstype").Property.WordWrap | undefined;
2831
+ "writing-mode"?: import("csstype").Property.WritingMode | undefined;
2832
+ "z-index"?: import("csstype").Property.ZIndex | undefined;
2833
+ "animation-range"?: import("csstype").Property.AnimationRange<string | number>;
2834
+ "background-position"?: import("csstype").Property.BackgroundPosition<string | number>;
2835
+ "border-block"?: import("csstype").Property.BorderBlock<string | number>;
2836
+ "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number>;
2837
+ "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number>;
2838
+ "border-bottom"?: import("csstype").Property.BorderBottom<string | number>;
2839
+ "border-color"?: import("csstype").Property.BorderColor | undefined;
2840
+ "border-image"?: import("csstype").Property.BorderImage | undefined;
2841
+ "border-inline"?: import("csstype").Property.BorderInline<string | number>;
2842
+ "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number>;
2843
+ "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number>;
2844
+ "border-left"?: import("csstype").Property.BorderLeft<string | number>;
2845
+ "border-radius"?: import("csstype").Property.BorderRadius<string | number>;
2846
+ "border-right"?: import("csstype").Property.BorderRight<string | number>;
2847
+ "border-style"?: import("csstype").Property.BorderStyle | undefined;
2848
+ "border-top"?: import("csstype").Property.BorderTop<string | number>;
2849
+ "border-width"?: import("csstype").Property.BorderWidth<string | number>;
2850
+ "column-rule"?: import("csstype").Property.ColumnRule<string | number>;
2851
+ "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number>;
2852
+ "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
2853
+ "grid-area"?: import("csstype").Property.GridArea | undefined;
2854
+ "grid-column"?: import("csstype").Property.GridColumn | undefined;
2855
+ "grid-row"?: import("csstype").Property.GridRow | undefined;
2856
+ "grid-template"?: import("csstype").Property.GridTemplate | undefined;
2857
+ "inset-block"?: import("csstype").Property.InsetBlock<string | number>;
2858
+ "inset-inline"?: import("csstype").Property.InsetInline<string | number>;
2859
+ "line-clamp"?: import("csstype").Property.LineClamp | undefined;
2860
+ "list-style"?: import("csstype").Property.ListStyle | undefined;
2861
+ "margin-block"?: import("csstype").Property.MarginBlock<string | number>;
2862
+ "margin-inline"?: import("csstype").Property.MarginInline<string | number>;
2863
+ "mask-border"?: import("csstype").Property.MaskBorder | undefined;
2864
+ "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
2865
+ "padding-block"?: import("csstype").Property.PaddingBlock<string | number>;
2866
+ "padding-inline"?: import("csstype").Property.PaddingInline<string | number>;
2867
+ "place-content"?: import("csstype").Property.PlaceContent | undefined;
2868
+ "place-items"?: import("csstype").Property.PlaceItems | undefined;
2869
+ "place-self"?: import("csstype").Property.PlaceSelf | undefined;
2870
+ "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number>;
2871
+ "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number>;
2872
+ "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number>;
2873
+ "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number>;
2874
+ "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number>;
2875
+ "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number>;
2876
+ "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number>;
2877
+ "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
2878
+ "text-decoration"?: import("csstype").Property.TextDecoration<string | number>;
2879
+ "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
2880
+ "view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
2881
+ "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}>;
2882
+ "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2883
+ "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}>;
2884
+ "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2885
+ "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2886
+ "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
2887
+ "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2888
+ "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2889
+ "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
2890
+ "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
2891
+ "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
2892
+ "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
2893
+ "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
2894
+ "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number>;
2895
+ "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
2896
+ "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
2897
+ "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
2898
+ "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
2899
+ "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
2900
+ "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2901
+ "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
2902
+ "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
2903
+ "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2904
+ "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2905
+ "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number>;
2906
+ "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number>;
2907
+ "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
2908
+ "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2909
+ "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
2910
+ "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
2911
+ "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
2912
+ "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number>;
2913
+ "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number>;
2914
+ "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
2915
+ "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number>;
2916
+ "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number>;
2917
+ "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number>;
2918
+ "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number>;
2919
+ "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number>;
2920
+ "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number>;
2921
+ "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number>;
2922
+ "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
2923
+ "-moz-tab-size"?: import("csstype").Property.TabSize<string | number>;
2924
+ "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
2925
+ "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2926
+ "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
2927
+ "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
2928
+ "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
2929
+ "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
2930
+ "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
2931
+ "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
2932
+ "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
2933
+ "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
2934
+ "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2935
+ "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2936
+ "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2937
+ "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
2938
+ "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
2939
+ "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
2940
+ "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2941
+ "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
2942
+ "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
2943
+ "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
2944
+ "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number>;
2945
+ "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number>;
2946
+ "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
2947
+ "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2948
+ "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2949
+ "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number>;
2950
+ "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
2951
+ "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
2952
+ "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
2953
+ "-ms-order"?: import("csstype").Property.Order | undefined;
2954
+ "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
2955
+ "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
2956
+ "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
2957
+ "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
2958
+ "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number>;
2959
+ "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number>;
2960
+ "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number>;
2961
+ "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number>;
2962
+ "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
2963
+ "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2964
+ "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2965
+ "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
2966
+ "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
2967
+ "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2968
+ "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2969
+ "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2970
+ "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2971
+ "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2972
+ "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2973
+ "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2974
+ "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2975
+ "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
2976
+ "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
2977
+ "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
2978
+ "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
2979
+ "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
2980
+ "-ms-transform"?: import("csstype").Property.Transform | undefined;
2981
+ "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
2982
+ "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
2983
+ "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
2984
+ "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2985
+ "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2986
+ "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
2987
+ "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
2988
+ "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
2989
+ "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number>;
2990
+ "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
2991
+ "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
2992
+ "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
2993
+ "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
2994
+ "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
2995
+ "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}>;
2996
+ "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2997
+ "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}>;
2998
+ "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2999
+ "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3000
+ "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
3001
+ "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3002
+ "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3003
+ "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
3004
+ "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
3005
+ "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3006
+ "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3007
+ "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3008
+ "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number>;
3009
+ "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
3010
+ "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
3011
+ "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number>;
3012
+ "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
3013
+ "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number>;
3014
+ "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
3015
+ "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number>;
3016
+ "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number>;
3017
+ "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
3018
+ "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number>;
3019
+ "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3020
+ "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
3021
+ "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
3022
+ "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
3023
+ "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
3024
+ "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
3025
+ "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
3026
+ "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number>;
3027
+ "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
3028
+ "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number>;
3029
+ "-webkit-filter"?: import("csstype").Property.Filter | undefined;
3030
+ "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number>;
3031
+ "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
3032
+ "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
3033
+ "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
3034
+ "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
3035
+ "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
3036
+ "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
3037
+ "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number>;
3038
+ "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
3039
+ "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
3040
+ "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
3041
+ "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
3042
+ "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
3043
+ "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
3044
+ "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
3045
+ "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number>;
3046
+ "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number>;
3047
+ "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
3048
+ "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number>;
3049
+ "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
3050
+ "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
3051
+ "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
3052
+ "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number>;
3053
+ "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
3054
+ "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
3055
+ "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
3056
+ "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
3057
+ "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number>;
3058
+ "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number>;
3059
+ "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number>;
3060
+ "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
3061
+ "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3062
+ "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3063
+ "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number>;
3064
+ "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number>;
3065
+ "-webkit-order"?: import("csstype").Property.Order | undefined;
3066
+ "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3067
+ "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number>;
3068
+ "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number>;
3069
+ "-webkit-perspective"?: import("csstype").Property.Perspective<string | number>;
3070
+ "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number>;
3071
+ "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
3072
+ "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
3073
+ "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
3074
+ "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number>;
3075
+ "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
3076
+ "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
3077
+ "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3078
+ "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3079
+ "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
3080
+ "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3081
+ "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
3082
+ "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
3083
+ "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
3084
+ "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
3085
+ "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
3086
+ "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
3087
+ "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
3088
+ "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number>;
3089
+ "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
3090
+ "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
3091
+ "-webkit-transform"?: import("csstype").Property.Transform | undefined;
3092
+ "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
3093
+ "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
3094
+ "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
3095
+ "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
3096
+ "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3097
+ "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3098
+ "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
3099
+ "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
3100
+ "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
3101
+ "-moz-animation"?: import("csstype").Property.Animation<string & {}>;
3102
+ "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
3103
+ "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number>;
3104
+ "-moz-columns"?: import("csstype").Property.Columns<string | number>;
3105
+ "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number>;
3106
+ "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
3107
+ "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
3108
+ "-ms-flex"?: import("csstype").Property.Flex<string | number>;
3109
+ "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
3110
+ "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
3111
+ "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
3112
+ "-ms-transition"?: import("csstype").Property.Transition<string & {}>;
3113
+ "-webkit-animation"?: import("csstype").Property.Animation<string & {}>;
3114
+ "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number>;
3115
+ "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
3116
+ "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number>;
3117
+ "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number>;
3118
+ "-webkit-columns"?: import("csstype").Property.Columns<string | number>;
3119
+ "-webkit-flex"?: import("csstype").Property.Flex<string | number>;
3120
+ "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
3121
+ "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number>;
3122
+ "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
3123
+ "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
3124
+ "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number>;
3125
+ "-webkit-transition"?: import("csstype").Property.Transition<string & {}>;
3126
+ "box-align"?: import("csstype").Property.BoxAlign | undefined;
3127
+ "box-direction"?: import("csstype").Property.BoxDirection | undefined;
3128
+ "box-flex"?: import("csstype").Property.BoxFlex | undefined;
3129
+ "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3130
+ "box-lines"?: import("csstype").Property.BoxLines | undefined;
3131
+ "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3132
+ "box-orient"?: import("csstype").Property.BoxOrient | undefined;
3133
+ "box-pack"?: import("csstype").Property.BoxPack | undefined;
3134
+ "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number>;
3135
+ "grid-gap"?: import("csstype").Property.GridGap<string | number>;
3136
+ "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number>;
3137
+ "ime-mode"?: import("csstype").Property.ImeMode | undefined;
3138
+ "offset-block"?: import("csstype").Property.InsetBlock<string | number>;
3139
+ "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number>;
3140
+ "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number>;
3141
+ "offset-inline"?: import("csstype").Property.InsetInline<string | number>;
3142
+ "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number>;
3143
+ "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number>;
3144
+ "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number>;
3145
+ "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number>;
3146
+ "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
3147
+ "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
3148
+ "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
3149
+ "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
3150
+ "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
3151
+ "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3152
+ "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3153
+ "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3154
+ "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
3155
+ "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3156
+ "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3157
+ "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
3158
+ "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
3159
+ "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
3160
+ "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
3161
+ "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3162
+ "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3163
+ "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
3164
+ "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3165
+ "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number>;
3166
+ "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number>;
3167
+ "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
3168
+ "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number>;
3169
+ "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number>;
3170
+ "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number>;
3171
+ "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
3172
+ "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3173
+ "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3174
+ "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3175
+ "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3176
+ "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
3177
+ "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3178
+ "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
3179
+ "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
3180
+ "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
3181
+ "-moz-outline"?: import("csstype").Property.Outline<string | number>;
3182
+ "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
3183
+ "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
3184
+ "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number>;
3185
+ "-moz-perspective"?: import("csstype").Property.Perspective<string | number>;
3186
+ "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number>;
3187
+ "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
3188
+ "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3189
+ "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3190
+ "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3191
+ "-moz-transform"?: import("csstype").Property.Transform | undefined;
3192
+ "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
3193
+ "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
3194
+ "-moz-transition"?: import("csstype").Property.Transition<string & {}>;
3195
+ "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
3196
+ "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
3197
+ "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3198
+ "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3199
+ "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
3200
+ "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
3201
+ "-o-animation"?: import("csstype").Property.Animation<string & {}>;
3202
+ "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}>;
3203
+ "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3204
+ "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}>;
3205
+ "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3206
+ "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3207
+ "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
3208
+ "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3209
+ "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3210
+ "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number>;
3211
+ "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
3212
+ "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
3213
+ "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number>;
3214
+ "-o-tab-size"?: import("csstype").Property.TabSize<string | number>;
3215
+ "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
3216
+ "-o-transform"?: import("csstype").Property.Transform | undefined;
3217
+ "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number>;
3218
+ "-o-transition"?: import("csstype").Property.Transition<string & {}>;
3219
+ "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}>;
3220
+ "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}>;
3221
+ "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3222
+ "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3223
+ "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
3224
+ "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3225
+ "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3226
+ "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3227
+ "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
3228
+ "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3229
+ "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3230
+ "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
3231
+ "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
3232
+ "baseline-shift"?: import("csstype").Property.BaselineShift<string | number>;
3233
+ "clip-rule"?: import("csstype").Property.ClipRule | undefined;
3234
+ "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
3235
+ "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
3236
+ "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
3237
+ "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
3238
+ "fill-rule"?: import("csstype").Property.FillRule | undefined;
3239
+ "flood-color"?: import("csstype").Property.FloodColor | undefined;
3240
+ "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
3241
+ "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
3242
+ "lighting-color"?: import("csstype").Property.LightingColor | undefined;
3243
+ "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
3244
+ "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
3245
+ "marker-start"?: import("csstype").Property.MarkerStart | undefined;
3246
+ "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
3247
+ "stop-color"?: import("csstype").Property.StopColor | undefined;
3248
+ "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
3249
+ "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number>;
3250
+ "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number>;
3251
+ "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
3252
+ "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
3253
+ "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
3254
+ "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
3255
+ "stroke-width"?: import("csstype").Property.StrokeWidth<string | number>;
3256
+ "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
3257
+ "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
3258
+ }>;
3259
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "load-lend-menu-data"[], "load-lend-menu-data", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3260
+ loggedIn: {
3261
+ type: BooleanConstructor;
3262
+ default: boolean;
3263
+ };
3264
+ basketCount: {
3265
+ type: NumberConstructor;
3266
+ default: number;
3267
+ };
3268
+ loginUrl: {
3269
+ type: StringConstructor;
3270
+ default: string;
3271
+ };
3272
+ balance: {
3273
+ type: NumberConstructor;
3274
+ default: number;
3275
+ };
3276
+ isBasketDataLoading: {
3277
+ type: BooleanConstructor;
3278
+ default: boolean;
3279
+ };
3280
+ isBorrower: {
3281
+ type: BooleanConstructor;
3282
+ default: boolean;
3283
+ };
3284
+ isTrustee: {
3285
+ type: BooleanConstructor;
3286
+ default: boolean;
3287
+ };
3288
+ isUserDataLoading: {
3289
+ type: BooleanConstructor;
3290
+ default: boolean;
3291
+ };
3292
+ userId: {
3293
+ type: NumberConstructor;
3294
+ default: any;
3295
+ };
3296
+ myDashboardUrl: {
3297
+ type: StringConstructor;
3298
+ default: string;
3299
+ };
3300
+ lenderName: {
3301
+ type: StringConstructor;
3302
+ default: string;
3303
+ };
3304
+ lenderImageUrl: {
3305
+ type: StringConstructor;
3306
+ default: string;
3307
+ };
3308
+ showMGUpsellLink: {
3309
+ type: BooleanConstructor;
3310
+ default: boolean;
3311
+ };
3312
+ countriesNotLentToUrl: {
3313
+ type: StringConstructor;
3314
+ default: string;
3315
+ };
3316
+ }>> & Readonly<{
3317
+ "onLoad-lend-menu-data"?: (...args: any[]) => any;
3318
+ }>, {
3319
+ lenderName: string;
3320
+ lenderImageUrl: string;
3321
+ basketCount: number;
3322
+ loggedIn: boolean;
3323
+ loginUrl: string;
3324
+ balance: number;
3325
+ isBorrower: boolean;
3326
+ isTrustee: boolean;
3327
+ myDashboardUrl: string;
3328
+ userId: number;
3329
+ showMGUpsellLink: boolean;
3330
+ countriesNotLentToUrl: string;
3331
+ isBasketDataLoading: boolean;
3332
+ isUserDataLoading: boolean;
3333
+ }, {}, {
3334
+ KvHeaderLinkBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3335
+ loggedIn: {
3336
+ type: BooleanConstructor;
3337
+ default: boolean;
3338
+ };
3339
+ basketCount: {
3340
+ type: NumberConstructor;
3341
+ default: number;
3342
+ };
3343
+ openMenuItem: {
3344
+ type: (ObjectConstructor | FunctionConstructor)[];
3345
+ default: any;
3346
+ };
3347
+ loginUrl: {
3348
+ type: StringConstructor;
3349
+ default: string;
3350
+ };
3351
+ myDashboardUrl: {
3352
+ type: StringConstructor;
3353
+ default: string;
3354
+ };
3355
+ lenderName: {
3356
+ type: StringConstructor;
3357
+ default: string;
3358
+ };
3359
+ lenderImageUrl: {
3360
+ type: StringConstructor;
3361
+ default: string;
3362
+ };
3363
+ isMobile: {
3364
+ type: BooleanConstructor;
3365
+ default: boolean;
3366
+ };
3367
+ balance: {
3368
+ type: NumberConstructor;
3369
+ default: number;
3370
+ };
3371
+ isBasketDataLoading: {
3372
+ type: BooleanConstructor;
3373
+ default: boolean;
3374
+ };
3375
+ isUserDataLoading: {
3376
+ type: BooleanConstructor;
3377
+ default: boolean;
3378
+ };
3379
+ }>, {
3380
+ AVATAR_MENU_ID: string;
3381
+ openMenuId: import('vue').Ref<any, any>;
3382
+ numeral: any;
3383
+ mdiAccountCircle: string;
3384
+ mdiChevronDown: string;
3385
+ mdiMagnify: string;
3386
+ mdiMenu: string;
3387
+ onHover: (item?: any, menu?: any, targetPosition?: any) => void;
3388
+ avatar: import('vue').Ref<any, any>;
3389
+ lendButton: import('vue').Ref<any, any>;
3390
+ aboutUsLink: import('vue').Ref<any, any>;
3391
+ partnerWithUsLink: import('vue').Ref<any, any>;
3392
+ borrowLink: import('vue').Ref<any, any>;
3393
+ supportKivaLink: import('vue').Ref<any, any>;
3394
+ basketLink: import('vue').Ref<any, any>;
3395
+ signInLink: import('vue').Ref<any, any>;
3396
+ menuButton: import('vue').Ref<any, any>;
3397
+ lendUrl: import('vue').ComputedRef<string>;
3398
+ avatarFilename: import('vue').ComputedRef<string>;
3399
+ handleOnHover: (item: any, menu: any, targetPosition?: any) => void;
3400
+ handleTouchStart: (item: string, menu?: any, targetPosition?: any) => void;
3401
+ handleMouseOut: (item: any) => void;
3402
+ handleAvatarMenuPosition: () => void;
3403
+ KvHeaderMobileMenu: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3404
+ loggedIn: {
3405
+ type: BooleanConstructor;
3406
+ default: boolean;
3407
+ };
3408
+ loginUrl: {
3409
+ type: StringConstructor;
3410
+ default: string;
3411
+ };
3412
+ isMobile: {
3413
+ type: BooleanConstructor;
3414
+ default: boolean;
3415
+ };
3416
+ }>, {}, {
3417
+ mdiClose: string;
3418
+ menuItems: {
3419
+ title: string;
3420
+ description: string;
3421
+ url: string;
3422
+ trackEvent: string;
3423
+ }[];
3424
+ }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "closing-menu"[], "closing-menu", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3425
+ loggedIn: {
3426
+ type: BooleanConstructor;
3427
+ default: boolean;
3428
+ };
3429
+ loginUrl: {
3430
+ type: StringConstructor;
3431
+ default: string;
3432
+ };
3433
+ isMobile: {
3434
+ type: BooleanConstructor;
3435
+ default: boolean;
3436
+ };
3437
+ }>> & Readonly<{
3438
+ "onClosing-menu"?: (...args: any[]) => any;
3439
+ }>, {
3440
+ loggedIn: boolean;
3441
+ loginUrl: string;
3442
+ isMobile: boolean;
3443
+ }, {}, {
3444
+ KvAccordionItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3445
+ id: {
3446
+ type: StringConstructor;
3447
+ required: true;
3448
+ validator: (v: string) => boolean;
3449
+ };
3450
+ open: {
3451
+ type: BooleanConstructor;
3452
+ default: boolean;
3453
+ };
3454
+ disabled: {
3455
+ type: BooleanConstructor;
3456
+ default: boolean;
3457
+ };
3458
+ }>, {
3459
+ collapse: () => void;
3460
+ expand: () => void;
3461
+ isOpen: import('vue').Ref<boolean, boolean>;
3462
+ mdiChevronDown: string;
3463
+ toggle: () => void;
3464
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "toggle"[], "toggle", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3465
+ id: {
3466
+ type: StringConstructor;
3467
+ required: true;
3468
+ validator: (v: string) => boolean;
3469
+ };
3470
+ open: {
3471
+ type: BooleanConstructor;
3472
+ default: boolean;
3473
+ };
3474
+ disabled: {
3475
+ type: BooleanConstructor;
3476
+ default: boolean;
3477
+ };
3478
+ }>> & Readonly<{
3479
+ onToggle?: (...args: any[]) => any;
3480
+ }>, {
3481
+ open: boolean;
3482
+ disabled: boolean;
3483
+ }, {}, {
3484
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3485
+ icon: {
3486
+ type: StringConstructor;
3487
+ default: string;
3488
+ };
3489
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3490
+ icon: {
3491
+ type: StringConstructor;
3492
+ default: string;
3493
+ };
3494
+ }>> & Readonly<{}>, {
3495
+ icon: string;
3496
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3497
+ KvExpandable: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3498
+ property: {
3499
+ type: StringConstructor;
3500
+ default: string;
3501
+ };
3502
+ delay: {
3503
+ type: NumberConstructor;
3504
+ default: number;
3505
+ };
3506
+ easing: {
3507
+ type: StringConstructor;
3508
+ default: string;
3509
+ };
3510
+ skipEnter: {
3511
+ type: BooleanConstructor;
3512
+ default: boolean;
3513
+ };
3514
+ skipLeave: {
3515
+ type: BooleanConstructor;
3516
+ default: boolean;
3517
+ };
3518
+ }>, {
3519
+ enter: (el: any, done: any) => any;
3520
+ leave: (el: any, done: any) => any;
3521
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3522
+ property: {
3523
+ type: StringConstructor;
3524
+ default: string;
3525
+ };
3526
+ delay: {
3527
+ type: NumberConstructor;
3528
+ default: number;
3529
+ };
3530
+ easing: {
3531
+ type: StringConstructor;
3532
+ default: string;
3533
+ };
3534
+ skipEnter: {
3535
+ type: BooleanConstructor;
3536
+ default: boolean;
3537
+ };
3538
+ skipLeave: {
3539
+ type: BooleanConstructor;
3540
+ default: boolean;
3541
+ };
3542
+ }>> & Readonly<{}>, {
3543
+ property: string;
3544
+ delay: number;
3545
+ easing: string;
3546
+ skipEnter: boolean;
3547
+ skipLeave: boolean;
3548
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3549
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3550
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3551
+ icon: {
3552
+ type: StringConstructor;
3553
+ default: string;
3554
+ };
3555
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3556
+ icon: {
3557
+ type: StringConstructor;
3558
+ default: string;
3559
+ };
3560
+ }>> & Readonly<{}>, {
3561
+ icon: string;
3562
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3563
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3564
+ KvHeaderMyKivaMenu: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3565
+ balance: {
3566
+ type: NumberConstructor;
3567
+ default: number;
3568
+ };
3569
+ isBorrower: {
3570
+ type: BooleanConstructor;
3571
+ default: boolean;
3572
+ };
3573
+ isTrustee: {
3574
+ type: BooleanConstructor;
3575
+ default: boolean;
3576
+ };
3577
+ myDashboardUrl: {
3578
+ type: StringConstructor;
3579
+ default: string;
3580
+ };
3581
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3582
+ balance: {
3583
+ type: NumberConstructor;
3584
+ default: number;
3585
+ };
3586
+ isBorrower: {
3587
+ type: BooleanConstructor;
3588
+ default: boolean;
3589
+ };
3590
+ isTrustee: {
3591
+ type: BooleanConstructor;
3592
+ default: boolean;
3593
+ };
3594
+ myDashboardUrl: {
3595
+ type: StringConstructor;
3596
+ default: string;
3597
+ };
3598
+ }>> & Readonly<{}>, {
3599
+ balance: number;
3600
+ isBorrower: boolean;
3601
+ isTrustee: boolean;
3602
+ myDashboardUrl: string;
3603
+ }, {}, {
3604
+ KvHeaderMenuLink: {
3605
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLAnchorElement, import('vue').ComponentProvideOptions, {
3606
+ P: {};
3607
+ B: {};
3608
+ D: {};
3609
+ C: {};
3610
+ M: {};
3611
+ Defaults: {};
3612
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
3613
+ __isFragment?: never;
3614
+ __isTeleport?: never;
3615
+ __isSuspense?: never;
3616
+ } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
3617
+ $slots: {
3618
+ default?(_: {}): any;
3619
+ };
3620
+ });
3621
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3622
+ KvLendMenu: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3623
+ userId: {
3624
+ type: NumberConstructor;
3625
+ default: any;
3626
+ };
3627
+ showMGUpsellLink: {
3628
+ type: BooleanConstructor;
3629
+ default: boolean;
3630
+ };
3631
+ countriesNotLentToUrl: {
3632
+ type: StringConstructor;
3633
+ default: string;
3634
+ };
3635
+ }>, {
3636
+ onLoad: (apollo: any) => Promise<void>;
3637
+ regions: import('vue').ComputedRef<any[]>;
3638
+ computedCategories: import('vue').ComputedRef<any[]>;
3639
+ isChannelsLoading: import('vue').Ref<boolean, boolean>;
3640
+ isRegionsLoading: import('vue').Ref<boolean, boolean>;
3641
+ savedSearches: import('vue').Ref<any[], any[]>;
3642
+ favoritesCount: import('vue').Ref<number, number>;
3643
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "load-lend-menu-data"[], "load-lend-menu-data", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3644
+ userId: {
3645
+ type: NumberConstructor;
3646
+ default: any;
3647
+ };
3648
+ showMGUpsellLink: {
3649
+ type: BooleanConstructor;
3650
+ default: boolean;
3651
+ };
3652
+ countriesNotLentToUrl: {
3653
+ type: StringConstructor;
3654
+ default: string;
3655
+ };
3656
+ }>> & Readonly<{
3657
+ "onLoad-lend-menu-data"?: (...args: any[]) => any;
3658
+ }>, {
3659
+ userId: number;
3660
+ showMGUpsellLink: boolean;
3661
+ countriesNotLentToUrl: string;
3662
+ }, {}, {
3663
+ KvLendListMenu: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3664
+ categories: {
3665
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendListMenu.vue').Category[]>;
3666
+ default: () => any[];
3667
+ };
3668
+ favorites: {
3669
+ type: NumberConstructor;
3670
+ default: number;
3671
+ };
3672
+ userId: {
3673
+ type: NumberConstructor;
3674
+ default: any;
3675
+ };
3676
+ regions: {
3677
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendListMenu.vue').Region[]>;
3678
+ default: () => any[];
3679
+ };
3680
+ searches: {
3681
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[]>;
3682
+ default: () => any[];
3683
+ };
3684
+ isRegionsLoading: {
3685
+ type: BooleanConstructor;
3686
+ default: boolean;
3687
+ };
3688
+ isChannelsLoading: {
3689
+ type: BooleanConstructor;
3690
+ default: boolean;
3691
+ };
3692
+ showMGUpsellLink: {
3693
+ type: BooleanConstructor;
3694
+ default: boolean;
3695
+ };
3696
+ countriesNotLentToUrl: {
3697
+ type: StringConstructor;
3698
+ default: string;
3699
+ };
3700
+ }>, {
3701
+ mdiArrowRight: string;
3702
+ hasSearches: import('vue').ComputedRef<boolean>;
3703
+ navLendCategories: import('vue').Ref<any, any>;
3704
+ regionAccordions: import('vue').Ref<any[], any[]>;
3705
+ searchesLink: import('vue').Ref<any, any>;
3706
+ onClose: () => void;
3707
+ paramCase: typeof import('../utils/paramCase').default;
3708
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3709
+ categories: {
3710
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendListMenu.vue').Category[]>;
3711
+ default: () => any[];
3712
+ };
3713
+ favorites: {
3714
+ type: NumberConstructor;
3715
+ default: number;
3716
+ };
3717
+ userId: {
3718
+ type: NumberConstructor;
3719
+ default: any;
3720
+ };
3721
+ regions: {
3722
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendListMenu.vue').Region[]>;
3723
+ default: () => any[];
3724
+ };
3725
+ searches: {
3726
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[]>;
3727
+ default: () => any[];
3728
+ };
3729
+ isRegionsLoading: {
3730
+ type: BooleanConstructor;
3731
+ default: boolean;
3732
+ };
3733
+ isChannelsLoading: {
3734
+ type: BooleanConstructor;
3735
+ default: boolean;
3736
+ };
3737
+ showMGUpsellLink: {
3738
+ type: BooleanConstructor;
3739
+ default: boolean;
3740
+ };
3741
+ countriesNotLentToUrl: {
3742
+ type: StringConstructor;
3743
+ default: string;
3744
+ };
3745
+ }>> & Readonly<{}>, {
3746
+ searches: import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[];
3747
+ categories: import('./KvWwwHeader/LendMenu/KvLendListMenu.vue').Category[];
3748
+ favorites: number;
3749
+ userId: number;
3750
+ regions: import('./KvWwwHeader/LendMenu/KvLendListMenu.vue').Region[];
3751
+ isRegionsLoading: boolean;
3752
+ isChannelsLoading: boolean;
3753
+ showMGUpsellLink: boolean;
3754
+ countriesNotLentToUrl: string;
3755
+ }, {}, {
3756
+ KvAccordionItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3757
+ id: {
3758
+ type: StringConstructor;
3759
+ required: true;
3760
+ validator: (v: string) => boolean;
3761
+ };
3762
+ open: {
3763
+ type: BooleanConstructor;
3764
+ default: boolean;
3765
+ };
3766
+ disabled: {
3767
+ type: BooleanConstructor;
3768
+ default: boolean;
3769
+ };
3770
+ }>, {
3771
+ collapse: () => void;
3772
+ expand: () => void;
3773
+ isOpen: import('vue').Ref<boolean, boolean>;
3774
+ mdiChevronDown: string;
3775
+ toggle: () => void;
3776
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "toggle"[], "toggle", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3777
+ id: {
3778
+ type: StringConstructor;
3779
+ required: true;
3780
+ validator: (v: string) => boolean;
3781
+ };
3782
+ open: {
3783
+ type: BooleanConstructor;
3784
+ default: boolean;
3785
+ };
3786
+ disabled: {
3787
+ type: BooleanConstructor;
3788
+ default: boolean;
3789
+ };
3790
+ }>> & Readonly<{
3791
+ onToggle?: (...args: any[]) => any;
3792
+ }>, {
3793
+ open: boolean;
3794
+ disabled: boolean;
3795
+ }, {}, {
3796
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3797
+ icon: {
3798
+ type: StringConstructor;
3799
+ default: string;
3800
+ };
3801
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3802
+ icon: {
3803
+ type: StringConstructor;
3804
+ default: string;
3805
+ };
3806
+ }>> & Readonly<{}>, {
3807
+ icon: string;
3808
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3809
+ KvExpandable: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3810
+ property: {
3811
+ type: StringConstructor;
3812
+ default: string;
3813
+ };
3814
+ delay: {
3815
+ type: NumberConstructor;
3816
+ default: number;
3817
+ };
3818
+ easing: {
3819
+ type: StringConstructor;
3820
+ default: string;
3821
+ };
3822
+ skipEnter: {
3823
+ type: BooleanConstructor;
3824
+ default: boolean;
3825
+ };
3826
+ skipLeave: {
3827
+ type: BooleanConstructor;
3828
+ default: boolean;
3829
+ };
3830
+ }>, {
3831
+ enter: (el: any, done: any) => any;
3832
+ leave: (el: any, done: any) => any;
3833
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3834
+ property: {
3835
+ type: StringConstructor;
3836
+ default: string;
3837
+ };
3838
+ delay: {
3839
+ type: NumberConstructor;
3840
+ default: number;
3841
+ };
3842
+ easing: {
3843
+ type: StringConstructor;
3844
+ default: string;
3845
+ };
3846
+ skipEnter: {
3847
+ type: BooleanConstructor;
3848
+ default: boolean;
3849
+ };
3850
+ skipLeave: {
3851
+ type: BooleanConstructor;
3852
+ default: boolean;
3853
+ };
3854
+ }>> & Readonly<{}>, {
3855
+ property: string;
3856
+ delay: number;
3857
+ easing: string;
3858
+ skipEnter: boolean;
3859
+ skipLeave: boolean;
3860
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3861
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3862
+ KvTab: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3863
+ forPanel: {
3864
+ type: StringConstructor;
3865
+ required: true;
3866
+ };
3867
+ selected: {
3868
+ type: BooleanConstructor;
3869
+ default: boolean;
3870
+ };
3871
+ vertical: {
3872
+ type: BooleanConstructor;
3873
+ default: boolean;
3874
+ };
3875
+ }>, {
3876
+ isActive: import('vue').ComputedRef<boolean>;
3877
+ handleTabClicked: () => void;
3878
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3879
+ forPanel: {
3880
+ type: StringConstructor;
3881
+ required: true;
3882
+ };
3883
+ selected: {
3884
+ type: BooleanConstructor;
3885
+ default: boolean;
3886
+ };
3887
+ vertical: {
3888
+ type: BooleanConstructor;
3889
+ default: boolean;
3890
+ };
3891
+ }>> & Readonly<{}>, {
3892
+ vertical: boolean;
3893
+ selected: boolean;
3894
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3895
+ KvTabPanel: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3896
+ id: {
3897
+ type: StringConstructor;
3898
+ required: true;
3899
+ };
3900
+ }>, {
3901
+ isActive: import('vue').ComputedRef<boolean>;
3902
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3903
+ id: {
3904
+ type: StringConstructor;
3905
+ required: true;
3906
+ };
3907
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3908
+ KvTabs: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3909
+ vertical: {
3910
+ type: BooleanConstructor;
3911
+ default: boolean;
3912
+ };
3913
+ }>, {
3914
+ handleKeyDown: (event: any) => void;
3915
+ selectedTabEl: import('vue').ComputedRef<any>;
3916
+ tabContext: {
3917
+ selectedIndex: number;
3918
+ setTab: any;
3919
+ navItems: any[];
3920
+ };
3921
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3922
+ vertical: {
3923
+ type: BooleanConstructor;
3924
+ default: boolean;
3925
+ };
3926
+ }>> & Readonly<{}>, {
3927
+ vertical: boolean;
3928
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3929
+ KvLendMenuCountryList: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3930
+ countries: {
3931
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuCountryList.vue').LendMenuCountry[]>;
3932
+ default: () => any[];
3933
+ };
3934
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3935
+ countries: {
3936
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuCountryList.vue').LendMenuCountry[]>;
3937
+ default: () => any[];
3938
+ };
3939
+ }>> & Readonly<{}>, {
3940
+ countries: import('./KvWwwHeader/LendMenu/KvLendMenuCountryList.vue').LendMenuCountry[];
3941
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3942
+ KvLendMenuSearchList: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3943
+ searches: {
3944
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[]>;
3945
+ default: () => any[];
3946
+ };
3947
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3948
+ searches: {
3949
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[]>;
3950
+ default: () => any[];
3951
+ };
3952
+ }>> & Readonly<{}>, {
3953
+ searches: import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[];
3954
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3955
+ KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
3956
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3957
+ icon: {
3958
+ type: StringConstructor;
3959
+ default: string;
3960
+ };
3961
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3962
+ icon: {
3963
+ type: StringConstructor;
3964
+ default: string;
3965
+ };
3966
+ }>> & Readonly<{}>, {
3967
+ icon: string;
3968
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3969
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3970
+ KvLendMegaMenu: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3971
+ categories: {
3972
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMegaMenu.vue').Category[]>;
3973
+ default: () => any[];
3974
+ };
3975
+ favorites: {
3976
+ type: NumberConstructor;
3977
+ default: number;
3978
+ };
3979
+ isRegionsLoading: {
3980
+ type: BooleanConstructor;
3981
+ default: boolean;
3982
+ };
3983
+ isChannelsLoading: {
3984
+ type: BooleanConstructor;
3985
+ default: boolean;
3986
+ };
3987
+ userId: {
3988
+ type: NumberConstructor;
3989
+ default: any;
3990
+ };
3991
+ regions: {
3992
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMegaMenu.vue').Region[]>;
3993
+ default: () => any[];
3994
+ };
3995
+ searches: {
3996
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[]>;
3997
+ default: () => any[];
3998
+ };
3999
+ showMGUpsellLink: {
4000
+ type: BooleanConstructor;
4001
+ default: boolean;
4002
+ };
4003
+ countriesNotLentToUrl: {
4004
+ type: StringConstructor;
4005
+ default: string;
4006
+ };
4007
+ }>, {
4008
+ mdiArrowRight: string;
4009
+ mdiChevronLeft: string;
4010
+ categoriesSection: import('vue').Ref<any, any>;
4011
+ openedSection: import('vue').Ref<string, string>;
4012
+ sectionOpen: import('vue').ComputedRef<boolean>;
4013
+ isOpenSection: (name: any) => boolean;
4014
+ openSection: (name: any) => void;
4015
+ onClose: () => void;
4016
+ openRegions: import('vue').ComputedRef<import('./KvWwwHeader/LendMenu/KvLendMegaMenu.vue').Region[]>;
4017
+ computedStyle: import('vue').ComputedRef<{
4018
+ width: string;
4019
+ transform?: string;
4020
+ }>;
4021
+ hasSearches: import('vue').ComputedRef<boolean>;
4022
+ savedSearchesTitle: string;
4023
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4024
+ categories: {
4025
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMegaMenu.vue').Category[]>;
4026
+ default: () => any[];
4027
+ };
4028
+ favorites: {
4029
+ type: NumberConstructor;
4030
+ default: number;
4031
+ };
4032
+ isRegionsLoading: {
4033
+ type: BooleanConstructor;
4034
+ default: boolean;
4035
+ };
4036
+ isChannelsLoading: {
4037
+ type: BooleanConstructor;
4038
+ default: boolean;
4039
+ };
4040
+ userId: {
4041
+ type: NumberConstructor;
4042
+ default: any;
4043
+ };
4044
+ regions: {
4045
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMegaMenu.vue').Region[]>;
4046
+ default: () => any[];
4047
+ };
4048
+ searches: {
4049
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[]>;
4050
+ default: () => any[];
4051
+ };
4052
+ showMGUpsellLink: {
4053
+ type: BooleanConstructor;
4054
+ default: boolean;
4055
+ };
4056
+ countriesNotLentToUrl: {
4057
+ type: StringConstructor;
4058
+ default: string;
4059
+ };
4060
+ }>> & Readonly<{}>, {
4061
+ searches: import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[];
4062
+ categories: import('./KvWwwHeader/LendMenu/KvLendMegaMenu.vue').Category[];
4063
+ favorites: number;
4064
+ userId: number;
4065
+ regions: import('./KvWwwHeader/LendMenu/KvLendMegaMenu.vue').Region[];
4066
+ isRegionsLoading: boolean;
4067
+ isChannelsLoading: boolean;
4068
+ showMGUpsellLink: boolean;
4069
+ countriesNotLentToUrl: string;
4070
+ }, {}, {
4071
+ KvGrid: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4072
+ as: {
4073
+ type: StringConstructor;
4074
+ default: string;
4075
+ };
4076
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4077
+ as: {
4078
+ type: StringConstructor;
4079
+ default: string;
4080
+ };
4081
+ }>> & Readonly<{}>, {
4082
+ as: string;
4083
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4084
+ KvLendMenuCountryList: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4085
+ countries: {
4086
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuCountryList.vue').LendMenuCountry[]>;
4087
+ default: () => any[];
4088
+ };
4089
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4090
+ countries: {
4091
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuCountryList.vue').LendMenuCountry[]>;
4092
+ default: () => any[];
4093
+ };
4094
+ }>> & Readonly<{}>, {
4095
+ countries: import('./KvWwwHeader/LendMenu/KvLendMenuCountryList.vue').LendMenuCountry[];
4096
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4097
+ KvLendMenuSearchList: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4098
+ searches: {
4099
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[]>;
4100
+ default: () => any[];
4101
+ };
4102
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4103
+ searches: {
4104
+ type: import('vue').PropType<import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[]>;
4105
+ default: () => any[];
4106
+ };
4107
+ }>> & Readonly<{}>, {
4108
+ searches: import('./KvWwwHeader/LendMenu/KvLendMenuSearchList.vue').LendMenuSearch[];
4109
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4110
+ KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
4111
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4112
+ icon: {
4113
+ type: StringConstructor;
4114
+ default: string;
4115
+ };
4116
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4117
+ icon: {
4118
+ type: StringConstructor;
4119
+ default: string;
4120
+ };
4121
+ }>> & Readonly<{}>, {
4122
+ icon: string;
4123
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4124
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4125
+ KvPageContainer: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4126
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4127
+ KvHeaderTakeActionMenu: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
4128
+ KvHeaderMenuLink: {
4129
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLAnchorElement, import('vue').ComponentProvideOptions, {
4130
+ P: {};
4131
+ B: {};
4132
+ D: {};
4133
+ C: {};
4134
+ M: {};
4135
+ Defaults: {};
4136
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
4137
+ __isFragment?: never;
4138
+ __isTeleport?: never;
4139
+ __isSuspense?: never;
4140
+ } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
4141
+ $slots: {
4142
+ default?(_: {}): any;
4143
+ };
4144
+ });
4145
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4146
+ KvHeaderAboutMenu: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
4147
+ KvHeaderMenuLink: {
4148
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLAnchorElement, import('vue').ComponentProvideOptions, {
4149
+ P: {};
4150
+ B: {};
4151
+ D: {};
4152
+ C: {};
4153
+ M: {};
4154
+ Defaults: {};
4155
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
4156
+ __isFragment?: never;
4157
+ __isTeleport?: never;
4158
+ __isSuspense?: never;
4159
+ } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
4160
+ $slots: {
4161
+ default?(_: {}): any;
4162
+ };
4163
+ });
4164
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4165
+ isLegacyPlaceholderAvatar: typeof import('..').isLegacyPlaceholderAvatar;
4166
+ getAvatarMenuPosition: () => {
4167
+ right: string | number;
4168
+ };
4169
+ handleEmptySpaceClick: (event: any) => void;
4170
+ roundedBalance: import('vue').ComputedRef<number>;
4171
+ isDefaultProfilePic: import('vue').ComputedRef<boolean>;
4172
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "item-hover"[], "item-hover", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4173
+ loggedIn: {
4174
+ type: BooleanConstructor;
4175
+ default: boolean;
4176
+ };
4177
+ basketCount: {
4178
+ type: NumberConstructor;
4179
+ default: number;
4180
+ };
4181
+ openMenuItem: {
4182
+ type: (ObjectConstructor | FunctionConstructor)[];
4183
+ default: any;
4184
+ };
4185
+ loginUrl: {
4186
+ type: StringConstructor;
4187
+ default: string;
4188
+ };
4189
+ myDashboardUrl: {
4190
+ type: StringConstructor;
4191
+ default: string;
4192
+ };
4193
+ lenderName: {
4194
+ type: StringConstructor;
4195
+ default: string;
4196
+ };
4197
+ lenderImageUrl: {
4198
+ type: StringConstructor;
4199
+ default: string;
4200
+ };
4201
+ isMobile: {
4202
+ type: BooleanConstructor;
4203
+ default: boolean;
4204
+ };
4205
+ balance: {
4206
+ type: NumberConstructor;
4207
+ default: number;
4208
+ };
4209
+ isBasketDataLoading: {
4210
+ type: BooleanConstructor;
4211
+ default: boolean;
4212
+ };
4213
+ isUserDataLoading: {
4214
+ type: BooleanConstructor;
4215
+ default: boolean;
4216
+ };
4217
+ }>> & Readonly<{
4218
+ "onItem-hover"?: (...args: any[]) => any;
4219
+ }>, {
4220
+ lenderName: string;
4221
+ lenderImageUrl: string;
4222
+ basketCount: number;
4223
+ openMenuItem: Function | Record<string, any>;
4224
+ loggedIn: boolean;
4225
+ loginUrl: string;
4226
+ isMobile: boolean;
4227
+ balance: number;
4228
+ myDashboardUrl: string;
4229
+ isBasketDataLoading: boolean;
4230
+ isUserDataLoading: boolean;
4231
+ }, {}, {
4232
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4233
+ icon: {
4234
+ type: StringConstructor;
4235
+ default: string;
4236
+ };
4237
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4238
+ icon: {
4239
+ type: StringConstructor;
4240
+ default: string;
4241
+ };
4242
+ }>> & Readonly<{}>, {
4243
+ icon: string;
4244
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4245
+ KvIconBag: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4246
+ count: {
4247
+ type: NumberConstructor;
4248
+ default: number;
4249
+ };
4250
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4251
+ count: {
4252
+ type: NumberConstructor;
4253
+ default: number;
4254
+ };
4255
+ }>> & Readonly<{}>, {
4256
+ count: number;
4257
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4258
+ KvHeaderDropdownLink: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4259
+ refName: {
4260
+ type: StringConstructor;
4261
+ default: string;
4262
+ };
4263
+ href: {
4264
+ type: StringConstructor;
4265
+ default: any;
4266
+ };
4267
+ menuComponent: {
4268
+ type: ObjectConstructor;
4269
+ default: () => {};
4270
+ };
4271
+ openMenuItem: {
4272
+ type: ObjectConstructor;
4273
+ default: () => {};
4274
+ };
4275
+ dropdownIcon: {
4276
+ type: StringConstructor;
4277
+ default: string;
4278
+ };
4279
+ baseClass: {
4280
+ type: StringConstructor;
4281
+ default: string;
4282
+ };
4283
+ sendLinkPosition: {
4284
+ type: BooleanConstructor;
4285
+ default: boolean;
4286
+ };
4287
+ }>, {
4288
+ computedClass: import('vue').ComputedRef<(string | {
4289
+ 'tw-text-tertiary': boolean;
4290
+ })[]>;
4291
+ handleMouseOver: () => void;
4292
+ handleTouchStart: () => void;
4293
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("on-hover" | "user-tap")[], "on-hover" | "user-tap", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4294
+ refName: {
4295
+ type: StringConstructor;
4296
+ default: string;
4297
+ };
4298
+ href: {
4299
+ type: StringConstructor;
4300
+ default: any;
4301
+ };
4302
+ menuComponent: {
4303
+ type: ObjectConstructor;
4304
+ default: () => {};
4305
+ };
4306
+ openMenuItem: {
4307
+ type: ObjectConstructor;
4308
+ default: () => {};
4309
+ };
4310
+ dropdownIcon: {
4311
+ type: StringConstructor;
4312
+ default: string;
4313
+ };
4314
+ baseClass: {
4315
+ type: StringConstructor;
4316
+ default: string;
4317
+ };
4318
+ sendLinkPosition: {
4319
+ type: BooleanConstructor;
4320
+ default: boolean;
4321
+ };
4322
+ }>> & Readonly<{
4323
+ "onOn-hover"?: (...args: any[]) => any;
4324
+ "onUser-tap"?: (...args: any[]) => any;
4325
+ }>, {
4326
+ href: string;
4327
+ refName: string;
4328
+ menuComponent: Record<string, any>;
4329
+ openMenuItem: Record<string, any>;
4330
+ dropdownIcon: string;
4331
+ baseClass: string;
4332
+ sendLinkPosition: boolean;
4333
+ }, {}, {
4334
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4335
+ icon: {
4336
+ type: StringConstructor;
4337
+ default: string;
4338
+ };
4339
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4340
+ icon: {
4341
+ type: StringConstructor;
4342
+ default: string;
4343
+ };
4344
+ }>> & Readonly<{}>, {
4345
+ icon: string;
4346
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4347
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4348
+ KvUserAvatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4349
+ lenderName: {
4350
+ type: StringConstructor;
4351
+ default: string;
4352
+ };
4353
+ lenderImageUrl: {
4354
+ type: StringConstructor;
4355
+ default: string;
4356
+ };
4357
+ isSmall: {
4358
+ type: BooleanConstructor;
4359
+ default: boolean;
4360
+ };
4361
+ showCssPlaceholder: {
4362
+ type: BooleanConstructor;
4363
+ default: boolean;
4364
+ };
4365
+ }>, {
4366
+ isAnonymousUser: import('vue').ComputedRef<boolean>;
4367
+ avatarClass: import('vue').ComputedRef<string>;
4368
+ userHasImage: import('vue').ComputedRef<boolean>;
4369
+ lenderNameFirstLetter: import('vue').ComputedRef<string>;
4370
+ letterViewBox: import('vue').ComputedRef<"0 0 27 27" | "0 0 27.5 27.5">;
4371
+ isLegacyPlaceholderAvatar: typeof import('..').isLegacyPlaceholderAvatar;
4372
+ isImageLoading: import('vue').Ref<boolean, boolean>;
4373
+ onImgLoad: () => void;
4374
+ imageRef: import('vue').Ref<any, any>;
4375
+ userAvatar: import('vue').Ref<any, any>;
4376
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4377
+ lenderName: {
4378
+ type: StringConstructor;
4379
+ default: string;
4380
+ };
4381
+ lenderImageUrl: {
4382
+ type: StringConstructor;
4383
+ default: string;
4384
+ };
4385
+ isSmall: {
4386
+ type: BooleanConstructor;
4387
+ default: boolean;
4388
+ };
4389
+ showCssPlaceholder: {
4390
+ type: BooleanConstructor;
4391
+ default: boolean;
4392
+ };
4393
+ }>> & Readonly<{}>, {
4394
+ lenderName: string;
4395
+ lenderImageUrl: string;
4396
+ isSmall: boolean;
4397
+ showCssPlaceholder: boolean;
4398
+ }, {}, {
4399
+ KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
4400
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4401
+ KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
4402
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4403
+ KvHeaderLogo: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
4404
+ KvLogo: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
4405
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4406
+ KvThemeProvider: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4407
+ tag: {
4408
+ type: StringConstructor;
4409
+ default: string;
4410
+ };
4411
+ theme: {
4412
+ type: ObjectConstructor;
4413
+ default: any;
4414
+ };
4415
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4416
+ tag: {
4417
+ type: StringConstructor;
4418
+ default: string;
4419
+ };
4420
+ theme: {
4421
+ type: ObjectConstructor;
4422
+ default: any;
4423
+ };
4424
+ }>> & Readonly<{}>, {
4425
+ tag: string;
4426
+ theme: Record<string, any>;
4427
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4428
+ KvPageContainer: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4429
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4430
+ export default _default;