yuyeon 0.1.0-rc.13 → 0.1.0-rc.16

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