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