yuyeon 0.0.12 → 0.0.13

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