@a-type/ui 3.0.21 → 3.0.23

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 (68) hide show
  1. package/dist/cjs/components/box/Box.d.ts +0 -3
  2. package/dist/cjs/components/box/Box.js +6 -13
  3. package/dist/cjs/components/box/Box.js.map +1 -1
  4. package/dist/cjs/components/card/Card.d.ts +3 -2
  5. package/dist/cjs/components/card/Card.js +7 -5
  6. package/dist/cjs/components/card/Card.js.map +1 -1
  7. package/dist/cjs/components/contextMenu/contextMenu.js +2 -2
  8. package/dist/cjs/components/contextMenu/contextMenu.js.map +1 -1
  9. package/dist/cjs/components/dialog/Dialog.js +2 -2
  10. package/dist/cjs/components/dialog/Dialog.js.map +1 -1
  11. package/dist/cjs/components/dropdownMenu/DropdownMenu.js +2 -2
  12. package/dist/cjs/components/dropdownMenu/DropdownMenu.js.map +1 -1
  13. package/dist/cjs/components/layouts/PageNav.js +2 -2
  14. package/dist/cjs/components/layouts/PageNav.js.map +1 -1
  15. package/dist/cjs/components/layouts/PageNowPlaying.js +2 -2
  16. package/dist/cjs/components/layouts/PageNowPlaying.js.map +1 -1
  17. package/dist/cjs/components/popover/Popover.js +2 -2
  18. package/dist/cjs/components/popover/Popover.js.map +1 -1
  19. package/dist/cjs/components/select/Select.js +2 -2
  20. package/dist/cjs/components/select/Select.js.map +1 -1
  21. package/dist/cjs/components/tooltip/Tooltip.js +2 -3
  22. package/dist/cjs/components/tooltip/Tooltip.js.map +1 -1
  23. package/dist/cjs/hooks/useTitleBarColor.js +11 -1
  24. package/dist/cjs/hooks/useTitleBarColor.js.map +1 -1
  25. package/dist/cjs/systems/GroupScale.d.ts +838 -0
  26. package/dist/cjs/systems/GroupScale.js +27 -0
  27. package/dist/cjs/systems/GroupScale.js.map +1 -0
  28. package/dist/css/main.css +2 -2
  29. package/dist/esm/components/box/Box.d.ts +0 -3
  30. package/dist/esm/components/box/Box.js +6 -12
  31. package/dist/esm/components/box/Box.js.map +1 -1
  32. package/dist/esm/components/card/Card.d.ts +3 -2
  33. package/dist/esm/components/card/Card.js +7 -5
  34. package/dist/esm/components/card/Card.js.map +1 -1
  35. package/dist/esm/components/contextMenu/contextMenu.js +2 -2
  36. package/dist/esm/components/contextMenu/contextMenu.js.map +1 -1
  37. package/dist/esm/components/dialog/Dialog.js +2 -2
  38. package/dist/esm/components/dialog/Dialog.js.map +1 -1
  39. package/dist/esm/components/dropdownMenu/DropdownMenu.js +2 -2
  40. package/dist/esm/components/dropdownMenu/DropdownMenu.js.map +1 -1
  41. package/dist/esm/components/layouts/PageNav.js +2 -2
  42. package/dist/esm/components/layouts/PageNav.js.map +1 -1
  43. package/dist/esm/components/layouts/PageNowPlaying.js +2 -2
  44. package/dist/esm/components/layouts/PageNowPlaying.js.map +1 -1
  45. package/dist/esm/components/popover/Popover.js +2 -2
  46. package/dist/esm/components/popover/Popover.js.map +1 -1
  47. package/dist/esm/components/select/Select.js +2 -2
  48. package/dist/esm/components/select/Select.js.map +1 -1
  49. package/dist/esm/components/tooltip/Tooltip.js +2 -3
  50. package/dist/esm/components/tooltip/Tooltip.js.map +1 -1
  51. package/dist/esm/hooks/useTitleBarColor.js +12 -2
  52. package/dist/esm/hooks/useTitleBarColor.js.map +1 -1
  53. package/dist/esm/systems/GroupScale.d.ts +838 -0
  54. package/dist/esm/systems/GroupScale.js +20 -0
  55. package/dist/esm/systems/GroupScale.js.map +1 -0
  56. package/package.json +1 -1
  57. package/src/components/box/Box.tsx +11 -30
  58. package/src/components/card/Card.tsx +52 -28
  59. package/src/components/contextMenu/contextMenu.tsx +3 -3
  60. package/src/components/dialog/Dialog.tsx +3 -3
  61. package/src/components/dropdownMenu/DropdownMenu.tsx +3 -3
  62. package/src/components/layouts/PageNav.tsx +2 -4
  63. package/src/components/layouts/PageNowPlaying.tsx +3 -3
  64. package/src/components/popover/Popover.tsx +3 -3
  65. package/src/components/select/Select.tsx +3 -3
  66. package/src/components/tooltip/Tooltip.tsx +3 -5
  67. package/src/hooks/useTitleBarColor.ts +16 -2
  68. package/src/systems/GroupScale.tsx +35 -0
@@ -0,0 +1,838 @@
1
+ import { CSSProperties, ReactNode } from 'react';
2
+ export declare const GroupScaleContext: import("react").Context<number>;
3
+ export declare const GroupScaleLayer: ({ children }: {
4
+ children?: ReactNode;
5
+ }) => import("react/jsx-runtime").JSX.Element;
6
+ export declare function useGroupScale(): number;
7
+ export declare function useGroupScaleStyles(composeStyles?: CSSProperties): {
8
+ accentColor?: import("csstype").Property.AccentColor | undefined;
9
+ alignContent?: import("csstype").Property.AlignContent | undefined;
10
+ alignItems?: import("csstype").Property.AlignItems | undefined;
11
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
12
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
13
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
14
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
15
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
16
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
17
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
18
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
19
+ animationName?: import("csstype").Property.AnimationName | undefined;
20
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
21
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
22
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
23
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
24
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
25
+ appearance?: import("csstype").Property.Appearance | undefined;
26
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
27
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
28
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
29
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
30
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
31
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
32
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
33
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
34
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
35
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
36
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
37
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
38
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
39
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
40
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
41
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
42
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
43
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
44
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
45
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
46
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
47
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
48
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
49
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
50
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
51
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
52
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
53
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
54
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
55
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
56
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
57
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
58
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
59
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
60
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
61
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
62
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
63
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
64
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
65
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
66
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
67
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
68
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
69
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
70
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
71
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
72
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
73
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
74
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
75
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
76
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
77
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
78
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
79
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
80
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
81
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
82
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
83
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
84
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
85
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
86
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
87
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
88
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
89
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
90
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
91
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
92
+ breakInside?: import("csstype").Property.BreakInside | undefined;
93
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
94
+ caretColor?: import("csstype").Property.CaretColor | undefined;
95
+ caretShape?: import("csstype").Property.CaretShape | undefined;
96
+ clear?: import("csstype").Property.Clear | undefined;
97
+ clipPath?: import("csstype").Property.ClipPath | undefined;
98
+ color?: import("csstype").Property.Color | undefined;
99
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
100
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
101
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
102
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
103
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
104
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
105
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
106
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
107
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
108
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
109
+ contain?: import("csstype").Property.Contain | undefined;
110
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
111
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
112
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
113
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
114
+ containerName?: import("csstype").Property.ContainerName | undefined;
115
+ containerType?: import("csstype").Property.ContainerType | undefined;
116
+ content?: import("csstype").Property.Content | undefined;
117
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
118
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
119
+ counterReset?: import("csstype").Property.CounterReset | undefined;
120
+ counterSet?: import("csstype").Property.CounterSet | undefined;
121
+ cursor?: import("csstype").Property.Cursor | undefined;
122
+ direction?: import("csstype").Property.Direction | undefined;
123
+ display?: import("csstype").Property.Display | undefined;
124
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
125
+ filter?: import("csstype").Property.Filter | undefined;
126
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
127
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
128
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
129
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
130
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
131
+ float?: import("csstype").Property.Float | undefined;
132
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
133
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
134
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
135
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
136
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
137
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
138
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
139
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
140
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
141
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
142
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
143
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
144
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
145
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
146
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
147
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
148
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
149
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
150
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
151
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
152
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
153
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
154
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
155
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
156
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
157
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
158
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
159
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
160
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
161
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
162
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
163
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
164
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
165
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
166
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
167
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
168
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
169
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
170
+ height?: import("csstype").Property.Height<string | number> | undefined;
171
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
172
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
173
+ hyphens?: import("csstype").Property.Hyphens | undefined;
174
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
175
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
176
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
177
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
178
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
179
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
180
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
181
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
182
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
183
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
184
+ isolation?: import("csstype").Property.Isolation | undefined;
185
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
186
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
187
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
188
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
189
+ left?: import("csstype").Property.Left<string | number> | undefined;
190
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
191
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
192
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
193
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
194
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
195
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
196
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
197
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
198
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
199
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
200
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
201
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
202
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
203
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
204
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
205
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
206
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
207
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
208
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
209
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
210
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
211
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
212
+ maskClip?: import("csstype").Property.MaskClip | undefined;
213
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
214
+ maskImage?: import("csstype").Property.MaskImage | undefined;
215
+ maskMode?: import("csstype").Property.MaskMode | undefined;
216
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
217
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
218
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
219
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
220
+ maskType?: import("csstype").Property.MaskType | undefined;
221
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
222
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
223
+ mathShift?: import("csstype").Property.MathShift | undefined;
224
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
225
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
226
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
227
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
228
+ maxLines?: import("csstype").Property.MaxLines | undefined;
229
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
230
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
231
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
232
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
233
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
234
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
235
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
236
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
237
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
238
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
239
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
240
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
241
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
242
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
243
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
244
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
245
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
246
+ opacity?: import("csstype").Property.Opacity | undefined;
247
+ order?: import("csstype").Property.Order | undefined;
248
+ orphans?: import("csstype").Property.Orphans | undefined;
249
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
250
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
251
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
252
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
253
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
254
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
255
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
256
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
257
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
258
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
259
+ overflowX?: import("csstype").Property.OverflowX | undefined;
260
+ overflowY?: import("csstype").Property.OverflowY | undefined;
261
+ overlay?: import("csstype").Property.Overlay | undefined;
262
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
263
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
264
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
265
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
266
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
267
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
268
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
269
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
270
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
271
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
272
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
273
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
274
+ page?: import("csstype").Property.Page | undefined;
275
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
276
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
277
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
278
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
279
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
280
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
281
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
282
+ position?: import("csstype").Property.Position | undefined;
283
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
284
+ quotes?: import("csstype").Property.Quotes | undefined;
285
+ resize?: import("csstype").Property.Resize | undefined;
286
+ right?: import("csstype").Property.Right<string | number> | undefined;
287
+ rotate?: import("csstype").Property.Rotate | undefined;
288
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
289
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
290
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
291
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
292
+ scale?: import("csstype").Property.Scale | undefined;
293
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
294
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
295
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
296
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
297
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
298
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
299
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
300
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
301
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
302
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
303
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
304
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
305
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
306
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
307
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
308
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
309
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
310
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
311
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
312
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
313
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
314
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
315
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
316
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
317
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
318
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
319
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
320
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
321
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
322
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
323
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
324
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
325
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
326
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
327
+ textAlign?: import("csstype").Property.TextAlign | undefined;
328
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
329
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
330
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
331
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
332
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
333
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
334
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
335
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
336
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
337
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
338
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
339
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
340
+ textJustify?: import("csstype").Property.TextJustify | undefined;
341
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
342
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
343
+ textRendering?: import("csstype").Property.TextRendering | undefined;
344
+ textShadow?: import("csstype").Property.TextShadow | undefined;
345
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
346
+ textTransform?: import("csstype").Property.TextTransform | undefined;
347
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
348
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
349
+ textWrap?: import("csstype").Property.TextWrap | undefined;
350
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
351
+ top?: import("csstype").Property.Top<string | number> | undefined;
352
+ touchAction?: import("csstype").Property.TouchAction | undefined;
353
+ transform?: import("csstype").Property.Transform | undefined;
354
+ transformBox?: import("csstype").Property.TransformBox | undefined;
355
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
356
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
357
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
358
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
359
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
360
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
361
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
362
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
363
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
364
+ userSelect?: import("csstype").Property.UserSelect | undefined;
365
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
366
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
367
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
368
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
369
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
370
+ visibility?: import("csstype").Property.Visibility | undefined;
371
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
372
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
373
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
374
+ widows?: import("csstype").Property.Widows | undefined;
375
+ width?: import("csstype").Property.Width<string | number> | undefined;
376
+ willChange?: import("csstype").Property.WillChange | undefined;
377
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
378
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
379
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
380
+ writingMode?: import("csstype").Property.WritingMode | undefined;
381
+ zIndex?: import("csstype").Property.ZIndex | undefined;
382
+ zoom?: import("csstype").Property.Zoom | undefined;
383
+ all?: import("csstype").Property.All | undefined;
384
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
385
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
386
+ background?: import("csstype").Property.Background<string | number> | undefined;
387
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
388
+ border?: import("csstype").Property.Border<string | number> | undefined;
389
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
390
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
391
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
392
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
393
+ borderColor?: import("csstype").Property.BorderColor | undefined;
394
+ borderImage?: import("csstype").Property.BorderImage | undefined;
395
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
396
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
397
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
398
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
399
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
400
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
401
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
402
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
403
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
404
+ caret?: import("csstype").Property.Caret | undefined;
405
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
406
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
407
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
408
+ container?: import("csstype").Property.Container | undefined;
409
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
410
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
411
+ font?: import("csstype").Property.Font | undefined;
412
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
413
+ grid?: import("csstype").Property.Grid | undefined;
414
+ gridArea?: import("csstype").Property.GridArea | undefined;
415
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
416
+ gridRow?: import("csstype").Property.GridRow | undefined;
417
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
418
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
419
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
420
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
421
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
422
+ listStyle?: import("csstype").Property.ListStyle | undefined;
423
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
424
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
425
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
426
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
427
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
428
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
429
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
430
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
431
+ overflow?: import("csstype").Property.Overflow | undefined;
432
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
433
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
434
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
435
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
436
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
437
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
438
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
439
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
440
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
441
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
442
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
443
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
444
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
445
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
446
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
447
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
448
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
449
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
450
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
451
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
452
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
453
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
454
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
455
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
456
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
457
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
458
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
459
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
460
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
461
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
462
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
463
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
464
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
465
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
466
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
467
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
468
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
469
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
470
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
471
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
472
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
473
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
474
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
475
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
476
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
477
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
478
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
479
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
480
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
481
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
482
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
483
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
484
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
485
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
486
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
487
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
488
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
489
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
490
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
491
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
492
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
493
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
494
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
495
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
496
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
497
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
498
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
499
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
500
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
501
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
502
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
503
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
504
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
505
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
506
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
507
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
508
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
509
+ msFilter?: import("csstype").Property.MsFilter | undefined;
510
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
511
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
512
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
513
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
514
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
515
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
516
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
517
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
518
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
519
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
520
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
521
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
522
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
523
+ msOrder?: import("csstype").Property.Order | undefined;
524
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
525
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
526
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
527
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
528
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
529
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
530
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
531
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
532
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
533
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
534
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
535
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
536
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
537
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
538
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
539
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
540
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
541
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
542
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
543
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
544
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
545
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
546
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
547
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
548
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
549
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
550
+ msTransform?: import("csstype").Property.Transform | undefined;
551
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
552
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
553
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
554
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
555
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
556
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
557
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
558
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
559
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
560
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
561
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
562
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
563
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
564
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
565
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
566
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
567
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
568
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
569
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
570
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
571
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
572
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
573
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
574
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
575
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
576
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
577
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
578
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
579
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
580
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
581
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
582
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
583
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
584
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
585
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
586
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
587
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
588
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
589
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
590
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
591
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
592
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
593
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
594
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
595
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
596
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
597
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
598
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
599
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
600
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
601
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
602
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
603
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
604
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
605
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
606
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
607
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
608
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
609
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
610
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
611
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
612
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
613
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
614
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
615
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
616
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
617
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
618
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
619
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
620
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
621
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
622
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
623
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
624
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
625
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
626
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
627
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
628
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
629
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
630
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
631
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
632
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
633
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
634
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
635
+ WebkitOrder?: import("csstype").Property.Order | undefined;
636
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
637
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
638
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
639
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
640
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
641
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
642
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
643
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
644
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
645
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
646
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
647
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
648
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
649
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
650
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
651
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
652
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
653
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
654
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
655
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
656
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
657
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
658
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
659
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
660
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
661
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
662
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
663
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
664
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
665
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
666
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
667
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
668
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
669
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
670
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
671
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
672
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
673
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
674
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
675
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
676
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
677
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
678
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
679
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
680
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
681
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
682
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
683
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
684
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
685
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
686
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
687
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
688
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
689
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
690
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
691
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
692
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
693
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
694
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
695
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
696
+ azimuth?: import("csstype").Property.Azimuth | undefined;
697
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
698
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
699
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
700
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
701
+ boxLines?: import("csstype").Property.BoxLines | undefined;
702
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
703
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
704
+ boxPack?: import("csstype").Property.BoxPack | undefined;
705
+ clip?: import("csstype").Property.Clip | undefined;
706
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
707
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
708
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
709
+ imeMode?: import("csstype").Property.ImeMode | undefined;
710
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
711
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
712
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
713
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
714
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
715
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
716
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
717
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
718
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
719
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
720
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
721
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
722
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
723
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
724
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
725
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
726
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
727
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
728
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
729
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
730
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
731
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
732
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
733
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
734
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
735
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
736
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
737
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
738
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
739
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
740
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
741
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
742
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
743
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
744
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
745
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
746
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
747
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
748
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
749
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
750
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
751
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
752
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
753
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
754
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
755
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
756
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
757
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
758
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
759
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
760
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
761
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
762
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
763
+ MozTransform?: import("csstype").Property.Transform | undefined;
764
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
765
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
766
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
767
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
768
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
769
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
770
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
771
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
772
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
773
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
774
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
775
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
776
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
777
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
778
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
779
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
780
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
781
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
782
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
783
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
784
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
785
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
786
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
787
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
788
+ OTransform?: import("csstype").Property.Transform | undefined;
789
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
790
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
791
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
792
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
793
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
794
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
795
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
796
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
797
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
798
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
799
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
800
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
801
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
802
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
803
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
804
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
805
+ clipRule?: import("csstype").Property.ClipRule | undefined;
806
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
807
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
808
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
809
+ fill?: import("csstype").Property.Fill | undefined;
810
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
811
+ fillRule?: import("csstype").Property.FillRule | undefined;
812
+ floodColor?: import("csstype").Property.FloodColor | undefined;
813
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
814
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
815
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
816
+ marker?: import("csstype").Property.Marker | undefined;
817
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
818
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
819
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
820
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
821
+ stopColor?: import("csstype").Property.StopColor | undefined;
822
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
823
+ stroke?: import("csstype").Property.Stroke | undefined;
824
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
825
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
826
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
827
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
828
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
829
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
830
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
831
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
832
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
833
+ '--spacing-scale': number;
834
+ '--local-corner-scale': number;
835
+ };
836
+ export declare const GroupScaleReset: ({ children }: {
837
+ children: ReactNode;
838
+ }) => import("react/jsx-runtime").JSX.Element;