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

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