@solostylist/ui-kit 1.0.198 → 1.0.201

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 (210) hide show
  1. package/dist/{Select-80JhW337.js → Select-D2l9rDWL.js} +1594 -1594
  2. package/dist/entries/core.d.ts +15 -15
  3. package/dist/entries/core.js +98 -101
  4. package/dist/main.js +176 -179
  5. package/dist/s-blur-text/s-blur-text.js +25 -24
  6. package/dist/s-chat-message/s-chat-message.js +1 -1
  7. package/dist/s-comment-message/s-comment-message.js +1 -1
  8. package/dist/s-countdown/s-count-box.js +40 -37
  9. package/dist/s-countdown/s-count-down.js +73 -101
  10. package/dist/s-date-picker/s-date-picker.js +1 -1
  11. package/dist/s-datetime-picker/s-datetime-picker.js +1 -1
  12. package/dist/s-dialog-confirm/index.d.ts +1 -1
  13. package/dist/s-dialog-confirm/s-dialog-confirm.d.ts +1 -1
  14. package/dist/s-dialog-message/index.d.ts +1 -1
  15. package/dist/s-dialog-message/s-dialog-message.d.ts +1 -1
  16. package/dist/s-file-dropzone/s-file-dropzone.js +13 -13
  17. package/dist/s-link/index.d.ts +2 -0
  18. package/dist/s-link/index.js +4 -0
  19. package/dist/{s-button-link/s-button-link.d.ts → s-link/s-link.d.ts} +5 -5
  20. package/dist/s-link/s-link.js +37 -0
  21. package/dist/s-pixel-reveal/s-pixel-reveal.js +28 -28
  22. package/dist/s-review/s-review.js +1 -1
  23. package/dist/s-snackbar-message/s-snackbar-message.js +18 -18
  24. package/dist/s-text-editor/s-text-editor-toolbar.js +1 -1
  25. package/dist/s-theme-provider/s-theme-provider.js +24 -35
  26. package/dist/s-tool-bar/index.d.ts +2 -0
  27. package/dist/s-tool-bar/index.js +4 -0
  28. package/dist/{s-ai-tool-bar/s-ai-tool-bar.d.ts → s-tool-bar/s-tool-bar.d.ts} +23 -30
  29. package/dist/s-tool-bar/s-tool-bar.js +478 -0
  30. package/dist/theme/components/accordion-details.d.ts +8 -0
  31. package/dist/theme/components/accordion-details.js +8 -0
  32. package/dist/theme/components/accordion-summary.d.ts +1033 -0
  33. package/dist/theme/components/accordion-summary.js +17 -0
  34. package/dist/theme/components/accordion.d.ts +35 -0
  35. package/dist/theme/components/accordion.js +32 -0
  36. package/dist/theme/components/app-bar.d.ts +24 -0
  37. package/dist/theme/components/app-bar.js +18 -0
  38. package/dist/theme/components/autocomplete.d.ts +31 -0
  39. package/dist/theme/components/autocomplete.js +30 -0
  40. package/dist/theme/components/button-base.d.ts +12 -0
  41. package/dist/theme/components/button-base.js +15 -0
  42. package/dist/theme/components/card-actions.d.ts +7 -0
  43. package/dist/theme/components/card-actions.js +10 -0
  44. package/dist/theme/components/card-content.d.ts +7 -0
  45. package/dist/theme/components/card-content.js +11 -0
  46. package/dist/theme/components/card-header.d.ts +7 -0
  47. package/dist/theme/components/card-header.js +10 -0
  48. package/dist/theme/components/card.d.ts +2046 -0
  49. package/dist/theme/components/card.js +35 -0
  50. package/dist/theme/components/checkbox.d.ts +1046 -0
  51. package/dist/theme/components/checkbox.js +65 -0
  52. package/dist/theme/components/components.js +112 -30
  53. package/dist/theme/components/dialog-actions.d.ts +12 -0
  54. package/dist/theme/components/dialog-actions.js +10 -0
  55. package/dist/theme/components/dialog.d.ts +19 -0
  56. package/dist/theme/components/dialog.js +17 -0
  57. package/dist/theme/components/drawer.d.ts +12 -0
  58. package/dist/theme/components/drawer.js +10 -0
  59. package/dist/theme/components/form-label.d.ts +17 -0
  60. package/dist/theme/components/form-label.js +11 -0
  61. package/dist/theme/components/icon.d.ts +17 -0
  62. package/dist/theme/components/icon.js +22 -0
  63. package/dist/theme/components/input-adornment.d.ts +1027 -0
  64. package/dist/theme/components/input-adornment.js +13 -0
  65. package/dist/theme/components/input-base.d.ts +18 -0
  66. package/dist/theme/components/input-base.js +16 -0
  67. package/dist/theme/components/linear-progress.d.ts +1023 -0
  68. package/dist/theme/components/linear-progress.js +16 -0
  69. package/dist/theme/components/link.d.ts +42 -0
  70. package/dist/theme/components/link.js +38 -0
  71. package/dist/theme/components/list-item-button.d.ts +155 -0
  72. package/dist/theme/components/list-item-button.js +44 -0
  73. package/dist/theme/components/list-item-icon.d.ts +7 -0
  74. package/dist/theme/components/list-item-icon.js +10 -0
  75. package/dist/theme/components/list-item-text.d.ts +22 -0
  76. package/dist/theme/components/list-item-text.js +16 -0
  77. package/dist/theme/components/list-item.d.ts +92 -0
  78. package/dist/theme/components/list-item.js +20 -0
  79. package/dist/theme/components/list-subheader.d.ts +20 -0
  80. package/dist/theme/components/list-subheader.js +14 -0
  81. package/dist/theme/components/list.d.ts +10 -0
  82. package/dist/theme/components/list.js +13 -0
  83. package/dist/theme/components/menu-item.d.ts +8 -0
  84. package/dist/theme/components/menu-item.js +8 -0
  85. package/dist/theme/components/menu.d.ts +20 -0
  86. package/dist/theme/components/menu.js +23 -0
  87. package/dist/theme/components/outlined-input.d.ts +81 -0
  88. package/dist/theme/components/outlined-input.js +64 -0
  89. package/dist/theme/components/pagination-item.d.ts +1028 -0
  90. package/dist/theme/components/pagination-item.js +18 -0
  91. package/dist/theme/components/paper.d.ts +5 -0
  92. package/dist/theme/components/paper.js +8 -0
  93. package/dist/theme/components/select.d.ts +7 -0
  94. package/dist/theme/components/select.js +13 -0
  95. package/dist/theme/components/step-connector.d.ts +15 -0
  96. package/dist/theme/components/step-connector.js +13 -0
  97. package/dist/theme/components/step-icon.d.ts +1043 -0
  98. package/dist/theme/components/step-icon.js +46 -0
  99. package/dist/theme/components/step-label.d.ts +1025 -0
  100. package/dist/theme/components/step-label.js +13 -0
  101. package/dist/theme/components/tab.d.ts +1031 -0
  102. package/dist/theme/components/tab.js +34 -0
  103. package/dist/theme/components/table-cell.d.ts +12 -0
  104. package/dist/theme/components/table-cell.js +10 -0
  105. package/dist/theme/components/table-pagination.d.ts +14 -0
  106. package/dist/theme/components/table-pagination.js +18 -0
  107. package/dist/theme/components/tabs.d.ts +1046 -0
  108. package/dist/theme/components/tabs.js +24 -0
  109. package/dist/theme/components/toggle-button-group.d.ts +1024 -0
  110. package/dist/theme/components/toggle-button-group.js +23 -0
  111. package/dist/theme/components/toggle-button.d.ts +1027 -0
  112. package/dist/theme/components/toggle-button.js +21 -0
  113. package/dist/{useMobilePicker-DVnEuXv1.js → useMobilePicker-B-bNHHXB.js} +1 -1
  114. package/dist/utils/index.d.ts +0 -1
  115. package/dist/utils/index.js +7 -9
  116. package/dist/{utils-CHdpkEZx.js → utils-D1UMIV0b.js} +13 -6
  117. package/package.json +10 -5
  118. package/dist/s-accordion/package.json +0 -5
  119. package/dist/s-action-overlay/package.json +0 -5
  120. package/dist/s-ai-tool-bar/index.d.ts +0 -2
  121. package/dist/s-ai-tool-bar/index.js +0 -5
  122. package/dist/s-ai-tool-bar/package.json +0 -5
  123. package/dist/s-ai-tool-bar/s-ai-tool-bar.js +0 -481
  124. package/dist/s-autocomplete/package.json +0 -5
  125. package/dist/s-avatar/package.json +0 -5
  126. package/dist/s-blur-text/package.json +0 -5
  127. package/dist/s-breadcrumbs/package.json +0 -5
  128. package/dist/s-button/package.json +0 -5
  129. package/dist/s-button-link/index.d.ts +0 -2
  130. package/dist/s-button-link/index.js +0 -4
  131. package/dist/s-button-link/package.json +0 -5
  132. package/dist/s-button-link/s-button-link.js +0 -37
  133. package/dist/s-carousel/package.json +0 -5
  134. package/dist/s-category-card/package.json +0 -5
  135. package/dist/s-chat-input/package.json +0 -5
  136. package/dist/s-chat-message/package.json +0 -5
  137. package/dist/s-checkbox/package.json +0 -5
  138. package/dist/s-chip/package.json +0 -5
  139. package/dist/s-chips/package.json +0 -5
  140. package/dist/s-code-block/package.json +0 -5
  141. package/dist/s-comment-message/package.json +0 -5
  142. package/dist/s-copyable-text/package.json +0 -5
  143. package/dist/s-countdown/package.json +0 -5
  144. package/dist/s-data-table/package.json +0 -5
  145. package/dist/s-date-picker/package.json +0 -5
  146. package/dist/s-datetime-picker/package.json +0 -5
  147. package/dist/s-dialog/package.json +0 -5
  148. package/dist/s-dialog-confirm/package.json +0 -5
  149. package/dist/s-dialog-message/package.json +0 -5
  150. package/dist/s-empty/package.json +0 -5
  151. package/dist/s-error/package.json +0 -5
  152. package/dist/s-error-layout/package.json +0 -5
  153. package/dist/s-file-dropzone/package.json +0 -5
  154. package/dist/s-file-icon/package.json +0 -5
  155. package/dist/s-flex-box/package.json +0 -5
  156. package/dist/s-form/package.json +0 -5
  157. package/dist/s-gallery/package.json +0 -5
  158. package/dist/s-glow-button/package.json +0 -5
  159. package/dist/s-gradient-icon/package.json +0 -5
  160. package/dist/s-i18n-provider/package.json +0 -5
  161. package/dist/s-icon-button/package.json +0 -5
  162. package/dist/s-image-comparison/package.json +0 -5
  163. package/dist/s-image-modal/package.json +0 -5
  164. package/dist/s-item-not-found/package.json +0 -5
  165. package/dist/s-label/package.json +0 -5
  166. package/dist/s-language-switcher/package.json +0 -5
  167. package/dist/s-lazy-image/package.json +0 -5
  168. package/dist/s-localization-provider/package.json +0 -5
  169. package/dist/s-moving-border/package.json +0 -5
  170. package/dist/s-multi-select/package.json +0 -5
  171. package/dist/s-no-ssr/package.json +0 -5
  172. package/dist/s-overlay-scrollbar/package.json +0 -5
  173. package/dist/s-pagination/package.json +0 -5
  174. package/dist/s-pixel-reveal/package.json +0 -5
  175. package/dist/s-radial-pulse-animate/package.json +0 -5
  176. package/dist/s-rating/package.json +0 -5
  177. package/dist/s-review/package.json +0 -5
  178. package/dist/s-scroll-reveal/package.json +0 -6
  179. package/dist/s-scroll-to-top/package.json +0 -5
  180. package/dist/s-scroll-velocity/package.json +0 -5
  181. package/dist/s-select/package.json +0 -5
  182. package/dist/s-select-list/package.json +0 -5
  183. package/dist/s-skeleton/package.json +0 -5
  184. package/dist/s-snackbar-message/package.json +0 -5
  185. package/dist/s-spotlight-cursor/package.json +0 -5
  186. package/dist/s-stripe/package.json +0 -5
  187. package/dist/s-tabs/package.json +0 -4
  188. package/dist/s-text-editor/package.json +0 -5
  189. package/dist/s-text-field/package.json +0 -5
  190. package/dist/s-text-shimmer/package.json +0 -5
  191. package/dist/s-text-truncation/package.json +0 -5
  192. package/dist/s-theme-demo/package.json +0 -5
  193. package/dist/s-theme-provider/package.json +0 -5
  194. package/dist/s-theme-switch/package.json +0 -5
  195. package/dist/s-tip/package.json +0 -5
  196. package/dist/s-two-pane-layout/package.json +0 -5
  197. package/dist/s-typewriter-text/package.json +0 -6
  198. package/dist/s-zoom-image/package.json +0 -5
  199. package/dist/theme/customizations/data-display.d.ts +0 -2
  200. package/dist/theme/customizations/data-display.js +0 -142
  201. package/dist/theme/customizations/feedback.d.ts +0 -2
  202. package/dist/theme/customizations/feedback.js +0 -39
  203. package/dist/theme/customizations/inputs.d.ts +0 -2
  204. package/dist/theme/customizations/inputs.js +0 -230
  205. package/dist/theme/customizations/navigation.d.ts +0 -2
  206. package/dist/theme/customizations/navigation.js +0 -226
  207. package/dist/theme/customizations/surfaces.d.ts +0 -2
  208. package/dist/theme/customizations/surfaces.js +0 -111
  209. package/dist/utils/bytes-to-size.d.ts +0 -1
  210. package/dist/utils/bytes-to-size.js +0 -9
@@ -0,0 +1,1024 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiToggleButtonGroup: {
3
+ styleOverrides: {
4
+ root: ({ theme }: import('@mui/material').ToggleButtonGroupProps & Record<string, unknown> & {
5
+ ownerState: import('@mui/material').ToggleButtonGroupProps & Record<string, unknown>;
6
+ } & {
7
+ theme: Theme;
8
+ }) => {
9
+ [x: string]: unknown;
10
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
11
+ alignContent?: import("csstype").Property.AlignContent | readonly string[] | readonly import("csstype").Property.AlignContent[] | undefined;
12
+ alignItems?: import("csstype").Property.AlignItems | readonly string[] | readonly import("csstype").Property.AlignItems[] | undefined;
13
+ alignSelf?: import("csstype").Property.AlignSelf | readonly string[] | readonly import("csstype").Property.AlignSelf[] | undefined;
14
+ alignTracks?: import("csstype").Property.AlignTracks | readonly string[] | readonly import("csstype").Property.AlignTracks[] | undefined;
15
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
16
+ anchorName?: import("csstype").Property.AnchorName | readonly string[] | readonly import("csstype").Property.AnchorName[] | undefined;
17
+ anchorScope?: import("csstype").Property.AnchorScope | readonly string[] | readonly import("csstype").Property.AnchorScope[] | undefined;
18
+ animationComposition?: import("csstype").Property.AnimationComposition | readonly string[] | readonly import("csstype").Property.AnimationComposition[] | undefined;
19
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
20
+ animationDirection?: import("csstype").Property.AnimationDirection | readonly string[] | readonly import("csstype").Property.AnimationDirection[] | undefined;
21
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
22
+ animationFillMode?: import("csstype").Property.AnimationFillMode | readonly string[] | readonly import("csstype").Property.AnimationFillMode[] | undefined;
23
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
24
+ animationName?: import("csstype").Property.AnimationName | readonly string[] | readonly import("csstype").Property.AnimationName[] | undefined;
25
+ animationPlayState?: import("csstype").Property.AnimationPlayState | readonly string[] | readonly import("csstype").Property.AnimationPlayState[] | undefined;
26
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
27
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
28
+ animationTimeline?: import("csstype").Property.AnimationTimeline | readonly string[] | readonly import("csstype").Property.AnimationTimeline[] | undefined;
29
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | readonly string[] | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
30
+ appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
31
+ aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
32
+ backdropFilter?: import("csstype").Property.BackdropFilter | readonly string[] | readonly import("csstype").Property.BackdropFilter[] | undefined;
33
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
34
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | readonly string[] | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
35
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | readonly string[] | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
36
+ backgroundClip?: import("csstype").Property.BackgroundClip | readonly string[] | readonly import("csstype").Property.BackgroundClip[] | undefined;
37
+ backgroundColor?: import("csstype").Property.BackgroundColor | readonly string[] | readonly import("csstype").Property.BackgroundColor[] | undefined;
38
+ backgroundImage?: import("csstype").Property.BackgroundImage | readonly string[] | readonly import("csstype").Property.BackgroundImage[] | undefined;
39
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | readonly string[] | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
40
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
41
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
42
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | readonly string[] | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
43
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
44
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
45
+ blockSize?: import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
46
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | readonly string[] | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
47
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
48
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
49
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | readonly string[] | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
50
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
51
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
52
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | readonly string[] | readonly import("csstype").Property.BorderBottomColor[] | undefined;
53
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
54
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
55
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
56
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
57
+ borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
58
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
59
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
60
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
61
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | readonly string[] | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
62
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
63
+ borderImageSource?: import("csstype").Property.BorderImageSource | readonly string[] | readonly import("csstype").Property.BorderImageSource[] | undefined;
64
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
65
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | readonly string[] | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
66
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
67
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
68
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | readonly string[] | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
69
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
70
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
71
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | readonly string[] | readonly import("csstype").Property.BorderLeftColor[] | undefined;
72
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
73
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
74
+ borderRightColor?: import("csstype").Property.BorderRightColor | readonly string[] | readonly import("csstype").Property.BorderRightColor[] | undefined;
75
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
76
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
77
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
78
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
79
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
80
+ borderTopColor?: import("csstype").Property.BorderTopColor | readonly string[] | readonly import("csstype").Property.BorderTopColor[] | undefined;
81
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
82
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
83
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
84
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
85
+ bottom?: import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
86
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
87
+ boxShadow: import("csstype").Property.BoxShadow | readonly string[];
88
+ boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
89
+ breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
90
+ breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
91
+ breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
92
+ captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
93
+ caretColor?: import("csstype").Property.CaretColor | readonly string[] | readonly import("csstype").Property.CaretColor[] | undefined;
94
+ caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
95
+ clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
96
+ clipPath?: import("csstype").Property.ClipPath | readonly string[] | readonly import("csstype").Property.ClipPath[] | undefined;
97
+ clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
98
+ color?: import("csstype").Property.Color | readonly string[] | readonly import("csstype").Property.Color[] | undefined;
99
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
100
+ colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | readonly NonNullable<import("csstype").Property.ColorInterpolationFilters | undefined>[] | readonly import("csstype").Property.ColorInterpolationFilters[] | undefined;
101
+ colorScheme?: import("csstype").Property.ColorScheme | readonly string[] | readonly import("csstype").Property.ColorScheme[] | undefined;
102
+ columnCount?: import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
103
+ columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
104
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
105
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | readonly string[] | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
106
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | readonly string[] | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
107
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
108
+ columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
109
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
110
+ contain?: import("csstype").Property.Contain | readonly string[] | readonly import("csstype").Property.Contain[] | undefined;
111
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
112
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
113
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
114
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
115
+ containerName?: import("csstype").Property.ContainerName | readonly string[] | readonly import("csstype").Property.ContainerName[] | undefined;
116
+ containerType?: import("csstype").Property.ContainerType | readonly string[] | readonly import("csstype").Property.ContainerType[] | undefined;
117
+ content?: import("csstype").Property.Content | readonly string[] | readonly import("csstype").Property.Content[] | undefined;
118
+ contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
119
+ counterIncrement?: import("csstype").Property.CounterIncrement | readonly string[] | readonly import("csstype").Property.CounterIncrement[] | undefined;
120
+ counterReset?: import("csstype").Property.CounterReset | readonly string[] | readonly import("csstype").Property.CounterReset[] | undefined;
121
+ counterSet?: import("csstype").Property.CounterSet | readonly string[] | readonly import("csstype").Property.CounterSet[] | undefined;
122
+ cursor?: import("csstype").Property.Cursor | readonly string[] | readonly import("csstype").Property.Cursor[] | undefined;
123
+ cx?: import("csstype").Property.Cx<string | number> | readonly NonNullable<import("csstype").Property.Cx<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
124
+ cy?: import("csstype").Property.Cy<string | number> | readonly NonNullable<import("csstype").Property.Cy<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
125
+ d?: import("csstype").Property.D | readonly string[] | readonly import("csstype").Property.D[] | undefined;
126
+ direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
127
+ display?: import("csstype").Property.Display | readonly string[] | readonly import("csstype").Property.Display[] | undefined;
128
+ dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
129
+ emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
130
+ fieldSizing?: import("csstype").Property.FieldSizing | readonly NonNullable<import("csstype").Property.FieldSizing | undefined>[] | readonly import("csstype").Property.FieldSizing[] | undefined;
131
+ fill?: import("csstype").Property.Fill | readonly string[] | readonly import("csstype").Property.Fill[] | undefined;
132
+ fillOpacity?: import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
133
+ fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
134
+ filter?: import("csstype").Property.Filter | readonly string[] | readonly import("csstype").Property.Filter[] | undefined;
135
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
136
+ flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
137
+ flexGrow?: import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
138
+ flexShrink?: import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
139
+ flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
140
+ float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
141
+ floodColor?: import("csstype").Property.FloodColor | readonly string[] | readonly import("csstype").Property.FloodColor[] | undefined;
142
+ floodOpacity?: import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
143
+ fontFamily?: import("csstype").Property.FontFamily | readonly string[] | readonly import("csstype").Property.FontFamily[] | undefined;
144
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | readonly string[] | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
145
+ fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
146
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | readonly string[] | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
147
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
148
+ fontPalette?: import("csstype").Property.FontPalette | readonly string[] | readonly import("csstype").Property.FontPalette[] | undefined;
149
+ fontSize?: import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
150
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "none" | "from-font")[] | undefined;
151
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
152
+ fontStyle?: import("csstype").Property.FontStyle | readonly string[] | readonly import("csstype").Property.FontStyle[] | undefined;
153
+ fontSynthesis?: import("csstype").Property.FontSynthesis | readonly string[] | readonly import("csstype").Property.FontSynthesis[] | undefined;
154
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
155
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
156
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
157
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
158
+ fontVariant?: import("csstype").Property.FontVariant | readonly string[] | readonly import("csstype").Property.FontVariant[] | undefined;
159
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | readonly string[] | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
160
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
161
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | readonly string[] | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
162
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
163
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | readonly string[] | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
164
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | readonly string[] | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
165
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
166
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | readonly string[] | readonly import("csstype").Property.FontVariationSettings[] | undefined;
167
+ fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ((string & {}) | "bold" | import('csstype').Globals | "normal" | "bolder" | "lighter")[] | undefined;
168
+ fontWidth?: import("csstype").Property.FontWidth | readonly string[] | readonly import("csstype").Property.FontWidth[] | undefined;
169
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
170
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
171
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | readonly string[] | readonly import("csstype").Property.GridAutoFlow[] | undefined;
172
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
173
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
174
+ gridColumnStart?: import("csstype").Property.GridColumnStart | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
175
+ gridRowEnd?: import("csstype").Property.GridRowEnd | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
176
+ gridRowStart?: import("csstype").Property.GridRowStart | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
177
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | readonly string[] | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
178
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
179
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
180
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | readonly string[] | readonly import("csstype").Property.HangingPunctuation[] | undefined;
181
+ height?: import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
182
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | readonly string[] | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
183
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
184
+ hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
185
+ imageOrientation?: import("csstype").Property.ImageOrientation | readonly string[] | readonly import("csstype").Property.ImageOrientation[] | undefined;
186
+ imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
187
+ imageResolution?: import("csstype").Property.ImageResolution | readonly string[] | readonly import("csstype").Property.ImageResolution[] | undefined;
188
+ initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal")[] | undefined;
189
+ initialLetterAlign?: import("csstype").Property.InitialLetterAlign | readonly NonNullable<import("csstype").Property.InitialLetterAlign | undefined>[] | readonly import("csstype").Property.InitialLetterAlign[] | undefined;
190
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
191
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
192
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
193
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
194
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
195
+ interpolateSize?: import("csstype").Property.InterpolateSize | readonly NonNullable<import("csstype").Property.InterpolateSize | undefined>[] | readonly import("csstype").Property.InterpolateSize[] | undefined;
196
+ isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
197
+ justifyContent?: import("csstype").Property.JustifyContent | readonly string[] | readonly import("csstype").Property.JustifyContent[] | undefined;
198
+ justifyItems?: import("csstype").Property.JustifyItems | readonly string[] | readonly import("csstype").Property.JustifyItems[] | undefined;
199
+ justifySelf?: import("csstype").Property.JustifySelf | readonly string[] | readonly import("csstype").Property.JustifySelf[] | undefined;
200
+ justifyTracks?: import("csstype").Property.JustifyTracks | readonly string[] | readonly import("csstype").Property.JustifyTracks[] | undefined;
201
+ left?: import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
202
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
203
+ lightingColor?: import("csstype").Property.LightingColor | readonly string[] | readonly import("csstype").Property.LightingColor[] | undefined;
204
+ lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
205
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
206
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
207
+ listStyleImage?: import("csstype").Property.ListStyleImage | readonly string[] | readonly import("csstype").Property.ListStyleImage[] | undefined;
208
+ listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
209
+ listStyleType?: import("csstype").Property.ListStyleType | readonly string[] | readonly import("csstype").Property.ListStyleType[] | undefined;
210
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
211
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
212
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
213
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
214
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
215
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
216
+ marginRight?: import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
217
+ marginTop?: import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
218
+ marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
219
+ marker?: import("csstype").Property.Marker | readonly string[] | readonly import("csstype").Property.Marker[] | undefined;
220
+ markerEnd?: import("csstype").Property.MarkerEnd | readonly string[] | readonly import("csstype").Property.MarkerEnd[] | undefined;
221
+ markerMid?: import("csstype").Property.MarkerMid | readonly string[] | readonly import("csstype").Property.MarkerMid[] | undefined;
222
+ markerStart?: import("csstype").Property.MarkerStart | readonly string[] | readonly import("csstype").Property.MarkerStart[] | undefined;
223
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
224
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
225
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | readonly string[] | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
226
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
227
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | readonly string[] | readonly import("csstype").Property.MaskBorderSource[] | undefined;
228
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
229
+ maskClip?: import("csstype").Property.MaskClip | readonly string[] | readonly import("csstype").Property.MaskClip[] | undefined;
230
+ maskComposite?: import("csstype").Property.MaskComposite | readonly string[] | readonly import("csstype").Property.MaskComposite[] | undefined;
231
+ maskImage?: import("csstype").Property.MaskImage | readonly string[] | readonly import("csstype").Property.MaskImage[] | undefined;
232
+ maskMode?: import("csstype").Property.MaskMode | readonly string[] | readonly import("csstype").Property.MaskMode[] | undefined;
233
+ maskOrigin?: import("csstype").Property.MaskOrigin | readonly string[] | readonly import("csstype").Property.MaskOrigin[] | undefined;
234
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
235
+ maskRepeat?: import("csstype").Property.MaskRepeat | readonly string[] | readonly import("csstype").Property.MaskRepeat[] | undefined;
236
+ maskSize?: import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
237
+ maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
238
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | readonly string[] | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
239
+ mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto-add")[] | undefined;
240
+ mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
241
+ mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
242
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
243
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
244
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
245
+ maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "none")[] | undefined;
246
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
247
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
248
+ minHeight?: import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
249
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
250
+ minWidth?: import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
251
+ mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
252
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
253
+ motionPath?: import("csstype").Property.OffsetPath | readonly string[] | readonly import("csstype").Property.OffsetPath[] | undefined;
254
+ motionRotation?: import("csstype").Property.OffsetRotate | readonly string[] | readonly import("csstype").Property.OffsetRotate[] | undefined;
255
+ objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
256
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
257
+ objectViewBox?: import("csstype").Property.ObjectViewBox | readonly string[] | readonly import("csstype").Property.ObjectViewBox[] | undefined;
258
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
259
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
260
+ offsetPath?: import("csstype").Property.OffsetPath | readonly string[] | readonly import("csstype").Property.OffsetPath[] | undefined;
261
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
262
+ offsetRotate?: import("csstype").Property.OffsetRotate | readonly string[] | readonly import("csstype").Property.OffsetRotate[] | undefined;
263
+ offsetRotation?: import("csstype").Property.OffsetRotate | readonly string[] | readonly import("csstype").Property.OffsetRotate[] | undefined;
264
+ opacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
265
+ order?: import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
266
+ orphans?: import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
267
+ outlineColor?: import("csstype").Property.OutlineColor | readonly string[] | readonly import("csstype").Property.OutlineColor[] | undefined;
268
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
269
+ outlineStyle?: import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle | undefined>[] | readonly import("csstype").Property.OutlineStyle[] | undefined;
270
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
271
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
272
+ overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
273
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
274
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
275
+ overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
276
+ overflowWrap?: import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | readonly import("csstype").Property.OverflowWrap[] | undefined;
277
+ overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
278
+ overflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
279
+ overlay?: import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | readonly import("csstype").Property.Overlay[] | undefined;
280
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
281
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
282
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
283
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
284
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
285
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
286
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
287
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
288
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
289
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
290
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
291
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
292
+ page?: import("csstype").Property.Page | readonly string[] | readonly import("csstype").Property.Page[] | undefined;
293
+ paintOrder?: import("csstype").Property.PaintOrder | readonly string[] | readonly import("csstype").Property.PaintOrder[] | undefined;
294
+ perspective?: import("csstype").Property.Perspective<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
295
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
296
+ pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
297
+ position?: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | readonly import("csstype").Property.Position[] | undefined;
298
+ positionAnchor?: import("csstype").Property.PositionAnchor | readonly string[] | readonly import("csstype").Property.PositionAnchor[] | undefined;
299
+ positionArea?: import("csstype").Property.PositionArea | readonly string[] | readonly import("csstype").Property.PositionArea[] | undefined;
300
+ positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | readonly string[] | readonly import("csstype").Property.PositionTryFallbacks[] | undefined;
301
+ positionTryOrder?: import("csstype").Property.PositionTryOrder | readonly NonNullable<import("csstype").Property.PositionTryOrder | undefined>[] | readonly import("csstype").Property.PositionTryOrder[] | undefined;
302
+ positionVisibility?: import("csstype").Property.PositionVisibility | readonly string[] | readonly import("csstype").Property.PositionVisibility[] | undefined;
303
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
304
+ quotes?: import("csstype").Property.Quotes | readonly string[] | readonly import("csstype").Property.Quotes[] | undefined;
305
+ r?: import("csstype").Property.R<string | number> | readonly NonNullable<import("csstype").Property.R<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
306
+ resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
307
+ right?: import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
308
+ rotate?: import("csstype").Property.Rotate | readonly string[] | readonly import("csstype").Property.Rotate[] | undefined;
309
+ rowGap?: import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
310
+ rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
311
+ rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
312
+ rubyOverhang?: import("csstype").Property.RubyOverhang | readonly NonNullable<import("csstype").Property.RubyOverhang | undefined>[] | readonly import("csstype").Property.RubyOverhang[] | undefined;
313
+ rubyPosition?: import("csstype").Property.RubyPosition | readonly string[] | readonly import("csstype").Property.RubyPosition[] | undefined;
314
+ rx?: import("csstype").Property.Rx<string | number> | readonly NonNullable<import("csstype").Property.Rx<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
315
+ ry?: import("csstype").Property.Ry<string | number> | readonly NonNullable<import("csstype").Property.Ry<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
316
+ scale?: import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "none")[] | undefined;
317
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
318
+ scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | readonly NonNullable<import("csstype").Property.ScrollInitialTarget | undefined>[] | readonly import("csstype").Property.ScrollInitialTarget[] | undefined;
319
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
320
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
321
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
322
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
323
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
324
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
325
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
326
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
327
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
328
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
329
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
330
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
331
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
332
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
333
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
334
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
335
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | readonly string[] | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
336
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
337
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
338
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
339
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
340
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
341
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | readonly string[] | readonly import("csstype").Property.ScrollSnapType[] | undefined;
342
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | readonly string[] | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
343
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | readonly string[] | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
344
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | readonly string[] | readonly import("csstype").Property.ScrollbarColor[] | undefined;
345
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | readonly string[] | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
346
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
347
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
348
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
349
+ shapeOutside?: import("csstype").Property.ShapeOutside | readonly string[] | readonly import("csstype").Property.ShapeOutside[] | undefined;
350
+ shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
351
+ speakAs?: import("csstype").Property.SpeakAs | readonly string[] | readonly import("csstype").Property.SpeakAs[] | undefined;
352
+ stopColor?: import("csstype").Property.StopColor | readonly string[] | readonly import("csstype").Property.StopColor[] | undefined;
353
+ stopOpacity?: import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
354
+ stroke?: import("csstype").Property.Stroke | readonly string[] | readonly import("csstype").Property.Stroke[] | undefined;
355
+ strokeColor?: import("csstype").Property.StrokeColor | readonly string[] | readonly import("csstype").Property.StrokeColor[] | undefined;
356
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
357
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
358
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
359
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
360
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
361
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
362
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
363
+ tabSize?: import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
364
+ tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
365
+ textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
366
+ textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
367
+ textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
368
+ textAutospace?: import("csstype").Property.TextAutospace | readonly string[] | readonly import("csstype").Property.TextAutospace[] | undefined;
369
+ textBox?: import("csstype").Property.TextBox | readonly string[] | readonly import("csstype").Property.TextBox[] | undefined;
370
+ textBoxEdge?: import("csstype").Property.TextBoxEdge | readonly string[] | readonly import("csstype").Property.TextBoxEdge[] | undefined;
371
+ textBoxTrim?: import("csstype").Property.TextBoxTrim | readonly NonNullable<import("csstype").Property.TextBoxTrim | undefined>[] | readonly import("csstype").Property.TextBoxTrim[] | undefined;
372
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | readonly string[] | readonly import("csstype").Property.TextCombineUpright[] | undefined;
373
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | readonly string[] | readonly import("csstype").Property.TextDecorationColor[] | undefined;
374
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | readonly string[] | readonly import("csstype").Property.TextDecorationLine[] | undefined;
375
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | readonly string[] | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
376
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
377
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
378
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
379
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | readonly string[] | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
380
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | readonly string[] | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
381
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | readonly string[] | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
382
+ textIndent?: import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
383
+ textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
384
+ textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
385
+ textOverflow?: import("csstype").Property.TextOverflow | readonly string[] | readonly import("csstype").Property.TextOverflow[] | undefined;
386
+ textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
387
+ textShadow?: import("csstype").Property.TextShadow | readonly string[] | readonly import("csstype").Property.TextShadow[] | undefined;
388
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | readonly string[] | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
389
+ textSpacingTrim?: import("csstype").Property.TextSpacingTrim | readonly NonNullable<import("csstype").Property.TextSpacingTrim | undefined>[] | readonly import("csstype").Property.TextSpacingTrim[] | undefined;
390
+ textTransform?: import("csstype").Property.TextTransform | readonly string[] | readonly import("csstype").Property.TextTransform[] | undefined;
391
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
392
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | readonly string[] | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
393
+ textWrapMode?: import("csstype").Property.TextWrapMode | readonly NonNullable<import("csstype").Property.TextWrapMode | undefined>[] | readonly import("csstype").Property.TextWrapMode[] | undefined;
394
+ textWrapStyle?: import("csstype").Property.TextWrapStyle | readonly NonNullable<import("csstype").Property.TextWrapStyle | undefined>[] | readonly import("csstype").Property.TextWrapStyle[] | undefined;
395
+ timelineScope?: import("csstype").Property.TimelineScope | readonly string[] | readonly import("csstype").Property.TimelineScope[] | undefined;
396
+ top?: import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
397
+ touchAction?: import("csstype").Property.TouchAction | readonly string[] | readonly import("csstype").Property.TouchAction[] | undefined;
398
+ transform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
399
+ transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
400
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
401
+ transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
402
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | readonly string[] | readonly import("csstype").Property.TransitionBehavior[] | undefined;
403
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
404
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
405
+ transitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
406
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
407
+ translate?: import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
408
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
409
+ userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
410
+ vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
411
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
412
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | readonly string[] | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
413
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
414
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | readonly string[] | readonly import("csstype").Property.ViewTimelineName[] | undefined;
415
+ viewTransitionClass?: import("csstype").Property.ViewTransitionClass | readonly string[] | readonly import("csstype").Property.ViewTransitionClass[] | undefined;
416
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | readonly string[] | readonly import("csstype").Property.ViewTransitionName[] | undefined;
417
+ visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
418
+ whiteSpace?: import("csstype").Property.WhiteSpace | readonly string[] | readonly import("csstype").Property.WhiteSpace[] | undefined;
419
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
420
+ widows?: import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
421
+ width?: import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
422
+ willChange?: import("csstype").Property.WillChange | readonly string[] | readonly import("csstype").Property.WillChange[] | undefined;
423
+ wordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
424
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
425
+ wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
426
+ writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
427
+ x?: import("csstype").Property.X<string | number> | readonly NonNullable<import("csstype").Property.X<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
428
+ y?: import("csstype").Property.Y<string | number> | readonly NonNullable<import("csstype").Property.Y<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
429
+ zIndex?: import("csstype").Property.ZIndex | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | undefined;
430
+ zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
431
+ all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
432
+ animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("auto" | "reverse" | (string & {}) | import('csstype').Globals | "normal" | "none" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
433
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
434
+ background?: import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
435
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
436
+ border?: import("csstype").Property.Border<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | undefined;
437
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
438
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | readonly string[] | readonly import("csstype").Property.BorderBlockColor[] | undefined;
439
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
440
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
441
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | readonly string[] | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
442
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
443
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
444
+ borderColor?: import("csstype").Property.BorderColor | readonly string[] | readonly import("csstype").Property.BorderColor[] | undefined;
445
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ((string & {}) | "repeat" | import('csstype').Globals | "stretch" | "none" | "round" | "space")[] | undefined;
446
+ borderInline?: import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
447
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | readonly string[] | readonly import("csstype").Property.BorderInlineColor[] | undefined;
448
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
449
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
450
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | readonly string[] | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
451
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
452
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
453
+ borderRadius: string | number | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[];
454
+ borderRight?: import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
455
+ borderStyle?: import("csstype").Property.BorderStyle | readonly string[] | readonly import("csstype").Property.BorderStyle[] | undefined;
456
+ borderTop?: import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
457
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
458
+ caret?: import("csstype").Property.Caret | readonly string[] | readonly import("csstype").Property.Caret[] | undefined;
459
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
460
+ columns?: import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
461
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
462
+ container?: import("csstype").Property.Container | readonly string[] | readonly import("csstype").Property.Container[] | undefined;
463
+ flex?: import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
464
+ flexFlow?: import("csstype").Property.FlexFlow | readonly string[] | readonly import("csstype").Property.FlexFlow[] | undefined;
465
+ font?: import("csstype").Property.Font | readonly string[] | readonly import("csstype").Property.Font[] | undefined;
466
+ gap?: import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
467
+ grid?: import("csstype").Property.Grid | readonly string[] | readonly import("csstype").Property.Grid[] | undefined;
468
+ gridArea?: import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
469
+ gridColumn?: import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
470
+ gridRow?: import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
471
+ gridTemplate?: import("csstype").Property.GridTemplate | readonly string[] | readonly import("csstype").Property.GridTemplate[] | undefined;
472
+ inset?: import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
473
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
474
+ insetInline?: import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
475
+ lineClamp?: import("csstype").Property.LineClamp | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "none")[] | undefined;
476
+ listStyle?: import("csstype").Property.ListStyle | readonly string[] | readonly import("csstype").Property.ListStyle[] | undefined;
477
+ margin?: import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
478
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
479
+ marginInline?: import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
480
+ mask?: import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
481
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ((string & {}) | "repeat" | import('csstype').Globals | "stretch" | "none" | "round" | "space" | "alpha" | "luminance")[] | undefined;
482
+ motion?: import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
483
+ offset?: import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
484
+ outline?: import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
485
+ overflow?: import("csstype").Property.Overflow | readonly string[] | readonly import("csstype").Property.Overflow[] | undefined;
486
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | readonly string[] | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
487
+ padding?: import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
488
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
489
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
490
+ placeContent?: import("csstype").Property.PlaceContent | readonly string[] | readonly import("csstype").Property.PlaceContent[] | undefined;
491
+ placeItems?: import("csstype").Property.PlaceItems | readonly string[] | readonly import("csstype").Property.PlaceItems[] | undefined;
492
+ placeSelf?: import("csstype").Property.PlaceSelf | readonly string[] | readonly import("csstype").Property.PlaceSelf[] | undefined;
493
+ positionTry?: import("csstype").Property.PositionTry | readonly string[] | readonly import("csstype").Property.PositionTry[] | undefined;
494
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
495
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
496
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
497
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
498
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
499
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
500
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
501
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | readonly string[] | readonly import("csstype").Property.ScrollTimeline[] | undefined;
502
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
503
+ textEmphasis?: import("csstype").Property.TextEmphasis | readonly string[] | readonly import("csstype").Property.TextEmphasis[] | undefined;
504
+ textWrap?: import("csstype").Property.TextWrap | readonly string[] | readonly import("csstype").Property.TextWrap[] | undefined;
505
+ transition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
506
+ viewTimeline?: import("csstype").Property.ViewTimeline | readonly string[] | readonly import("csstype").Property.ViewTimeline[] | undefined;
507
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
508
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | readonly string[] | readonly import("csstype").Property.AnimationDirection[] | undefined;
509
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
510
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | readonly string[] | readonly import("csstype").Property.AnimationFillMode[] | undefined;
511
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
512
+ MozAnimationName?: import("csstype").Property.AnimationName | readonly string[] | readonly import("csstype").Property.AnimationName[] | undefined;
513
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | readonly string[] | readonly import("csstype").Property.AnimationPlayState[] | undefined;
514
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | readonly string[] | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
515
+ MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
516
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
517
+ MozBinding?: import("csstype").Property.MozBinding | readonly string[] | readonly import("csstype").Property.MozBinding[] | undefined;
518
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | readonly string[] | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
519
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | readonly string[] | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
520
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
521
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
522
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | readonly string[] | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
523
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | readonly string[] | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
524
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | readonly string[] | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
525
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
526
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | readonly string[] | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
527
+ MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
528
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | readonly string[] | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
529
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | readonly string[] | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
530
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
531
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
532
+ MozContextProperties?: import("csstype").Property.MozContextProperties | readonly string[] | readonly import("csstype").Property.MozContextProperties[] | undefined;
533
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | readonly string[] | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
534
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | readonly string[] | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
535
+ MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
536
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
537
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
538
+ MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
539
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
540
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
541
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
542
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
543
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
544
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
545
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
546
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
547
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
548
+ MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
549
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
550
+ MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
551
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | readonly string[] | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
552
+ MozTransform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
553
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
554
+ MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
555
+ MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
556
+ MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
557
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | readonly import("csstype").Property.MozWindowDragging[] | undefined;
558
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | readonly import("csstype").Property.MozWindowShadow[] | undefined;
559
+ msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
560
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
561
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
562
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | readonly string[] | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
563
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | readonly string[] | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
564
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | readonly string[] | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
565
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
566
+ msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
567
+ msFilter?: import("csstype").Property.MsFilter | readonly string[] | readonly import("csstype").Property.MsFilter[] | undefined;
568
+ msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
569
+ msFlexPositive?: import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
570
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | readonly string[] | readonly import("csstype").Property.MsFlowFrom[] | undefined;
571
+ msFlowInto?: import("csstype").Property.MsFlowInto | readonly string[] | readonly import("csstype").Property.MsFlowInto[] | undefined;
572
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
573
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
574
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
575
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
576
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "no-limit")[] | undefined;
577
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
578
+ msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
579
+ msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
580
+ msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
581
+ msOrder?: import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
582
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
583
+ msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
584
+ msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
585
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
586
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
587
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
588
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
589
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
590
+ msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
591
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | readonly string[] | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
592
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | readonly string[] | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
593
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
594
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
595
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | readonly string[] | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
596
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | readonly string[] | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
597
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | readonly string[] | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
598
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | readonly string[] | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
599
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | readonly string[] | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
600
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | readonly string[] | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
601
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | readonly string[] | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
602
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | readonly string[] | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
603
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
604
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | readonly string[] | readonly import("csstype").Property.TextCombineUpright[] | undefined;
605
+ msTextOverflow?: import("csstype").Property.TextOverflow | readonly string[] | readonly import("csstype").Property.TextOverflow[] | undefined;
606
+ msTouchAction?: import("csstype").Property.TouchAction | readonly string[] | readonly import("csstype").Property.TouchAction[] | undefined;
607
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
608
+ msTransform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
609
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
610
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
611
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
612
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
613
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
614
+ msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
615
+ msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
616
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
617
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
618
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
619
+ msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
620
+ WebkitAlignContent?: import("csstype").Property.AlignContent | readonly string[] | readonly import("csstype").Property.AlignContent[] | undefined;
621
+ WebkitAlignItems?: import("csstype").Property.AlignItems | readonly string[] | readonly import("csstype").Property.AlignItems[] | undefined;
622
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | readonly string[] | readonly import("csstype").Property.AlignSelf[] | undefined;
623
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
624
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | readonly string[] | readonly import("csstype").Property.AnimationDirection[] | undefined;
625
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
626
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | readonly string[] | readonly import("csstype").Property.AnimationFillMode[] | undefined;
627
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
628
+ WebkitAnimationName?: import("csstype").Property.AnimationName | readonly string[] | readonly import("csstype").Property.AnimationName[] | undefined;
629
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | readonly string[] | readonly import("csstype").Property.AnimationPlayState[] | undefined;
630
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | readonly string[] | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
631
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
632
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | readonly string[] | readonly import("csstype").Property.BackdropFilter[] | undefined;
633
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
634
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | readonly string[] | readonly import("csstype").Property.BackgroundClip[] | undefined;
635
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | readonly string[] | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
636
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
637
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | readonly string[] | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
638
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | readonly string[] | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
639
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
640
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
641
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
642
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
643
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
644
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
645
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
646
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
647
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | readonly string[] | readonly import("csstype").Property.BoxShadow[] | undefined;
648
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
649
+ WebkitClipPath?: import("csstype").Property.ClipPath | readonly string[] | readonly import("csstype").Property.ClipPath[] | undefined;
650
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
651
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
652
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | readonly string[] | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
653
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | readonly string[] | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
654
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
655
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
656
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
657
+ WebkitFilter?: import("csstype").Property.Filter | readonly string[] | readonly import("csstype").Property.Filter[] | undefined;
658
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
659
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
660
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
661
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
662
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
663
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | readonly string[] | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
664
+ WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
665
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
666
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | readonly string[] | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
667
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | readonly string[] | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
668
+ WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
669
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal")[] | undefined;
670
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | readonly string[] | readonly import("csstype").Property.JustifyContent[] | undefined;
671
+ WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
672
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "none")[] | undefined;
673
+ WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
674
+ WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
675
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
676
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
677
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | readonly string[] | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
678
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
679
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | readonly string[] | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
680
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
681
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | readonly string[] | readonly import("csstype").Property.MaskBorderSource[] | undefined;
682
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
683
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | readonly string[] | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
684
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | readonly string[] | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
685
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | readonly string[] | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
686
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | readonly string[] | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
687
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
688
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
689
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
690
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | readonly string[] | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
691
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
692
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
693
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
694
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
695
+ WebkitOrder?: import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
696
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
697
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
698
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
699
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
700
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
701
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
702
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | readonly string[] | readonly import("csstype").Property.RubyPosition[] | undefined;
703
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | readonly string[] | readonly import("csstype").Property.ScrollSnapType[] | undefined;
704
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
705
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | readonly string[] | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
706
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | readonly string[] | readonly import("csstype").Property.TextCombineUpright[] | undefined;
707
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | readonly string[] | readonly import("csstype").Property.TextDecorationColor[] | undefined;
708
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | readonly string[] | readonly import("csstype").Property.TextDecorationLine[] | undefined;
709
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | readonly string[] | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
710
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
711
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | readonly string[] | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
712
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | readonly string[] | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
713
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | readonly string[] | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
714
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | readonly string[] | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
715
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
716
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | readonly string[] | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
717
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | readonly string[] | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
718
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
719
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | readonly string[] | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
720
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
721
+ WebkitTransform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
722
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
723
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
724
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
725
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
726
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
727
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
728
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
729
+ WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
730
+ WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
731
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("auto" | "reverse" | (string & {}) | import('csstype').Globals | "normal" | "none" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
732
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ((string & {}) | "repeat" | import('csstype').Globals | "stretch" | "none" | "round" | "space")[] | undefined;
733
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
734
+ MozColumns?: import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
735
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
736
+ MozTransition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
737
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | readonly string[] | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
738
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | readonly string[] | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
739
+ msFlex?: import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
740
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | readonly string[] | readonly import("csstype").Property.MsScrollLimit[] | undefined;
741
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | readonly string[] | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
742
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | readonly string[] | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
743
+ msTransition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
744
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("auto" | "reverse" | (string & {}) | import('csstype').Globals | "normal" | "none" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
745
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
746
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ((string & {}) | "repeat" | import('csstype').Globals | "stretch" | "none" | "round" | "space")[] | undefined;
747
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
748
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
749
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
750
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
751
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | readonly string[] | readonly import("csstype").Property.FlexFlow[] | undefined;
752
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
753
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ((string & {}) | "repeat" | import('csstype').Globals | "stretch" | "none" | "round" | "space" | "alpha" | "luminance")[] | undefined;
754
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | readonly string[] | readonly import("csstype").Property.TextEmphasis[] | undefined;
755
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
756
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
757
+ boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
758
+ boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
759
+ boxFlex?: import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
760
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
761
+ boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
762
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
763
+ boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
764
+ boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
765
+ clip?: import("csstype").Property.Clip | readonly string[] | readonly import("csstype").Property.Clip[] | undefined;
766
+ fontStretch?: import("csstype").Property.FontStretch | readonly string[] | readonly import("csstype").Property.FontStretch[] | undefined;
767
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
768
+ gridGap?: import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
769
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
770
+ imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
771
+ insetArea?: import("csstype").Property.PositionArea | readonly string[] | readonly import("csstype").Property.PositionArea[] | undefined;
772
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
773
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
774
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
775
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
776
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
777
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
778
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
779
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
780
+ pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
781
+ positionTryOptions?: import("csstype").Property.PositionTryFallbacks | readonly string[] | readonly import("csstype").Property.PositionTryFallbacks[] | undefined;
782
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
783
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
784
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | readonly string[] | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
785
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | readonly string[] | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
786
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
787
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
788
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
789
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
790
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
791
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
792
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
793
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
794
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
795
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
796
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
797
+ KhtmlOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
798
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
799
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | readonly string[] | readonly import("csstype").Property.BackgroundClip[] | undefined;
800
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | readonly string[] | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
801
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
802
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
803
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
804
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
805
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
806
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
807
+ MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
808
+ MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
809
+ MozBoxFlex?: import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
810
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
811
+ MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
812
+ MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
813
+ MozBoxShadow?: import("csstype").Property.BoxShadow | readonly string[] | readonly import("csstype").Property.BoxShadow[] | undefined;
814
+ MozColumnCount?: import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
815
+ MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
816
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
817
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
818
+ MozOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
819
+ MozOutline?: import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
820
+ MozOutlineColor?: import("csstype").Property.OutlineColor | readonly string[] | readonly import("csstype").Property.OutlineColor[] | undefined;
821
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle | undefined>[] | readonly import("csstype").Property.OutlineStyle[] | undefined;
822
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
823
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
824
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | readonly string[] | readonly import("csstype").Property.TextDecorationColor[] | undefined;
825
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | readonly string[] | readonly import("csstype").Property.TextDecorationLine[] | undefined;
826
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
827
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
828
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
829
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
830
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
831
+ MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
832
+ MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
833
+ msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
834
+ OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("auto" | "reverse" | (string & {}) | import('csstype').Globals | "normal" | "none" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
835
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
836
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | readonly string[] | readonly import("csstype").Property.AnimationDirection[] | undefined;
837
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
838
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | readonly string[] | readonly import("csstype").Property.AnimationFillMode[] | undefined;
839
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
840
+ OAnimationName?: import("csstype").Property.AnimationName | readonly string[] | readonly import("csstype").Property.AnimationName[] | undefined;
841
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | readonly string[] | readonly import("csstype").Property.AnimationPlayState[] | undefined;
842
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | readonly string[] | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
843
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
844
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ((string & {}) | "repeat" | import('csstype').Globals | "stretch" | "none" | "round" | "space")[] | undefined;
845
+ OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
846
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
847
+ OTabSize?: import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
848
+ OTextOverflow?: import("csstype").Property.TextOverflow | readonly string[] | readonly import("csstype").Property.TextOverflow[] | undefined;
849
+ OTransform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
850
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
851
+ OTransition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
852
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
853
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
854
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
855
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
856
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
857
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
858
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
859
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
860
+ WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
861
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
862
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
863
+ WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
864
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
865
+ colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
866
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
867
+ ":-moz-any()"?: unknown;
868
+ ":-moz-dir"?: unknown;
869
+ ":-webkit-any()"?: unknown;
870
+ "::cue"?: unknown;
871
+ "::cue-region"?: unknown;
872
+ "::highlight"?: unknown;
873
+ "::part"?: unknown;
874
+ "::picker"?: unknown;
875
+ "::slotted"?: unknown;
876
+ "::view-transition-group"?: unknown;
877
+ "::view-transition-image-pair"?: unknown;
878
+ "::view-transition-new"?: unknown;
879
+ "::view-transition-old"?: unknown;
880
+ ":active-view-transition-type"?: unknown;
881
+ ":dir"?: unknown;
882
+ ":has"?: unknown;
883
+ ":host"?: unknown;
884
+ ":host-context"?: unknown;
885
+ ":is"?: unknown;
886
+ ":lang"?: unknown;
887
+ ":matches()"?: unknown;
888
+ ":not"?: unknown;
889
+ ":nth-child"?: unknown;
890
+ ":nth-last-child"?: unknown;
891
+ ":nth-last-of-type"?: unknown;
892
+ ":nth-of-type"?: unknown;
893
+ ":state"?: unknown;
894
+ ":where"?: unknown;
895
+ ":-khtml-any-link"?: unknown;
896
+ ":-moz-any-link"?: unknown;
897
+ ":-moz-focusring"?: unknown;
898
+ ":-moz-full-screen"?: unknown;
899
+ ":-moz-placeholder"?: unknown;
900
+ ":-moz-read-only"?: unknown;
901
+ ":-moz-read-write"?: unknown;
902
+ ":-moz-ui-invalid"?: unknown;
903
+ ":-moz-ui-valid"?: unknown;
904
+ ":-ms-fullscreen"?: unknown;
905
+ ":-ms-input-placeholder"?: unknown;
906
+ ":-webkit-any-link"?: unknown;
907
+ ":-webkit-autofill"?: unknown;
908
+ ":-webkit-full-screen"?: unknown;
909
+ "::-moz-placeholder"?: unknown;
910
+ "::-moz-progress-bar"?: unknown;
911
+ "::-moz-range-progress"?: unknown;
912
+ "::-moz-range-thumb"?: unknown;
913
+ "::-moz-range-track"?: unknown;
914
+ "::-moz-selection"?: unknown;
915
+ "::-ms-backdrop"?: unknown;
916
+ "::-ms-browse"?: unknown;
917
+ "::-ms-check"?: unknown;
918
+ "::-ms-clear"?: unknown;
919
+ "::-ms-expand"?: unknown;
920
+ "::-ms-fill"?: unknown;
921
+ "::-ms-fill-lower"?: unknown;
922
+ "::-ms-fill-upper"?: unknown;
923
+ "::-ms-input-placeholder"?: unknown;
924
+ "::-ms-reveal"?: unknown;
925
+ "::-ms-thumb"?: unknown;
926
+ "::-ms-ticks-after"?: unknown;
927
+ "::-ms-ticks-before"?: unknown;
928
+ "::-ms-tooltip"?: unknown;
929
+ "::-ms-track"?: unknown;
930
+ "::-ms-value"?: unknown;
931
+ "::-webkit-backdrop"?: unknown;
932
+ "::-webkit-file-upload-button"?: unknown;
933
+ "::-webkit-input-placeholder"?: unknown;
934
+ "::-webkit-progress-bar"?: unknown;
935
+ "::-webkit-progress-inner-value"?: unknown;
936
+ "::-webkit-progress-value"?: unknown;
937
+ "::-webkit-slider-runnable-track"?: unknown;
938
+ "::-webkit-slider-thumb"?: unknown;
939
+ "::after"?: unknown;
940
+ "::backdrop"?: unknown;
941
+ "::before"?: unknown;
942
+ "::checkmark"?: unknown;
943
+ "::details-content"?: unknown;
944
+ "::file-selector-button"?: unknown;
945
+ "::first-letter"?: unknown;
946
+ "::first-line"?: unknown;
947
+ "::grammar-error"?: unknown;
948
+ "::marker"?: unknown;
949
+ "::picker-icon"?: unknown;
950
+ "::placeholder"?: unknown;
951
+ "::scroll-marker"?: unknown;
952
+ "::scroll-marker-group"?: unknown;
953
+ "::selection"?: unknown;
954
+ "::spelling-error"?: unknown;
955
+ "::target-text"?: unknown;
956
+ "::view-transition"?: unknown;
957
+ ":active"?: unknown;
958
+ ":active-view-transition"?: unknown;
959
+ ":after"?: unknown;
960
+ ":any-link"?: unknown;
961
+ ":autofill"?: unknown;
962
+ ":before"?: unknown;
963
+ ":blank"?: unknown;
964
+ ":buffering"?: unknown;
965
+ ":checked"?: unknown;
966
+ ":current"?: unknown;
967
+ ":default"?: unknown;
968
+ ":defined"?: unknown;
969
+ ":disabled"?: unknown;
970
+ ":empty"?: unknown;
971
+ ":enabled"?: unknown;
972
+ ":first"?: unknown;
973
+ ":first-child"?: unknown;
974
+ ":first-letter"?: unknown;
975
+ ":first-line"?: unknown;
976
+ ":first-of-type"?: unknown;
977
+ ":focus"?: unknown;
978
+ ":focus-visible"?: unknown;
979
+ ":focus-within"?: unknown;
980
+ ":fullscreen"?: unknown;
981
+ ":future"?: unknown;
982
+ ":has-slotted"?: unknown;
983
+ ":hover"?: unknown;
984
+ ":in-range"?: unknown;
985
+ ":indeterminate"?: unknown;
986
+ ":invalid"?: unknown;
987
+ ":last-child"?: unknown;
988
+ ":last-of-type"?: unknown;
989
+ ":left"?: unknown;
990
+ ":link"?: unknown;
991
+ ":local-link"?: unknown;
992
+ ":modal"?: unknown;
993
+ ":muted"?: unknown;
994
+ ":only-child"?: unknown;
995
+ ":only-of-type"?: unknown;
996
+ ":open"?: unknown;
997
+ ":optional"?: unknown;
998
+ ":out-of-range"?: unknown;
999
+ ":past"?: unknown;
1000
+ ":paused"?: unknown;
1001
+ ":picture-in-picture"?: unknown;
1002
+ ":placeholder-shown"?: unknown;
1003
+ ":playing"?: unknown;
1004
+ ":popover-open"?: unknown;
1005
+ ":read-only"?: unknown;
1006
+ ":read-write"?: unknown;
1007
+ ":required"?: unknown;
1008
+ ":right"?: unknown;
1009
+ ":root"?: unknown;
1010
+ ":scope"?: unknown;
1011
+ ":seeking"?: unknown;
1012
+ ":stalled"?: unknown;
1013
+ ":target"?: unknown;
1014
+ ":target-current"?: unknown;
1015
+ ":target-within"?: unknown;
1016
+ ":user-invalid"?: unknown;
1017
+ ":user-valid"?: unknown;
1018
+ ":valid"?: unknown;
1019
+ ":visited"?: unknown;
1020
+ ":volume-locked"?: unknown;
1021
+ ":xr-overlay"?: unknown;
1022
+ };
1023
+ };
1024
+ };