yuyeon 0.1.0-rc.14 → 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 (228) 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/icon.mjs.map +1 -1
  226. package/lib/index.mjs +1 -1
  227. package/lib/index.mjs.map +1 -1
  228. package/package.json +11 -11
@@ -0,0 +1,2188 @@
1
+ import { PropType } from 'vue';
2
+
3
+ export declare const YMenuPropOptions: {
4
+ preventCloseBubble: PropType<boolean>;
5
+ minWidth: PropType<string | number>;
6
+ width: PropType<string | number>;
7
+ maxWidth: PropType<string | number>;
8
+ minHeight: PropType<string | number>;
9
+ height: PropType<string | number>;
10
+ maxHeight: PropType<string | number>;
11
+ coordinateStrategy: Omit<{
12
+ type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
13
+ default: string;
14
+ }, "default" | "type"> & {
15
+ type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
16
+ default: string | import('../../composables/coordinate').CoordinateStrategyFn;
17
+ };
18
+ position: {
19
+ type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
20
+ default: string;
21
+ };
22
+ align: {
23
+ type: PropType<"top" | "bottom" | "start" | "end" | "center">;
24
+ default: string;
25
+ };
26
+ origin: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ offset: {
31
+ /**
32
+ * # Component
33
+ */
34
+ type: PropType<string | number | number[]>;
35
+ };
36
+ viewportMargin: {
37
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
38
+ default: number;
39
+ };
40
+ closeClickContent: {
41
+ type: PropType<boolean>;
42
+ };
43
+ base: PropType<import('../layer/base').BaseType>;
44
+ transition: {
45
+ type: PropType<string | (import('vue').TransitionProps & {
46
+ is?: import('vue').Component | undefined;
47
+ })>;
48
+ default: string;
49
+ };
50
+ theme: PropType<string>;
51
+ modelValue: {
52
+ type: PropType<boolean>;
53
+ };
54
+ scrim: {
55
+ type: PropType<boolean>;
56
+ };
57
+ scrimOpacity: {
58
+ type: PropType<number>;
59
+ };
60
+ eager: {
61
+ type: PropType<boolean>;
62
+ };
63
+ classes: {
64
+ type: PropType<string | Record<string, any> | string[]>;
65
+ };
66
+ contentClasses: {
67
+ type: PropType<string | Record<string, any> | string[]>;
68
+ };
69
+ closeClickScrim: {
70
+ type: PropType<boolean>;
71
+ };
72
+ contentStyles: {
73
+ type: PropType<import('vue').CSSProperties>;
74
+ default: () => void;
75
+ };
76
+ disabled: {
77
+ type: PropType<boolean>;
78
+ default: boolean;
79
+ };
80
+ openOnHover: {
81
+ type: PropType<boolean>;
82
+ default: boolean;
83
+ };
84
+ openDelay: {
85
+ type: PropType<number>;
86
+ default: number;
87
+ };
88
+ closeDelay: {
89
+ type: PropType<number>;
90
+ default: number;
91
+ };
92
+ zIndex: {
93
+ type: PropType<string | number>;
94
+ default: number;
95
+ };
96
+ menuClasses: {
97
+ type: PropType<string | Record<string, any> | string[]>;
98
+ };
99
+ openOnClickBase: {
100
+ type: PropType<boolean>;
101
+ default: boolean;
102
+ };
103
+ closeCondition: {
104
+ type: (BooleanConstructor | FunctionConstructor)[];
105
+ default: undefined;
106
+ };
107
+ preventClip: {
108
+ type: PropType<boolean>;
109
+ default: boolean;
110
+ };
111
+ };
112
+ /**
113
+ * # Component
114
+ */
115
+ export declare const YMenu: import('vue').DefineComponent<{
116
+ transition: {
117
+ default: string;
118
+ type: PropType<string | (import('vue').TransitionProps & {
119
+ is?: import('vue').Component | undefined;
120
+ })>;
121
+ };
122
+ preventCloseBubble: PropType<boolean>;
123
+ minWidth: PropType<string | number>;
124
+ width: PropType<string | number>;
125
+ maxWidth: PropType<string | number>;
126
+ minHeight: PropType<string | number>;
127
+ height: PropType<string | number>;
128
+ maxHeight: PropType<string | number>;
129
+ coordinateStrategy: Omit<{
130
+ type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
131
+ default: string;
132
+ }, "default" | "type"> & {
133
+ type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
134
+ default: string | import('../../composables/coordinate').CoordinateStrategyFn;
135
+ };
136
+ position: {
137
+ type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
138
+ default: string;
139
+ };
140
+ align: {
141
+ type: PropType<"top" | "bottom" | "start" | "end" | "center">;
142
+ default: string;
143
+ };
144
+ origin: {
145
+ type: StringConstructor;
146
+ default: string;
147
+ };
148
+ offset: {
149
+ /**
150
+ * # Component
151
+ */
152
+ type: PropType<string | number | number[]>;
153
+ };
154
+ viewportMargin: {
155
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
156
+ default: number;
157
+ };
158
+ closeClickContent: {
159
+ type: PropType<boolean>;
160
+ };
161
+ base: PropType<import('../layer/base').BaseType>;
162
+ theme: PropType<string>;
163
+ modelValue: {
164
+ type: PropType<boolean>;
165
+ };
166
+ scrim: {
167
+ type: PropType<boolean>;
168
+ };
169
+ scrimOpacity: {
170
+ type: PropType<number>;
171
+ };
172
+ eager: {
173
+ type: PropType<boolean>;
174
+ };
175
+ classes: {
176
+ type: PropType<string | Record<string, any> | string[]>;
177
+ };
178
+ contentClasses: {
179
+ type: PropType<string | Record<string, any> | string[]>;
180
+ };
181
+ closeClickScrim: {
182
+ type: PropType<boolean>;
183
+ };
184
+ contentStyles: {
185
+ type: PropType<import('vue').CSSProperties>;
186
+ default: () => void;
187
+ };
188
+ disabled: {
189
+ type: PropType<boolean>;
190
+ default: boolean;
191
+ };
192
+ openOnHover: {
193
+ type: PropType<boolean>;
194
+ default: boolean;
195
+ };
196
+ openDelay: {
197
+ type: PropType<number>;
198
+ default: number;
199
+ };
200
+ closeDelay: {
201
+ type: PropType<number>;
202
+ default: number;
203
+ };
204
+ zIndex: {
205
+ type: PropType<string | number>;
206
+ default: number;
207
+ };
208
+ menuClasses: {
209
+ type: PropType<string | Record<string, any> | string[]>;
210
+ };
211
+ openOnClickBase: {
212
+ type: PropType<boolean>;
213
+ default: boolean;
214
+ };
215
+ closeCondition: {
216
+ type: (BooleanConstructor | FunctionConstructor)[];
217
+ default: undefined;
218
+ };
219
+ preventClip: {
220
+ type: PropType<boolean>;
221
+ default: boolean;
222
+ };
223
+ }, {
224
+ layer$: import('vue').Ref<import('vue').DefineComponent<{
225
+ minWidth: PropType<string | number>;
226
+ width: PropType<string | number>;
227
+ maxWidth: PropType<string | number>;
228
+ minHeight: PropType<string | number>;
229
+ height: PropType<string | number>;
230
+ maxHeight: PropType<string | number>;
231
+ coordinateStrategy: {
232
+ type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
233
+ default: string;
234
+ };
235
+ position: {
236
+ type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
237
+ default: string;
238
+ };
239
+ align: {
240
+ type: PropType<"top" | "bottom" | "start" | "end" | "center">;
241
+ default: string;
242
+ };
243
+ origin: {
244
+ type: StringConstructor;
245
+ default: string;
246
+ };
247
+ offset: {
248
+ /**
249
+ * # Component
250
+ */
251
+ type: PropType<string | number | number[]>;
252
+ };
253
+ viewportMargin: {
254
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
255
+ default: number;
256
+ };
257
+ closeClickContent: {
258
+ type: PropType<boolean>;
259
+ };
260
+ base: PropType<import('../layer/base').BaseType>;
261
+ transition: {
262
+ type: PropType<string | (import('vue').TransitionProps & {
263
+ is?: import('vue').Component | undefined;
264
+ })>;
265
+ default: string;
266
+ };
267
+ theme: PropType<string>;
268
+ modelValue: {
269
+ type: PropType<boolean>;
270
+ };
271
+ scrim: {
272
+ type: PropType<boolean>;
273
+ };
274
+ scrimOpacity: {
275
+ type: PropType<number>;
276
+ };
277
+ eager: {
278
+ type: PropType<boolean>;
279
+ };
280
+ classes: {
281
+ type: PropType<string | Record<string, any> | string[]>;
282
+ };
283
+ contentClasses: {
284
+ type: PropType<string | Record<string, any> | string[]>;
285
+ };
286
+ closeClickScrim: {
287
+ type: PropType<boolean>;
288
+ };
289
+ contentStyles: {
290
+ type: PropType<import('vue').CSSProperties>;
291
+ default: () => void;
292
+ };
293
+ disabled: {
294
+ type: PropType<boolean>;
295
+ default: boolean;
296
+ };
297
+ openOnHover: {
298
+ type: PropType<boolean>;
299
+ default: boolean;
300
+ };
301
+ openDelay: {
302
+ type: PropType<number>;
303
+ default: number;
304
+ };
305
+ closeDelay: {
306
+ type: PropType<number>;
307
+ default: number;
308
+ };
309
+ zIndex: {
310
+ type: PropType<string | number>;
311
+ default: number;
312
+ };
313
+ modal: PropType<boolean>;
314
+ }, {
315
+ complementClickOption: {
316
+ handler: (mouseEvent: MouseEvent) => void;
317
+ determine?: ((event: Event) => boolean) | undefined;
318
+ include?: (() => (HTMLElement | undefined)[]) | undefined;
319
+ };
320
+ layerGroup: import('vue').ComputedRef<HTMLElement>;
321
+ active: import('vue').WritableComputedRef<boolean>;
322
+ finish: import('vue').ShallowRef<boolean>;
323
+ rendered: import('vue').ComputedRef<boolean>;
324
+ lazyValue: import('vue').ComputedRef<any>;
325
+ onAfterUpdate: () => void;
326
+ scrim$: import('vue').Ref<HTMLElement | undefined>;
327
+ content$: import('vue').Ref<HTMLElement | undefined>;
328
+ base$: import('vue').Ref<any>;
329
+ baseEl: import('vue').Ref<HTMLElement | undefined>;
330
+ baseFromSlotEl: import('vue').ComputedRef<any>;
331
+ polyTransitionBindProps: import('vue').ComputedRef<{
332
+ is: any;
333
+ transitionProps: any;
334
+ }>;
335
+ coordinateStyles: import('vue').Ref<{
336
+ [x: `--${string}`]: string | number | undefined;
337
+ accentColor?: import("csstype").Property.AccentColor | undefined;
338
+ alignContent?: import("csstype").Property.AlignContent | undefined;
339
+ alignItems?: import("csstype").Property.AlignItems | undefined;
340
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
341
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
342
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
343
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
344
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
345
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
346
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
347
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
348
+ animationName?: import("csstype").Property.AnimationName | undefined;
349
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
350
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
351
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
352
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
353
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
354
+ appearance?: import("csstype").Property.Appearance | undefined;
355
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
356
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
357
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
358
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
359
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
360
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
361
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
362
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
363
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
364
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
365
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
366
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
367
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
368
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
369
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
370
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
371
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
372
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
373
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
374
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
375
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
376
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
377
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
378
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
379
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
380
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
381
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
382
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
383
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
384
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
385
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
386
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
387
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
388
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
389
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
390
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
391
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
392
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
393
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
394
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
395
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
396
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
397
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
398
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
399
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
400
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
401
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
402
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
403
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
404
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
405
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
406
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
407
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
408
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
409
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
410
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
411
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
412
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
413
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
414
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
415
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
416
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
417
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
418
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
419
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
420
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
421
+ breakInside?: import("csstype").Property.BreakInside | undefined;
422
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
423
+ caretColor?: import("csstype").Property.CaretColor | undefined;
424
+ caretShape?: import("csstype").Property.CaretShape | undefined;
425
+ clear?: import("csstype").Property.Clear | undefined;
426
+ clipPath?: import("csstype").Property.ClipPath | undefined;
427
+ color?: import("csstype").Property.Color | undefined;
428
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
429
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
430
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
431
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
432
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
433
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
434
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
435
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
436
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
437
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
438
+ contain?: import("csstype").Property.Contain | undefined;
439
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
440
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
441
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
442
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
443
+ containerName?: import("csstype").Property.ContainerName | undefined;
444
+ containerType?: import("csstype").Property.ContainerType | undefined;
445
+ content?: import("csstype").Property.Content | undefined;
446
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
447
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
448
+ counterReset?: import("csstype").Property.CounterReset | undefined;
449
+ counterSet?: import("csstype").Property.CounterSet | undefined;
450
+ cursor?: import("csstype").Property.Cursor | undefined;
451
+ direction?: import("csstype").Property.Direction | undefined;
452
+ display?: import("csstype").Property.Display | undefined;
453
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
454
+ filter?: import("csstype").Property.Filter | undefined;
455
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
456
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
457
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
458
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
459
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
460
+ float?: import("csstype").Property.Float | undefined;
461
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
462
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
463
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
464
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
465
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
466
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
467
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
468
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
469
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
470
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
471
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
472
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
473
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
474
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
475
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
476
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
477
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
478
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
479
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
480
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
481
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
482
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
483
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
484
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
485
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
486
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
487
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
488
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
489
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
490
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
491
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
492
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
493
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
494
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
495
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
496
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
497
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
498
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
499
+ height?: import("csstype").Property.Height<string | number> | undefined;
500
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
501
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
502
+ hyphens?: import("csstype").Property.Hyphens | undefined;
503
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
504
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
505
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
506
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
507
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
508
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
509
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
510
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
511
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
512
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
513
+ isolation?: import("csstype").Property.Isolation | undefined;
514
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
515
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
516
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
517
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
518
+ left?: import("csstype").Property.Left<string | number> | undefined;
519
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
520
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
521
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
522
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
523
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
524
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
525
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
526
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
527
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
528
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
529
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
530
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
531
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
532
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
533
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
534
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
535
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
536
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
537
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
538
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
539
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
540
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
541
+ maskClip?: import("csstype").Property.MaskClip | undefined;
542
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
543
+ maskImage?: import("csstype").Property.MaskImage | undefined;
544
+ maskMode?: import("csstype").Property.MaskMode | undefined;
545
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
546
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
547
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
548
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
549
+ maskType?: import("csstype").Property.MaskType | undefined;
550
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
551
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
552
+ mathShift?: import("csstype").Property.MathShift | undefined;
553
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
554
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
555
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
556
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
557
+ maxLines?: import("csstype").Property.MaxLines | undefined;
558
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
559
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
560
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
561
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
562
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
563
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
564
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
565
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
566
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
567
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
568
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
569
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
570
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
571
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
572
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
573
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
574
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
575
+ opacity?: import("csstype").Property.Opacity | undefined;
576
+ order?: import("csstype").Property.Order | undefined;
577
+ orphans?: import("csstype").Property.Orphans | undefined;
578
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
579
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
580
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
581
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
582
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
583
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
584
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
585
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
586
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
587
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
588
+ overflowX?: import("csstype").Property.OverflowX | undefined;
589
+ overflowY?: import("csstype").Property.OverflowY | undefined;
590
+ overlay?: import("csstype").Property.Overlay | undefined;
591
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
592
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
593
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
594
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
595
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
596
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
597
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
598
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
599
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
600
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
601
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
602
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
603
+ page?: import("csstype").Property.Page | undefined;
604
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
605
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
606
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
607
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
608
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
609
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
610
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
611
+ position?: import("csstype").Property.Position | undefined;
612
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
613
+ quotes?: import("csstype").Property.Quotes | undefined;
614
+ resize?: import("csstype").Property.Resize | undefined;
615
+ right?: import("csstype").Property.Right<string | number> | undefined;
616
+ rotate?: import("csstype").Property.Rotate | undefined;
617
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
618
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
619
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
620
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
621
+ scale?: import("csstype").Property.Scale | undefined;
622
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
623
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
624
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
625
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
626
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
627
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
628
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
629
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
630
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
631
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
632
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
633
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
634
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
635
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
636
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
637
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
638
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
639
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
640
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
641
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
642
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
643
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
644
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
645
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
646
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
647
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
648
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
649
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
650
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
651
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
652
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
653
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
654
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
655
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
656
+ textAlign?: import("csstype").Property.TextAlign | undefined;
657
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
658
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
659
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
660
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
661
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
662
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
663
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
664
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
665
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
666
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
667
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
668
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
669
+ textJustify?: import("csstype").Property.TextJustify | undefined;
670
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
671
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
672
+ textRendering?: import("csstype").Property.TextRendering | undefined;
673
+ textShadow?: import("csstype").Property.TextShadow | undefined;
674
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
675
+ textTransform?: import("csstype").Property.TextTransform | undefined;
676
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
677
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
678
+ textWrap?: import("csstype").Property.TextWrap | undefined;
679
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
680
+ top?: import("csstype").Property.Top<string | number> | undefined;
681
+ touchAction?: import("csstype").Property.TouchAction | undefined;
682
+ transform?: import("csstype").Property.Transform | undefined;
683
+ transformBox?: import("csstype").Property.TransformBox | undefined;
684
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
685
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
686
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
687
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
688
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
689
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
690
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
691
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
692
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
693
+ userSelect?: import("csstype").Property.UserSelect | undefined;
694
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
695
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
696
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
697
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
698
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
699
+ visibility?: import("csstype").Property.Visibility | undefined;
700
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
701
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
702
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
703
+ widows?: import("csstype").Property.Widows | undefined;
704
+ width?: import("csstype").Property.Width<string | number> | undefined;
705
+ willChange?: import("csstype").Property.WillChange | undefined;
706
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
707
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
708
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
709
+ writingMode?: import("csstype").Property.WritingMode | undefined;
710
+ zIndex?: import("csstype").Property.ZIndex | undefined;
711
+ zoom?: import("csstype").Property.Zoom | undefined;
712
+ all?: import('csstype').Globals | undefined;
713
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
714
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
715
+ background?: import("csstype").Property.Background<string | number> | undefined;
716
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
717
+ border?: import("csstype").Property.Border<string | number> | undefined;
718
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
719
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
720
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
721
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
722
+ borderColor?: import("csstype").Property.BorderColor | undefined;
723
+ borderImage?: import("csstype").Property.BorderImage | undefined;
724
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
725
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
726
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
727
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
728
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
729
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
730
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
731
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
732
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
733
+ caret?: import("csstype").Property.Caret | undefined;
734
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
735
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
736
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
737
+ container?: import("csstype").Property.Container | undefined;
738
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
739
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
740
+ font?: import("csstype").Property.Font | undefined;
741
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
742
+ grid?: import("csstype").Property.Grid | undefined;
743
+ gridArea?: import("csstype").Property.GridArea | undefined;
744
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
745
+ gridRow?: import("csstype").Property.GridRow | undefined;
746
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
747
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
748
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
749
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
750
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
751
+ listStyle?: import("csstype").Property.ListStyle | undefined;
752
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
753
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
754
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
755
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
756
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
757
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
758
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
759
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
760
+ overflow?: import("csstype").Property.Overflow | undefined;
761
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
762
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
763
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
764
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
765
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
766
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
767
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
768
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
769
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
770
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
771
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
772
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
773
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
774
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
775
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
776
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
777
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
778
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
779
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
780
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
781
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
782
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
783
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
784
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
785
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
786
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
787
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
788
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
789
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
790
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
791
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
792
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
793
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
794
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
795
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
796
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
797
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
798
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
799
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
800
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
801
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
802
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
803
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
804
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
805
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
806
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
807
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
808
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
809
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
810
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
811
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
812
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
813
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
814
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
815
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
816
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
817
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
818
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
819
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
820
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
821
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
822
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
823
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
824
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
825
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
826
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
827
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
828
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
829
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
830
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
831
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
832
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
833
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
834
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
835
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
836
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
837
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
838
+ msFilter?: import("csstype").Property.MsFilter | undefined;
839
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
840
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
841
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
842
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
843
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
844
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
845
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
846
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
847
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
848
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
849
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
850
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
851
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
852
+ msOrder?: import("csstype").Property.Order | undefined;
853
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
854
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
855
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
856
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
857
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
858
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
859
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
860
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
861
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
862
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
863
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
864
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
865
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
866
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
867
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
868
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
869
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
870
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
871
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
872
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
873
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
874
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
875
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
876
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
877
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
878
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
879
+ msTransform?: import("csstype").Property.Transform | undefined;
880
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
881
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
882
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
883
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
884
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
885
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
886
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
887
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
888
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
889
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
890
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
891
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
892
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
893
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
894
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
895
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
896
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
897
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
898
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
899
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
900
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
901
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
902
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
903
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
904
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
905
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
906
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
907
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
908
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
909
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
910
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
911
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
912
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
913
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
914
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
915
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
916
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
917
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
918
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
919
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
920
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
921
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
922
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
923
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
924
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
925
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
926
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
927
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
928
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
929
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
930
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
931
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
932
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
933
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
934
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
935
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
936
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
937
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
938
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
939
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
940
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
941
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
942
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
943
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
944
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
945
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
946
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
947
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
948
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
949
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
950
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
951
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
952
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
953
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
954
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
955
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
956
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
957
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
958
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
959
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
960
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
961
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
962
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
963
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
964
+ WebkitOrder?: import("csstype").Property.Order | undefined;
965
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
966
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
967
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
968
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
969
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
970
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
971
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
972
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
973
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
974
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
975
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
976
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
977
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
978
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
979
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
980
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
981
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
982
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
983
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
984
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
985
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
986
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
987
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
988
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
989
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
990
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
991
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
992
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
993
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
994
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
995
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
996
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
997
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
998
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
999
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1000
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1001
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1002
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1003
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1004
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1005
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1006
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1007
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1008
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1009
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1010
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1011
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1012
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1013
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1014
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1015
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1016
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1017
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1018
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1019
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1020
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1021
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1022
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1023
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1024
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1025
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1026
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1027
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1028
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1029
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1030
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1031
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1032
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1033
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1034
+ clip?: import("csstype").Property.Clip | undefined;
1035
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1036
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1037
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1038
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1039
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1040
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1041
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1042
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1043
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1044
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1045
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1046
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1047
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1048
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1049
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1050
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1051
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1052
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1053
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1054
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1055
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1056
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1057
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1058
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1059
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1060
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1061
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1062
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1063
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1064
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1065
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1066
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1067
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1068
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1069
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1070
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1071
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1072
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1073
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1074
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1075
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1076
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1077
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1078
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1079
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1080
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1081
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1082
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1083
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1084
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1085
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1086
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1087
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1088
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1089
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1090
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1091
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1092
+ MozTransform?: import("csstype").Property.Transform | undefined;
1093
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1094
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1095
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1096
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1097
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1098
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1099
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1100
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1101
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1102
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1103
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1104
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1105
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1106
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1107
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1108
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1109
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1110
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1111
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1112
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1113
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1114
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1115
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1116
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1117
+ OTransform?: import("csstype").Property.Transform | undefined;
1118
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1119
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1120
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1121
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1122
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1123
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1124
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1125
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1126
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1127
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1128
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1129
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1130
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1131
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1132
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1133
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1134
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1135
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1136
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1137
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1138
+ fill?: import("csstype").Property.Fill | undefined;
1139
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1140
+ fillRule?: import("csstype").Property.FillRule | undefined;
1141
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1142
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1143
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1144
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1145
+ marker?: import("csstype").Property.Marker | undefined;
1146
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1147
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1148
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1149
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1150
+ stopColor?: import("csstype").Property.StopColor | undefined;
1151
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1152
+ stroke?: import("csstype").Property.Stroke | undefined;
1153
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1154
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1155
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1156
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1157
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1158
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1159
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1160
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1161
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1162
+ "accent-color"?: import("csstype").Property.AccentColor | undefined;
1163
+ "align-content"?: import("csstype").Property.AlignContent | undefined;
1164
+ "align-items"?: import("csstype").Property.AlignItems | undefined;
1165
+ "align-self"?: import("csstype").Property.AlignSelf | undefined;
1166
+ "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
1167
+ "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
1168
+ "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1169
+ "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1170
+ "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1171
+ "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1172
+ "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1173
+ "animation-name"?: import("csstype").Property.AnimationName | undefined;
1174
+ "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1175
+ "animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
1176
+ "animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
1177
+ "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
1178
+ "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1179
+ "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
1180
+ "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
1181
+ "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1182
+ "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
1183
+ "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
1184
+ "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1185
+ "background-color"?: import("csstype").Property.BackgroundColor | undefined;
1186
+ "background-image"?: import("csstype").Property.BackgroundImage | undefined;
1187
+ "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1188
+ "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1189
+ "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1190
+ "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
1191
+ "background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1192
+ "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
1193
+ "block-size"?: import("csstype").Property.BlockSize<string | number> | undefined;
1194
+ "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
1195
+ "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
1196
+ "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
1197
+ "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1198
+ "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
1199
+ "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
1200
+ "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1201
+ "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
1202
+ "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1203
+ "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
1204
+ "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1205
+ "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1206
+ "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
1207
+ "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1208
+ "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
1209
+ "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1210
+ "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1211
+ "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1212
+ "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
1213
+ "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
1214
+ "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
1215
+ "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1216
+ "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
1217
+ "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
1218
+ "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
1219
+ "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1220
+ "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
1221
+ "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
1222
+ "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1223
+ "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
1224
+ "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1225
+ "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
1226
+ "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
1227
+ "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1228
+ "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
1229
+ "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
1230
+ "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1231
+ "border-spacing"?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1232
+ "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1233
+ "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1234
+ "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
1235
+ "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1236
+ "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1237
+ "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
1238
+ "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1239
+ "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
1240
+ "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1241
+ "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1242
+ "break-after"?: import("csstype").Property.BreakAfter | undefined;
1243
+ "break-before"?: import("csstype").Property.BreakBefore | undefined;
1244
+ "break-inside"?: import("csstype").Property.BreakInside | undefined;
1245
+ "caption-side"?: import("csstype").Property.CaptionSide | undefined;
1246
+ "caret-color"?: import("csstype").Property.CaretColor | undefined;
1247
+ "caret-shape"?: import("csstype").Property.CaretShape | undefined;
1248
+ "clip-path"?: import("csstype").Property.ClipPath | undefined;
1249
+ "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1250
+ "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
1251
+ "column-count"?: import("csstype").Property.ColumnCount | undefined;
1252
+ "column-fill"?: import("csstype").Property.ColumnFill | undefined;
1253
+ "column-gap"?: import("csstype").Property.ColumnGap<string | number> | undefined;
1254
+ "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1255
+ "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1256
+ "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1257
+ "column-span"?: import("csstype").Property.ColumnSpan | undefined;
1258
+ "column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1259
+ "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1260
+ "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1261
+ "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1262
+ "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1263
+ "container-name"?: import("csstype").Property.ContainerName | undefined;
1264
+ "container-type"?: import("csstype").Property.ContainerType | undefined;
1265
+ "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
1266
+ "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
1267
+ "counter-reset"?: import("csstype").Property.CounterReset | undefined;
1268
+ "counter-set"?: import("csstype").Property.CounterSet | undefined;
1269
+ "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
1270
+ "flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
1271
+ "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1272
+ "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1273
+ "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1274
+ "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1275
+ "font-family"?: import("csstype").Property.FontFamily | undefined;
1276
+ "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1277
+ "font-kerning"?: import("csstype").Property.FontKerning | undefined;
1278
+ "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1279
+ "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
1280
+ "font-palette"?: import("csstype").Property.FontPalette | undefined;
1281
+ "font-size"?: import("csstype").Property.FontSize<string | number> | undefined;
1282
+ "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
1283
+ "font-smooth"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1284
+ "font-stretch"?: import("csstype").Property.FontStretch | undefined;
1285
+ "font-style"?: import("csstype").Property.FontStyle | undefined;
1286
+ "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
1287
+ "font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
1288
+ "font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1289
+ "font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
1290
+ "font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
1291
+ "font-variant"?: import("csstype").Property.FontVariant | undefined;
1292
+ "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
1293
+ "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
1294
+ "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
1295
+ "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
1296
+ "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1297
+ "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
1298
+ "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
1299
+ "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
1300
+ "font-weight"?: import("csstype").Property.FontWeight | undefined;
1301
+ "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
1302
+ "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1303
+ "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
1304
+ "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1305
+ "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
1306
+ "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
1307
+ "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
1308
+ "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
1309
+ "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
1310
+ "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1311
+ "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1312
+ "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
1313
+ "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1314
+ "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
1315
+ "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
1316
+ "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
1317
+ "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
1318
+ "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1319
+ "inline-size"?: import("csstype").Property.InlineSize<string | number> | undefined;
1320
+ "input-security"?: import("csstype").Property.InputSecurity | undefined;
1321
+ "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1322
+ "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1323
+ "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1324
+ "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1325
+ "justify-content"?: import("csstype").Property.JustifyContent | undefined;
1326
+ "justify-items"?: import("csstype").Property.JustifyItems | undefined;
1327
+ "justify-self"?: import("csstype").Property.JustifySelf | undefined;
1328
+ "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
1329
+ "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1330
+ "line-break"?: import("csstype").Property.LineBreak | undefined;
1331
+ "line-height"?: import("csstype").Property.LineHeight<string | number> | undefined;
1332
+ "line-height-step"?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1333
+ "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
1334
+ "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
1335
+ "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
1336
+ "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1337
+ "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1338
+ "margin-bottom"?: import("csstype").Property.MarginBottom<string | number> | undefined;
1339
+ "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1340
+ "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1341
+ "margin-left"?: import("csstype").Property.MarginLeft<string | number> | undefined;
1342
+ "margin-right"?: import("csstype").Property.MarginRight<string | number> | undefined;
1343
+ "margin-top"?: import("csstype").Property.MarginTop<string | number> | undefined;
1344
+ "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
1345
+ "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
1346
+ "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1347
+ "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1348
+ "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1349
+ "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
1350
+ "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1351
+ "mask-clip"?: import("csstype").Property.MaskClip | undefined;
1352
+ "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
1353
+ "mask-image"?: import("csstype").Property.MaskImage | undefined;
1354
+ "mask-mode"?: import("csstype").Property.MaskMode | undefined;
1355
+ "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
1356
+ "mask-position"?: import("csstype").Property.MaskPosition<string | number> | undefined;
1357
+ "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
1358
+ "mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
1359
+ "mask-type"?: import("csstype").Property.MaskType | undefined;
1360
+ "masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
1361
+ "math-depth"?: import("csstype").Property.MathDepth | undefined;
1362
+ "math-shift"?: import("csstype").Property.MathShift | undefined;
1363
+ "math-style"?: import("csstype").Property.MathStyle | undefined;
1364
+ "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1365
+ "max-height"?: import("csstype").Property.MaxHeight<string | number> | undefined;
1366
+ "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1367
+ "max-lines"?: import("csstype").Property.MaxLines | undefined;
1368
+ "max-width"?: import("csstype").Property.MaxWidth<string | number> | undefined;
1369
+ "min-block-size"?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1370
+ "min-height"?: import("csstype").Property.MinHeight<string | number> | undefined;
1371
+ "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1372
+ "min-width"?: import("csstype").Property.MinWidth<string | number> | undefined;
1373
+ "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
1374
+ "motion-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1375
+ "motion-path"?: import("csstype").Property.OffsetPath | undefined;
1376
+ "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1377
+ "object-fit"?: import("csstype").Property.ObjectFit | undefined;
1378
+ "object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1379
+ "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1380
+ "offset-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1381
+ "offset-path"?: import("csstype").Property.OffsetPath | undefined;
1382
+ "offset-position"?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1383
+ "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
1384
+ "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1385
+ "outline-color"?: import("csstype").Property.OutlineColor | undefined;
1386
+ "outline-offset"?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1387
+ "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1388
+ "outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1389
+ "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
1390
+ "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
1391
+ "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
1392
+ "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1393
+ "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
1394
+ "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
1395
+ "overflow-x"?: import("csstype").Property.OverflowX | undefined;
1396
+ "overflow-y"?: import("csstype").Property.OverflowY | undefined;
1397
+ "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1398
+ "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1399
+ "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
1400
+ "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
1401
+ "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1402
+ "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1403
+ "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1404
+ "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1405
+ "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1406
+ "padding-left"?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1407
+ "padding-right"?: import("csstype").Property.PaddingRight<string | number> | undefined;
1408
+ "padding-top"?: import("csstype").Property.PaddingTop<string | number> | undefined;
1409
+ "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
1410
+ "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
1411
+ "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
1412
+ "paint-order"?: import("csstype").Property.PaintOrder | undefined;
1413
+ "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1414
+ "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
1415
+ "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1416
+ "row-gap"?: import("csstype").Property.RowGap<string | number> | undefined;
1417
+ "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
1418
+ "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
1419
+ "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1420
+ "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
1421
+ "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1422
+ "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1423
+ "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1424
+ "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1425
+ "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1426
+ "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1427
+ "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1428
+ "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1429
+ "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1430
+ "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1431
+ "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1432
+ "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1433
+ "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1434
+ "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1435
+ "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1436
+ "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1437
+ "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
1438
+ "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1439
+ "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1440
+ "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1441
+ "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1442
+ "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
1443
+ "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
1444
+ "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
1445
+ "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
1446
+ "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
1447
+ "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
1448
+ "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
1449
+ "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
1450
+ "shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1451
+ "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
1452
+ "tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1453
+ "table-layout"?: import("csstype").Property.TableLayout | undefined;
1454
+ "text-align"?: import("csstype").Property.TextAlign | undefined;
1455
+ "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
1456
+ "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
1457
+ "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1458
+ "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1459
+ "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
1460
+ "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
1461
+ "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1462
+ "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1463
+ "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
1464
+ "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
1465
+ "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
1466
+ "text-indent"?: import("csstype").Property.TextIndent<string | number> | undefined;
1467
+ "text-justify"?: import("csstype").Property.TextJustify | undefined;
1468
+ "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
1469
+ "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1470
+ "text-rendering"?: import("csstype").Property.TextRendering | undefined;
1471
+ "text-shadow"?: import("csstype").Property.TextShadow | undefined;
1472
+ "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1473
+ "text-transform"?: import("csstype").Property.TextTransform | undefined;
1474
+ "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1475
+ "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
1476
+ "text-wrap"?: import("csstype").Property.TextWrap | undefined;
1477
+ "timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
1478
+ "touch-action"?: import("csstype").Property.TouchAction | undefined;
1479
+ "transform-box"?: import("csstype").Property.TransformBox | undefined;
1480
+ "transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1481
+ "transform-style"?: import("csstype").Property.TransformStyle | undefined;
1482
+ "transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
1483
+ "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1484
+ "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1485
+ "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1486
+ "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1487
+ "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
1488
+ "user-select"?: import("csstype").Property.UserSelect | undefined;
1489
+ "vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1490
+ "view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
1491
+ "view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
1492
+ "view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
1493
+ "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
1494
+ "white-space"?: import("csstype").Property.WhiteSpace | undefined;
1495
+ "white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1496
+ "white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
1497
+ "will-change"?: import("csstype").Property.WillChange | undefined;
1498
+ "word-break"?: import("csstype").Property.WordBreak | undefined;
1499
+ "word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
1500
+ "word-wrap"?: import("csstype").Property.WordWrap | undefined;
1501
+ "writing-mode"?: import("csstype").Property.WritingMode | undefined;
1502
+ "z-index"?: import("csstype").Property.ZIndex | undefined;
1503
+ "animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
1504
+ "background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1505
+ "border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
1506
+ "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1507
+ "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1508
+ "border-bottom"?: import("csstype").Property.BorderBottom<string | number> | undefined;
1509
+ "border-color"?: import("csstype").Property.BorderColor | undefined;
1510
+ "border-image"?: import("csstype").Property.BorderImage | undefined;
1511
+ "border-inline"?: import("csstype").Property.BorderInline<string | number> | undefined;
1512
+ "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1513
+ "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1514
+ "border-left"?: import("csstype").Property.BorderLeft<string | number> | undefined;
1515
+ "border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1516
+ "border-right"?: import("csstype").Property.BorderRight<string | number> | undefined;
1517
+ "border-style"?: import("csstype").Property.BorderStyle | undefined;
1518
+ "border-top"?: import("csstype").Property.BorderTop<string | number> | undefined;
1519
+ "border-width"?: import("csstype").Property.BorderWidth<string | number> | undefined;
1520
+ "column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1521
+ "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1522
+ "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
1523
+ "grid-area"?: import("csstype").Property.GridArea | undefined;
1524
+ "grid-column"?: import("csstype").Property.GridColumn | undefined;
1525
+ "grid-row"?: import("csstype").Property.GridRow | undefined;
1526
+ "grid-template"?: import("csstype").Property.GridTemplate | undefined;
1527
+ "inset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
1528
+ "inset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
1529
+ "line-clamp"?: import("csstype").Property.LineClamp | undefined;
1530
+ "list-style"?: import("csstype").Property.ListStyle | undefined;
1531
+ "margin-block"?: import("csstype").Property.MarginBlock<string | number> | undefined;
1532
+ "margin-inline"?: import("csstype").Property.MarginInline<string | number> | undefined;
1533
+ "mask-border"?: import("csstype").Property.MaskBorder | undefined;
1534
+ "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
1535
+ "padding-block"?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1536
+ "padding-inline"?: import("csstype").Property.PaddingInline<string | number> | undefined;
1537
+ "place-content"?: import("csstype").Property.PlaceContent | undefined;
1538
+ "place-items"?: import("csstype").Property.PlaceItems | undefined;
1539
+ "place-self"?: import("csstype").Property.PlaceSelf | undefined;
1540
+ "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1541
+ "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1542
+ "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1543
+ "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1544
+ "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1545
+ "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1546
+ "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1547
+ "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
1548
+ "text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
1549
+ "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
1550
+ "view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
1551
+ "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1552
+ "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1553
+ "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1554
+ "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1555
+ "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1556
+ "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
1557
+ "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1558
+ "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1559
+ "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
1560
+ "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
1561
+ "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
1562
+ "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
1563
+ "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
1564
+ "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1565
+ "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
1566
+ "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
1567
+ "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
1568
+ "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
1569
+ "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
1570
+ "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1571
+ "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
1572
+ "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
1573
+ "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1574
+ "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1575
+ "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1576
+ "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1577
+ "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
1578
+ "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1579
+ "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1580
+ "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
1581
+ "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
1582
+ "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1583
+ "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1584
+ "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
1585
+ "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1586
+ "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1587
+ "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1588
+ "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1589
+ "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1590
+ "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1591
+ "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1592
+ "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
1593
+ "-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1594
+ "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
1595
+ "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1596
+ "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
1597
+ "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
1598
+ "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
1599
+ "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
1600
+ "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
1601
+ "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
1602
+ "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
1603
+ "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
1604
+ "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1605
+ "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1606
+ "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1607
+ "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
1608
+ "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
1609
+ "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
1610
+ "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1611
+ "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
1612
+ "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
1613
+ "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
1614
+ "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1615
+ "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number> | undefined;
1616
+ "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
1617
+ "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1618
+ "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1619
+ "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1620
+ "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
1621
+ "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
1622
+ "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
1623
+ "-ms-order"?: import("csstype").Property.Order | undefined;
1624
+ "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
1625
+ "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
1626
+ "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
1627
+ "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
1628
+ "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1629
+ "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1630
+ "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1631
+ "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1632
+ "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
1633
+ "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1634
+ "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1635
+ "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
1636
+ "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
1637
+ "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1638
+ "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1639
+ "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1640
+ "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1641
+ "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1642
+ "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1643
+ "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1644
+ "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1645
+ "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
1646
+ "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
1647
+ "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1648
+ "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
1649
+ "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
1650
+ "-ms-transform"?: import("csstype").Property.Transform | undefined;
1651
+ "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1652
+ "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1653
+ "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1654
+ "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1655
+ "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1656
+ "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
1657
+ "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
1658
+ "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
1659
+ "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1660
+ "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
1661
+ "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
1662
+ "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
1663
+ "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
1664
+ "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
1665
+ "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1666
+ "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1667
+ "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1668
+ "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1669
+ "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1670
+ "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
1671
+ "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1672
+ "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1673
+ "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
1674
+ "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
1675
+ "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1676
+ "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1677
+ "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1678
+ "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1679
+ "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1680
+ "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1681
+ "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1682
+ "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1683
+ "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1684
+ "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
1685
+ "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1686
+ "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1687
+ "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
1688
+ "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1689
+ "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1690
+ "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1691
+ "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
1692
+ "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
1693
+ "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
1694
+ "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1695
+ "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1696
+ "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1697
+ "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
1698
+ "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1699
+ "-webkit-filter"?: import("csstype").Property.Filter | undefined;
1700
+ "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
1701
+ "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1702
+ "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1703
+ "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1704
+ "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1705
+ "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1706
+ "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
1707
+ "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1708
+ "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1709
+ "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1710
+ "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
1711
+ "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1712
+ "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
1713
+ "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
1714
+ "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
1715
+ "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1716
+ "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1717
+ "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
1718
+ "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1719
+ "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1720
+ "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1721
+ "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
1722
+ "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1723
+ "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
1724
+ "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
1725
+ "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
1726
+ "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
1727
+ "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1728
+ "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1729
+ "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1730
+ "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
1731
+ "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1732
+ "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1733
+ "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1734
+ "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1735
+ "-webkit-order"?: import("csstype").Property.Order | undefined;
1736
+ "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1737
+ "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1738
+ "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1739
+ "-webkit-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
1740
+ "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1741
+ "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1742
+ "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1743
+ "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
1744
+ "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1745
+ "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1746
+ "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
1747
+ "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1748
+ "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1749
+ "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
1750
+ "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1751
+ "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
1752
+ "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
1753
+ "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
1754
+ "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
1755
+ "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
1756
+ "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1757
+ "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1758
+ "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1759
+ "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
1760
+ "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
1761
+ "-webkit-transform"?: import("csstype").Property.Transform | undefined;
1762
+ "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1763
+ "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
1764
+ "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1765
+ "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1766
+ "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1767
+ "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1768
+ "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
1769
+ "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
1770
+ "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
1771
+ "-moz-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1772
+ "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
1773
+ "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1774
+ "-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
1775
+ "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1776
+ "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
1777
+ "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
1778
+ "-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
1779
+ "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
1780
+ "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
1781
+ "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
1782
+ "-ms-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1783
+ "-webkit-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1784
+ "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1785
+ "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
1786
+ "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1787
+ "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1788
+ "-webkit-columns"?: import("csstype").Property.Columns<string | number> | undefined;
1789
+ "-webkit-flex"?: import("csstype").Property.Flex<string | number> | undefined;
1790
+ "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
1791
+ "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number> | undefined;
1792
+ "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
1793
+ "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
1794
+ "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1795
+ "-webkit-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1796
+ "box-align"?: import("csstype").Property.BoxAlign | undefined;
1797
+ "box-direction"?: import("csstype").Property.BoxDirection | undefined;
1798
+ "box-flex"?: import("csstype").Property.BoxFlex | undefined;
1799
+ "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1800
+ "box-lines"?: import("csstype").Property.BoxLines | undefined;
1801
+ "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1802
+ "box-orient"?: import("csstype").Property.BoxOrient | undefined;
1803
+ "box-pack"?: import("csstype").Property.BoxPack | undefined;
1804
+ "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1805
+ "grid-gap"?: import("csstype").Property.GridGap<string | number> | undefined;
1806
+ "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number> | undefined;
1807
+ "ime-mode"?: import("csstype").Property.ImeMode | undefined;
1808
+ "offset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
1809
+ "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1810
+ "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1811
+ "offset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
1812
+ "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1813
+ "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1814
+ "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1815
+ "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1816
+ "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
1817
+ "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
1818
+ "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
1819
+ "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
1820
+ "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
1821
+ "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1822
+ "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1823
+ "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1824
+ "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
1825
+ "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1826
+ "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1827
+ "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
1828
+ "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
1829
+ "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
1830
+ "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
1831
+ "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1832
+ "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1833
+ "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
1834
+ "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1835
+ "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1836
+ "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1837
+ "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1838
+ "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1839
+ "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1840
+ "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1841
+ "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
1842
+ "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1843
+ "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1844
+ "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1845
+ "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1846
+ "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
1847
+ "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1848
+ "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
1849
+ "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1850
+ "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
1851
+ "-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
1852
+ "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
1853
+ "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1854
+ "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1855
+ "-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
1856
+ "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1857
+ "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
1858
+ "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1859
+ "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1860
+ "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1861
+ "-moz-transform"?: import("csstype").Property.Transform | undefined;
1862
+ "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1863
+ "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
1864
+ "-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1865
+ "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1866
+ "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1867
+ "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1868
+ "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1869
+ "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
1870
+ "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
1871
+ "-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1872
+ "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1873
+ "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1874
+ "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1875
+ "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1876
+ "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1877
+ "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
1878
+ "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1879
+ "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1880
+ "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1881
+ "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
1882
+ "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
1883
+ "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1884
+ "-o-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1885
+ "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1886
+ "-o-transform"?: import("csstype").Property.Transform | undefined;
1887
+ "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1888
+ "-o-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1889
+ "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1890
+ "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1891
+ "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1892
+ "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1893
+ "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
1894
+ "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1895
+ "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1896
+ "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1897
+ "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
1898
+ "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1899
+ "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1900
+ "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
1901
+ "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
1902
+ "baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
1903
+ "clip-rule"?: import("csstype").Property.ClipRule | undefined;
1904
+ "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
1905
+ "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
1906
+ "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
1907
+ "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
1908
+ "fill-rule"?: import("csstype").Property.FillRule | undefined;
1909
+ "flood-color"?: import("csstype").Property.FloodColor | undefined;
1910
+ "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
1911
+ "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
1912
+ "lighting-color"?: import("csstype").Property.LightingColor | undefined;
1913
+ "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
1914
+ "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
1915
+ "marker-start"?: import("csstype").Property.MarkerStart | undefined;
1916
+ "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
1917
+ "stop-color"?: import("csstype").Property.StopColor | undefined;
1918
+ "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
1919
+ "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1920
+ "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1921
+ "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
1922
+ "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
1923
+ "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
1924
+ "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
1925
+ "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1926
+ "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
1927
+ "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
1928
+ }>;
1929
+ layerGroupState: WeakMap<HTMLElement, Set<any>>;
1930
+ getActiveLayers: () => import('vue').ComponentInternalInstance[];
1931
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1932
+ 'update:modelValue': (value: boolean) => true;
1933
+ 'click:complement': (mouseEvent: MouseEvent) => true;
1934
+ afterLeave: () => true;
1935
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1936
+ minWidth: PropType<string | number>;
1937
+ width: PropType<string | number>;
1938
+ maxWidth: PropType<string | number>;
1939
+ minHeight: PropType<string | number>;
1940
+ height: PropType<string | number>;
1941
+ maxHeight: PropType<string | number>;
1942
+ coordinateStrategy: {
1943
+ type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1944
+ default: string;
1945
+ };
1946
+ position: {
1947
+ type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1948
+ default: string;
1949
+ };
1950
+ align: {
1951
+ type: PropType<"top" | "bottom" | "start" | "end" | "center">;
1952
+ default: string;
1953
+ };
1954
+ origin: {
1955
+ type: StringConstructor;
1956
+ default: string;
1957
+ };
1958
+ offset: {
1959
+ /**
1960
+ * # Component
1961
+ */
1962
+ type: PropType<string | number | number[]>;
1963
+ };
1964
+ viewportMargin: {
1965
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
1966
+ default: number;
1967
+ };
1968
+ closeClickContent: {
1969
+ type: PropType<boolean>;
1970
+ };
1971
+ base: PropType<import('../layer/base').BaseType>;
1972
+ transition: {
1973
+ type: PropType<string | (import('vue').TransitionProps & {
1974
+ is?: import('vue').Component | undefined;
1975
+ })>;
1976
+ default: string;
1977
+ };
1978
+ theme: PropType<string>;
1979
+ modelValue: {
1980
+ type: PropType<boolean>;
1981
+ };
1982
+ scrim: {
1983
+ type: PropType<boolean>;
1984
+ };
1985
+ scrimOpacity: {
1986
+ type: PropType<number>;
1987
+ };
1988
+ eager: {
1989
+ type: PropType<boolean>;
1990
+ };
1991
+ classes: {
1992
+ type: PropType<string | Record<string, any> | string[]>;
1993
+ };
1994
+ contentClasses: {
1995
+ type: PropType<string | Record<string, any> | string[]>;
1996
+ };
1997
+ closeClickScrim: {
1998
+ type: PropType<boolean>;
1999
+ };
2000
+ contentStyles: {
2001
+ type: PropType<import('vue').CSSProperties>;
2002
+ default: () => void;
2003
+ };
2004
+ disabled: {
2005
+ type: PropType<boolean>;
2006
+ default: boolean;
2007
+ };
2008
+ openOnHover: {
2009
+ type: PropType<boolean>;
2010
+ default: boolean;
2011
+ };
2012
+ openDelay: {
2013
+ type: PropType<number>;
2014
+ default: number;
2015
+ };
2016
+ closeDelay: {
2017
+ type: PropType<number>;
2018
+ default: number;
2019
+ };
2020
+ zIndex: {
2021
+ type: PropType<string | number>;
2022
+ default: number;
2023
+ };
2024
+ modal: PropType<boolean>;
2025
+ }>> & {
2026
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2027
+ onAfterLeave?: (() => any) | undefined;
2028
+ "onClick:complement"?: ((mouseEvent: MouseEvent) => any) | undefined;
2029
+ }, {
2030
+ disabled: boolean;
2031
+ align: "top" | "bottom" | "start" | "end" | "center";
2032
+ closeDelay: number;
2033
+ openDelay: number;
2034
+ transition: string | (import('vue').TransitionProps & {
2035
+ is?: import('vue').Component | undefined;
2036
+ });
2037
+ coordinateStrategy: "levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn;
2038
+ position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2039
+ origin: string;
2040
+ viewportMargin: string | number | unknown[];
2041
+ zIndex: string | number;
2042
+ contentStyles: import('vue').CSSProperties;
2043
+ openOnHover: boolean;
2044
+ }, import('vue').SlotsType<{
2045
+ base: any;
2046
+ default: any;
2047
+ }>> | undefined>;
2048
+ baseEl: import('vue').ComputedRef<any>;
2049
+ classes: import('vue').ComputedRef<{
2050
+ 'y-menu': boolean;
2051
+ }>;
2052
+ children: import('vue').ShallowRef<any[]>;
2053
+ parent: import('../layer/active-stack').ActiveStackProvide | null;
2054
+ active: import('vue').Ref<any> & {
2055
+ readonly rxValue: any;
2056
+ };
2057
+ hovered: import('vue').ComputedRef<boolean>;
2058
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "afterLeave")[], "update:modelValue" | "afterLeave", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2059
+ transition: {
2060
+ default: string;
2061
+ type: PropType<string | (import('vue').TransitionProps & {
2062
+ is?: import('vue').Component | undefined;
2063
+ })>;
2064
+ };
2065
+ preventCloseBubble: PropType<boolean>;
2066
+ minWidth: PropType<string | number>;
2067
+ width: PropType<string | number>;
2068
+ maxWidth: PropType<string | number>;
2069
+ minHeight: PropType<string | number>;
2070
+ height: PropType<string | number>;
2071
+ maxHeight: PropType<string | number>;
2072
+ coordinateStrategy: Omit<{
2073
+ type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2074
+ default: string;
2075
+ }, "default" | "type"> & {
2076
+ type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
2077
+ default: string | import('../../composables/coordinate').CoordinateStrategyFn;
2078
+ };
2079
+ position: {
2080
+ type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
2081
+ default: string;
2082
+ };
2083
+ align: {
2084
+ type: PropType<"top" | "bottom" | "start" | "end" | "center">;
2085
+ default: string;
2086
+ };
2087
+ origin: {
2088
+ type: StringConstructor;
2089
+ default: string;
2090
+ };
2091
+ offset: {
2092
+ /**
2093
+ * # Component
2094
+ */
2095
+ type: PropType<string | number | number[]>;
2096
+ };
2097
+ viewportMargin: {
2098
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
2099
+ default: number;
2100
+ };
2101
+ closeClickContent: {
2102
+ type: PropType<boolean>;
2103
+ };
2104
+ base: PropType<import('../layer/base').BaseType>;
2105
+ theme: PropType<string>;
2106
+ modelValue: {
2107
+ type: PropType<boolean>;
2108
+ };
2109
+ scrim: {
2110
+ type: PropType<boolean>;
2111
+ };
2112
+ scrimOpacity: {
2113
+ type: PropType<number>;
2114
+ };
2115
+ eager: {
2116
+ type: PropType<boolean>;
2117
+ };
2118
+ classes: {
2119
+ type: PropType<string | Record<string, any> | string[]>;
2120
+ };
2121
+ contentClasses: {
2122
+ type: PropType<string | Record<string, any> | string[]>;
2123
+ };
2124
+ closeClickScrim: {
2125
+ type: PropType<boolean>;
2126
+ };
2127
+ contentStyles: {
2128
+ type: PropType<import('vue').CSSProperties>;
2129
+ default: () => void;
2130
+ };
2131
+ disabled: {
2132
+ type: PropType<boolean>;
2133
+ default: boolean;
2134
+ };
2135
+ openOnHover: {
2136
+ type: PropType<boolean>;
2137
+ default: boolean;
2138
+ };
2139
+ openDelay: {
2140
+ type: PropType<number>;
2141
+ default: number;
2142
+ };
2143
+ closeDelay: {
2144
+ type: PropType<number>;
2145
+ default: number;
2146
+ };
2147
+ zIndex: {
2148
+ type: PropType<string | number>;
2149
+ default: number;
2150
+ };
2151
+ menuClasses: {
2152
+ type: PropType<string | Record<string, any> | string[]>;
2153
+ };
2154
+ openOnClickBase: {
2155
+ type: PropType<boolean>;
2156
+ default: boolean;
2157
+ };
2158
+ closeCondition: {
2159
+ type: (BooleanConstructor | FunctionConstructor)[];
2160
+ default: undefined;
2161
+ };
2162
+ preventClip: {
2163
+ type: PropType<boolean>;
2164
+ default: boolean;
2165
+ };
2166
+ }>> & {
2167
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2168
+ onAfterLeave?: ((...args: any[]) => any) | undefined;
2169
+ }, {
2170
+ disabled: boolean;
2171
+ align: "top" | "bottom" | "start" | "end" | "center";
2172
+ closeDelay: number;
2173
+ openDelay: number;
2174
+ transition: string | (import('vue').TransitionProps & {
2175
+ is?: import('vue').Component | undefined;
2176
+ });
2177
+ coordinateStrategy: string | import('../../composables/coordinate').CoordinateStrategyFn;
2178
+ position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2179
+ origin: string;
2180
+ viewportMargin: string | number | unknown[];
2181
+ zIndex: string | number;
2182
+ contentStyles: import('vue').CSSProperties;
2183
+ openOnHover: boolean;
2184
+ preventClip: boolean;
2185
+ openOnClickBase: boolean;
2186
+ closeCondition: boolean | Function;
2187
+ }, {}>;
2188
+ export type YMenu = InstanceType<typeof YMenu>;