react-three-game 0.0.17 → 0.0.19

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