@meonode/ui 0.3.6 → 0.3.7

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