yuyeon 0.1.0-rc.14 → 0.1.0-rc.17

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