elbe-ui 1.0.2 → 1.0.4

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.
@@ -10,843 +10,25 @@ export type ElbeProps = {
10
10
  typeLabel?: string;
11
11
  ariaLabel?: string | null;
12
12
  role?: AriaRoles | null;
13
+ onKeyDown?: (e: React.KeyboardEvent) => void;
14
+ onKeyUp?: (e: React.KeyboardEvent) => void;
15
+ onClick?: (e: React.MouseEvent) => void;
16
+ onContextMenu?: (e: React.MouseEvent) => void;
17
+ onDoubleClick?: (e: React.MouseEvent) => void;
18
+ onMouseDown?: (e: React.MouseEvent) => void;
19
+ onMouseUp?: (e: React.MouseEvent) => void;
20
+ onMouseEnter?: (e: React.MouseEvent) => void;
21
+ onMouseLeave?: (e: React.MouseEvent) => void;
22
+ onFocus?: (e: React.FocusEvent) => void;
23
+ onBlur?: (e: React.FocusEvent) => void;
24
+ tabIndex?: number;
25
+ autoFocus?: boolean;
13
26
  };
14
27
  export type ActionElbeProps = ElbeProps & {
15
28
  ariaLabel: string | null;
16
29
  };
17
30
  export declare function applyProps(typeLabel: string, p: ElbeProps, classes?: string | null | (string | false | null | undefined)[], style?: React.CSSProperties): {
18
- "aria-label": string | undefined;
19
- "data-type": string | undefined;
20
- "data-tooltip"?: string | undefined;
21
- id: string | undefined;
22
- className: string;
23
- style: {
24
- flex?: string | number | undefined;
25
- accentColor?: import("csstype").Property.AccentColor | undefined;
26
- alignContent?: import("csstype").Property.AlignContent | undefined;
27
- alignItems?: import("csstype").Property.AlignItems | undefined;
28
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
29
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
30
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
31
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
32
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
33
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
34
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
35
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
36
- animationName?: import("csstype").Property.AnimationName | undefined;
37
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
38
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
39
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
40
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
41
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
42
- appearance?: import("csstype").Property.Appearance | undefined;
43
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
44
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
45
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
46
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
47
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
48
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
49
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
50
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
51
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
52
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
53
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
54
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
55
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
56
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
57
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
58
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
59
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
60
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
61
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
62
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
63
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
64
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
65
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
66
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
67
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
68
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
69
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
70
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
71
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
72
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
73
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
74
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
75
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
76
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
77
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
78
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
79
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
80
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
81
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
82
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
83
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
84
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
85
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
86
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
87
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
88
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
89
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
90
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
91
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
92
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
93
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
94
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
95
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
96
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
97
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
98
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
99
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
100
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
101
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
102
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
103
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
104
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
105
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
106
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
107
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
108
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
109
- breakInside?: import("csstype").Property.BreakInside | undefined;
110
- captionSide?: import("csstype").Property.CaptionSide | undefined;
111
- caretColor?: import("csstype").Property.CaretColor | undefined;
112
- caretShape?: import("csstype").Property.CaretShape | undefined;
113
- clear?: import("csstype").Property.Clear | undefined;
114
- clipPath?: import("csstype").Property.ClipPath | undefined;
115
- color?: import("csstype").Property.Color | undefined;
116
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
117
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
118
- columnCount?: import("csstype").Property.ColumnCount | undefined;
119
- columnFill?: import("csstype").Property.ColumnFill | undefined;
120
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
121
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
122
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
123
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
124
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
125
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
126
- contain?: import("csstype").Property.Contain | undefined;
127
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
128
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
129
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
130
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
131
- containerName?: import("csstype").Property.ContainerName | undefined;
132
- containerType?: import("csstype").Property.ContainerType | undefined;
133
- content?: import("csstype").Property.Content | undefined;
134
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
135
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
136
- counterReset?: import("csstype").Property.CounterReset | undefined;
137
- counterSet?: import("csstype").Property.CounterSet | undefined;
138
- cursor?: import("csstype").Property.Cursor | undefined;
139
- direction?: import("csstype").Property.Direction | undefined;
140
- display?: import("csstype").Property.Display | undefined;
141
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
142
- filter?: import("csstype").Property.Filter | undefined;
143
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
144
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
145
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
146
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
147
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
148
- float?: import("csstype").Property.Float | undefined;
149
- fontFamily?: import("csstype").Property.FontFamily | undefined;
150
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
151
- fontKerning?: import("csstype").Property.FontKerning | undefined;
152
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
153
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
154
- fontPalette?: import("csstype").Property.FontPalette | undefined;
155
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
156
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
157
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
158
- fontStretch?: import("csstype").Property.FontStretch | undefined;
159
- fontStyle?: import("csstype").Property.FontStyle | undefined;
160
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
161
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
162
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
163
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
164
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
165
- fontVariant?: import("csstype").Property.FontVariant | undefined;
166
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
167
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
168
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
169
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
170
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
171
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
172
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
173
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
174
- fontWeight?: import("csstype").Property.FontWeight | undefined;
175
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
176
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
177
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
178
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
179
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
180
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
181
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
182
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
183
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
184
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
185
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
186
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
187
- height?: import("csstype").Property.Height<string | number> | undefined;
188
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
189
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
190
- hyphens?: import("csstype").Property.Hyphens | undefined;
191
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
192
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
193
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
194
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
195
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
196
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
197
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
198
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
199
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
200
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
201
- isolation?: import("csstype").Property.Isolation | undefined;
202
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
203
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
204
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
205
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
206
- left?: import("csstype").Property.Left<string | number> | undefined;
207
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
208
- lineBreak?: import("csstype").Property.LineBreak | undefined;
209
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
210
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
211
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
212
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
213
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
214
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
215
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
216
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
217
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
218
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
219
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
220
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
221
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
222
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
223
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
224
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
225
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
226
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
227
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
228
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
229
- maskClip?: import("csstype").Property.MaskClip | undefined;
230
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
231
- maskImage?: import("csstype").Property.MaskImage | undefined;
232
- maskMode?: import("csstype").Property.MaskMode | undefined;
233
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
234
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
235
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
236
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
237
- maskType?: import("csstype").Property.MaskType | undefined;
238
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
239
- mathDepth?: import("csstype").Property.MathDepth | undefined;
240
- mathShift?: import("csstype").Property.MathShift | undefined;
241
- mathStyle?: import("csstype").Property.MathStyle | undefined;
242
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
243
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
244
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
245
- maxLines?: import("csstype").Property.MaxLines | undefined;
246
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
247
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
248
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
249
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
250
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
251
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
252
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
253
- motionPath?: import("csstype").Property.OffsetPath | undefined;
254
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
255
- objectFit?: import("csstype").Property.ObjectFit | undefined;
256
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
257
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
258
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
259
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
260
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
261
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
262
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
263
- opacity?: import("csstype").Property.Opacity | undefined;
264
- order?: import("csstype").Property.Order | undefined;
265
- orphans?: import("csstype").Property.Orphans | undefined;
266
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
267
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
268
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
269
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
270
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
271
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
272
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
273
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
274
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
275
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
276
- overflowX?: import("csstype").Property.OverflowX | undefined;
277
- overflowY?: import("csstype").Property.OverflowY | undefined;
278
- overlay?: import("csstype").Property.Overlay | undefined;
279
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
280
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
281
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
282
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
283
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
284
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
285
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
286
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
287
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
288
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
289
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
290
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
291
- page?: import("csstype").Property.Page | undefined;
292
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
293
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
294
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
295
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
296
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
297
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
298
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
299
- position?: import("csstype").Property.Position | undefined;
300
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
301
- quotes?: import("csstype").Property.Quotes | undefined;
302
- resize?: import("csstype").Property.Resize | undefined;
303
- right?: import("csstype").Property.Right<string | number> | undefined;
304
- rotate?: import("csstype").Property.Rotate | undefined;
305
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
306
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
307
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
308
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
309
- scale?: import("csstype").Property.Scale | undefined;
310
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
311
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
312
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
313
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
314
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
315
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
316
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
317
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
318
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
319
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
320
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
321
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
322
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
323
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
324
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
325
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
326
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
327
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
328
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
329
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
330
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
331
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
332
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
333
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
334
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
335
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
336
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
337
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
338
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
339
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
340
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
341
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
342
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
343
- tableLayout?: import("csstype").Property.TableLayout | undefined;
344
- textAlign?: import("csstype").Property.TextAlign | undefined;
345
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
346
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
347
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
348
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
349
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
350
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
351
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
352
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
353
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
354
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
355
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
356
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
357
- textJustify?: import("csstype").Property.TextJustify | undefined;
358
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
359
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
360
- textRendering?: import("csstype").Property.TextRendering | undefined;
361
- textShadow?: import("csstype").Property.TextShadow | undefined;
362
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
363
- textTransform?: import("csstype").Property.TextTransform | undefined;
364
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
365
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
366
- textWrap?: import("csstype").Property.TextWrap | undefined;
367
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
368
- top?: import("csstype").Property.Top<string | number> | undefined;
369
- touchAction?: import("csstype").Property.TouchAction | undefined;
370
- transform?: import("csstype").Property.Transform | undefined;
371
- transformBox?: import("csstype").Property.TransformBox | undefined;
372
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
373
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
374
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
375
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
376
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
377
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
378
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
379
- translate?: import("csstype").Property.Translate<string | number> | undefined;
380
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
381
- userSelect?: import("csstype").Property.UserSelect | undefined;
382
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
383
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
384
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
385
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
386
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
387
- visibility?: import("csstype").Property.Visibility | undefined;
388
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
389
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
390
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
391
- widows?: import("csstype").Property.Widows | undefined;
392
- width?: import("csstype").Property.Width<string | number> | undefined;
393
- willChange?: import("csstype").Property.WillChange | undefined;
394
- wordBreak?: import("csstype").Property.WordBreak | undefined;
395
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
396
- wordWrap?: import("csstype").Property.WordWrap | undefined;
397
- writingMode?: import("csstype").Property.WritingMode | undefined;
398
- zIndex?: import("csstype").Property.ZIndex | undefined;
399
- zoom?: import("csstype").Property.Zoom | undefined;
400
- all?: import("csstype").Property.All | undefined;
401
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
402
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
403
- background?: import("csstype").Property.Background<string | number> | undefined;
404
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
405
- border?: import("csstype").Property.Border<string | number> | undefined;
406
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
407
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
408
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
409
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
410
- borderColor?: import("csstype").Property.BorderColor | undefined;
411
- borderImage?: import("csstype").Property.BorderImage | undefined;
412
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
413
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
414
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
415
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
416
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
417
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
418
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
419
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
420
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
421
- caret?: import("csstype").Property.Caret | undefined;
422
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
423
- columns?: import("csstype").Property.Columns<string | number> | undefined;
424
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
425
- container?: import("csstype").Property.Container | undefined;
426
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
427
- font?: import("csstype").Property.Font | undefined;
428
- gap?: import("csstype").Property.Gap<string | number> | undefined;
429
- grid?: import("csstype").Property.Grid | undefined;
430
- gridArea?: import("csstype").Property.GridArea | undefined;
431
- gridColumn?: import("csstype").Property.GridColumn | undefined;
432
- gridRow?: import("csstype").Property.GridRow | undefined;
433
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
434
- inset?: import("csstype").Property.Inset<string | number> | undefined;
435
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
436
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
437
- lineClamp?: import("csstype").Property.LineClamp | undefined;
438
- listStyle?: import("csstype").Property.ListStyle | undefined;
439
- margin?: import("csstype").Property.Margin<string | number> | undefined;
440
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
441
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
442
- mask?: import("csstype").Property.Mask<string | number> | undefined;
443
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
444
- motion?: import("csstype").Property.Offset<string | number> | undefined;
445
- offset?: import("csstype").Property.Offset<string | number> | undefined;
446
- outline?: import("csstype").Property.Outline<string | number> | undefined;
447
- overflow?: import("csstype").Property.Overflow | undefined;
448
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
449
- padding?: import("csstype").Property.Padding<string | number> | undefined;
450
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
451
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
452
- placeContent?: import("csstype").Property.PlaceContent | undefined;
453
- placeItems?: import("csstype").Property.PlaceItems | undefined;
454
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
455
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
456
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
457
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
458
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
459
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
460
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
461
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
462
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
463
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
464
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
465
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
466
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
467
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
468
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
469
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
470
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
471
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
472
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
473
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
474
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
475
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
476
- MozBinding?: import("csstype").Property.MozBinding | undefined;
477
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
478
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
479
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
480
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
481
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
482
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
483
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
484
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
485
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
486
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
487
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
488
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
489
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
490
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
491
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
492
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
493
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
494
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
495
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
496
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
497
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
498
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
499
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
500
- MozOrient?: import("csstype").Property.MozOrient | undefined;
501
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
502
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
503
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
504
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
505
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
506
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
507
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
508
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
509
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
510
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
511
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
512
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
513
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
514
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
515
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
516
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
517
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
518
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
519
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
520
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
521
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
522
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
523
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
524
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
525
- msFilter?: import("csstype").Property.MsFilter | undefined;
526
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
527
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
528
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
529
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
530
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
531
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
532
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
533
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
534
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
535
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
536
- msHyphens?: import("csstype").Property.Hyphens | undefined;
537
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
538
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
539
- msOrder?: import("csstype").Property.Order | undefined;
540
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
541
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
542
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
543
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
544
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
545
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
546
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
547
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
548
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
549
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
550
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
551
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
552
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
553
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
554
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
555
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
556
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
557
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
558
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
559
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
560
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
561
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
562
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
563
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
564
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
565
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
566
- msTransform?: import("csstype").Property.Transform | undefined;
567
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
568
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
569
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
570
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
571
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
572
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
573
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
574
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
575
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
576
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
577
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
578
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
579
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
580
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
581
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
582
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
583
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
584
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
585
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
586
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
587
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
588
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
589
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
590
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
591
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
592
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
593
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
594
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
595
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
596
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
597
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
598
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
599
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
600
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
601
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
602
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
603
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
604
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
605
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
606
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
607
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
608
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
609
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
610
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
611
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
612
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
613
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
614
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
615
- WebkitFilter?: import("csstype").Property.Filter | undefined;
616
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
617
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
618
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
619
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
620
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
621
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
622
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
623
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
624
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
625
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
626
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
627
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
628
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
629
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
630
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
631
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
632
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
633
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
634
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
635
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
636
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
637
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
638
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
639
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
640
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
641
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
642
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
643
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
644
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
645
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
646
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
647
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
648
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
649
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
650
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
651
- WebkitOrder?: import("csstype").Property.Order | undefined;
652
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
653
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
654
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
655
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
656
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
657
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
658
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
659
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
660
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
661
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
662
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
663
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
664
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
665
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
666
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
667
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
668
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
669
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
670
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
671
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
672
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
673
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
674
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
675
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
676
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
677
- WebkitTransform?: import("csstype").Property.Transform | undefined;
678
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
679
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
680
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
681
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
682
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
683
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
684
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
685
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
686
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
687
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
688
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
689
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
690
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
691
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
692
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
693
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
694
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
695
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
696
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
697
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
698
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
699
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
700
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
701
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
702
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
703
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
704
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
705
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
706
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
707
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
708
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
709
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
710
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
711
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
712
- azimuth?: import("csstype").Property.Azimuth | undefined;
713
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
714
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
715
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
716
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
717
- boxLines?: import("csstype").Property.BoxLines | undefined;
718
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
719
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
720
- boxPack?: import("csstype").Property.BoxPack | undefined;
721
- clip?: import("csstype").Property.Clip | undefined;
722
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
723
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
724
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
725
- imeMode?: import("csstype").Property.ImeMode | undefined;
726
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
727
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
728
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
729
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
730
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
731
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
732
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
733
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
734
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
735
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
736
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
737
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
738
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
739
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
740
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
741
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
742
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
743
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
744
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
745
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
746
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
747
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
748
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
749
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
750
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
751
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
752
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
753
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
754
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
755
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
756
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
757
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
758
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
759
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
760
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
761
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
762
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
763
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
764
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
765
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
766
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
767
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
768
- MozOpacity?: import("csstype").Property.Opacity | undefined;
769
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
770
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
771
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
772
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
773
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
774
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
775
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
776
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
777
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
778
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
779
- MozTransform?: import("csstype").Property.Transform | undefined;
780
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
781
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
782
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
783
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
784
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
785
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
786
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
787
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
788
- msImeMode?: import("csstype").Property.ImeMode | undefined;
789
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
790
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
791
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
792
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
793
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
794
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
795
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
796
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
797
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
798
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
799
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
800
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
801
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
802
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
803
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
804
- OTransform?: import("csstype").Property.Transform | undefined;
805
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
806
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
807
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
808
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
809
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
810
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
811
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
812
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
813
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
814
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
815
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
816
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
817
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
818
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
819
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
820
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
821
- clipRule?: import("csstype").Property.ClipRule | undefined;
822
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
823
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
824
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
825
- fill?: import("csstype").Property.Fill | undefined;
826
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
827
- fillRule?: import("csstype").Property.FillRule | undefined;
828
- floodColor?: import("csstype").Property.FloodColor | undefined;
829
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
830
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
831
- lightingColor?: import("csstype").Property.LightingColor | undefined;
832
- marker?: import("csstype").Property.Marker | undefined;
833
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
834
- markerMid?: import("csstype").Property.MarkerMid | undefined;
835
- markerStart?: import("csstype").Property.MarkerStart | undefined;
836
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
837
- stopColor?: import("csstype").Property.StopColor | undefined;
838
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
839
- stroke?: import("csstype").Property.Stroke | undefined;
840
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
841
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
842
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
843
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
844
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
845
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
846
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
847
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
848
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
849
- };
31
+ [key: string]: any;
850
32
  };
851
33
  export type ElbeBoxProps = {
852
34
  mode?: ElbeColorModes;
@@ -858,3339 +40,15 @@ export declare class Box extends Component<ElbeBoxProps & {
858
40
  scheme: ElbeColorSchemes;
859
41
  }> {
860
42
  static primary: (p: ElbeBoxProps) => import("react").DetailedReactHTMLElement<{
861
- "aria-label": string | undefined;
862
- "data-type": string | undefined;
863
- "data-tooltip"?: string | undefined;
864
- id: string | undefined;
865
- className: string;
866
- style: {
867
- flex?: string | number | undefined;
868
- accentColor?: import("csstype").Property.AccentColor | undefined;
869
- alignContent?: import("csstype").Property.AlignContent | undefined;
870
- alignItems?: import("csstype").Property.AlignItems | undefined;
871
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
872
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
873
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
874
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
875
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
876
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
877
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
878
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
879
- animationName?: import("csstype").Property.AnimationName | undefined;
880
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
881
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
882
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
883
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
884
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
885
- appearance?: import("csstype").Property.Appearance | undefined;
886
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
887
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
888
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
889
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
890
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
891
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
892
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
893
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
894
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
895
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
896
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
897
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
898
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
899
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
900
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
901
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
902
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
903
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
904
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
905
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
906
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
907
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
908
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
909
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
910
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
911
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
912
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
913
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
914
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
915
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
916
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
917
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
918
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
919
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
920
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
921
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
922
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
923
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
924
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
925
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
926
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
927
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
928
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
929
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
930
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
931
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
932
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
933
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
934
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
935
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
936
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
937
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
938
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
939
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
940
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
941
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
942
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
943
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
944
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
945
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
946
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
947
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
948
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
949
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
950
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
951
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
952
- breakInside?: import("csstype").Property.BreakInside | undefined;
953
- captionSide?: import("csstype").Property.CaptionSide | undefined;
954
- caretColor?: import("csstype").Property.CaretColor | undefined;
955
- caretShape?: import("csstype").Property.CaretShape | undefined;
956
- clear?: import("csstype").Property.Clear | undefined;
957
- clipPath?: import("csstype").Property.ClipPath | undefined;
958
- color?: import("csstype").Property.Color | undefined;
959
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
960
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
961
- columnCount?: import("csstype").Property.ColumnCount | undefined;
962
- columnFill?: import("csstype").Property.ColumnFill | undefined;
963
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
964
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
965
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
966
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
967
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
968
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
969
- contain?: import("csstype").Property.Contain | undefined;
970
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
971
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
972
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
973
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
974
- containerName?: import("csstype").Property.ContainerName | undefined;
975
- containerType?: import("csstype").Property.ContainerType | undefined;
976
- content?: import("csstype").Property.Content | undefined;
977
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
978
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
979
- counterReset?: import("csstype").Property.CounterReset | undefined;
980
- counterSet?: import("csstype").Property.CounterSet | undefined;
981
- cursor?: import("csstype").Property.Cursor | undefined;
982
- direction?: import("csstype").Property.Direction | undefined;
983
- display?: import("csstype").Property.Display | undefined;
984
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
985
- filter?: import("csstype").Property.Filter | undefined;
986
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
987
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
988
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
989
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
990
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
991
- float?: import("csstype").Property.Float | undefined;
992
- fontFamily?: import("csstype").Property.FontFamily | undefined;
993
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
994
- fontKerning?: import("csstype").Property.FontKerning | undefined;
995
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
996
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
997
- fontPalette?: import("csstype").Property.FontPalette | undefined;
998
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
999
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1000
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1001
- fontStretch?: import("csstype").Property.FontStretch | undefined;
1002
- fontStyle?: import("csstype").Property.FontStyle | undefined;
1003
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1004
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1005
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1006
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1007
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1008
- fontVariant?: import("csstype").Property.FontVariant | undefined;
1009
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1010
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1011
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1012
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1013
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1014
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1015
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1016
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1017
- fontWeight?: import("csstype").Property.FontWeight | undefined;
1018
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1019
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1020
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1021
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1022
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1023
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1024
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1025
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1026
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1027
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1028
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1029
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1030
- height?: import("csstype").Property.Height<string | number> | undefined;
1031
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1032
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1033
- hyphens?: import("csstype").Property.Hyphens | undefined;
1034
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1035
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
1036
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
1037
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
1038
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1039
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1040
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1041
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1042
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1043
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1044
- isolation?: import("csstype").Property.Isolation | undefined;
1045
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
1046
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
1047
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
1048
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1049
- left?: import("csstype").Property.Left<string | number> | undefined;
1050
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1051
- lineBreak?: import("csstype").Property.LineBreak | undefined;
1052
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1053
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1054
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1055
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1056
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
1057
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1058
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1059
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1060
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1061
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1062
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1063
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1064
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1065
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
1066
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1067
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1068
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1069
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1070
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1071
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1072
- maskClip?: import("csstype").Property.MaskClip | undefined;
1073
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
1074
- maskImage?: import("csstype").Property.MaskImage | undefined;
1075
- maskMode?: import("csstype").Property.MaskMode | undefined;
1076
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1077
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1078
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1079
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1080
- maskType?: import("csstype").Property.MaskType | undefined;
1081
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1082
- mathDepth?: import("csstype").Property.MathDepth | undefined;
1083
- mathShift?: import("csstype").Property.MathShift | undefined;
1084
- mathStyle?: import("csstype").Property.MathStyle | undefined;
1085
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1086
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1087
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1088
- maxLines?: import("csstype").Property.MaxLines | undefined;
1089
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1090
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1091
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1092
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1093
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1094
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1095
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1096
- motionPath?: import("csstype").Property.OffsetPath | undefined;
1097
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1098
- objectFit?: import("csstype").Property.ObjectFit | undefined;
1099
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1100
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1101
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1102
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
1103
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1104
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1105
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1106
- opacity?: import("csstype").Property.Opacity | undefined;
1107
- order?: import("csstype").Property.Order | undefined;
1108
- orphans?: import("csstype").Property.Orphans | undefined;
1109
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
1110
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1111
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1112
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1113
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1114
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1115
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1116
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1117
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
1118
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1119
- overflowX?: import("csstype").Property.OverflowX | undefined;
1120
- overflowY?: import("csstype").Property.OverflowY | undefined;
1121
- overlay?: import("csstype").Property.Overlay | undefined;
1122
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1123
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1124
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1125
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1126
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1127
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1128
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1129
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1130
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1131
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1132
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1133
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1134
- page?: import("csstype").Property.Page | undefined;
1135
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1136
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1137
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1138
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
1139
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1140
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1141
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1142
- position?: import("csstype").Property.Position | undefined;
1143
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1144
- quotes?: import("csstype").Property.Quotes | undefined;
1145
- resize?: import("csstype").Property.Resize | undefined;
1146
- right?: import("csstype").Property.Right<string | number> | undefined;
1147
- rotate?: import("csstype").Property.Rotate | undefined;
1148
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1149
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1150
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1151
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1152
- scale?: import("csstype").Property.Scale | undefined;
1153
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1154
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1155
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1156
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1157
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1158
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1159
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1160
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1161
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1162
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1163
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1164
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1165
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1166
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1167
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1168
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1169
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1170
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1171
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1172
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1173
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1174
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1175
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1176
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1177
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1178
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1179
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1180
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1181
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1182
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1183
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1184
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1185
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1186
- tableLayout?: import("csstype").Property.TableLayout | undefined;
1187
- textAlign?: import("csstype").Property.TextAlign | undefined;
1188
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1189
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1190
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1191
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1192
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1193
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1194
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1195
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1196
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1197
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1198
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1199
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1200
- textJustify?: import("csstype").Property.TextJustify | undefined;
1201
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
1202
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
1203
- textRendering?: import("csstype").Property.TextRendering | undefined;
1204
- textShadow?: import("csstype").Property.TextShadow | undefined;
1205
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1206
- textTransform?: import("csstype").Property.TextTransform | undefined;
1207
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1208
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1209
- textWrap?: import("csstype").Property.TextWrap | undefined;
1210
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
1211
- top?: import("csstype").Property.Top<string | number> | undefined;
1212
- touchAction?: import("csstype").Property.TouchAction | undefined;
1213
- transform?: import("csstype").Property.Transform | undefined;
1214
- transformBox?: import("csstype").Property.TransformBox | undefined;
1215
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1216
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
1217
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
1218
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1219
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1220
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1221
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1222
- translate?: import("csstype").Property.Translate<string | number> | undefined;
1223
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1224
- userSelect?: import("csstype").Property.UserSelect | undefined;
1225
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1226
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
1227
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
1228
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
1229
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1230
- visibility?: import("csstype").Property.Visibility | undefined;
1231
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1232
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1233
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
1234
- widows?: import("csstype").Property.Widows | undefined;
1235
- width?: import("csstype").Property.Width<string | number> | undefined;
1236
- willChange?: import("csstype").Property.WillChange | undefined;
1237
- wordBreak?: import("csstype").Property.WordBreak | undefined;
1238
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1239
- wordWrap?: import("csstype").Property.WordWrap | undefined;
1240
- writingMode?: import("csstype").Property.WritingMode | undefined;
1241
- zIndex?: import("csstype").Property.ZIndex | undefined;
1242
- zoom?: import("csstype").Property.Zoom | undefined;
1243
- all?: import("csstype").Property.All | undefined;
1244
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
1245
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
1246
- background?: import("csstype").Property.Background<string | number> | undefined;
1247
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1248
- border?: import("csstype").Property.Border<string | number> | undefined;
1249
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
1250
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1251
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1252
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
1253
- borderColor?: import("csstype").Property.BorderColor | undefined;
1254
- borderImage?: import("csstype").Property.BorderImage | undefined;
1255
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
1256
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1257
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1258
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
1259
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1260
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
1261
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
1262
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
1263
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
1264
- caret?: import("csstype").Property.Caret | undefined;
1265
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1266
- columns?: import("csstype").Property.Columns<string | number> | undefined;
1267
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1268
- container?: import("csstype").Property.Container | undefined;
1269
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
1270
- font?: import("csstype").Property.Font | undefined;
1271
- gap?: import("csstype").Property.Gap<string | number> | undefined;
1272
- grid?: import("csstype").Property.Grid | undefined;
1273
- gridArea?: import("csstype").Property.GridArea | undefined;
1274
- gridColumn?: import("csstype").Property.GridColumn | undefined;
1275
- gridRow?: import("csstype").Property.GridRow | undefined;
1276
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1277
- inset?: import("csstype").Property.Inset<string | number> | undefined;
1278
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1279
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1280
- lineClamp?: import("csstype").Property.LineClamp | undefined;
1281
- listStyle?: import("csstype").Property.ListStyle | undefined;
1282
- margin?: import("csstype").Property.Margin<string | number> | undefined;
1283
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1284
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1285
- mask?: import("csstype").Property.Mask<string | number> | undefined;
1286
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
1287
- motion?: import("csstype").Property.Offset<string | number> | undefined;
1288
- offset?: import("csstype").Property.Offset<string | number> | undefined;
1289
- outline?: import("csstype").Property.Outline<string | number> | undefined;
1290
- overflow?: import("csstype").Property.Overflow | undefined;
1291
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1292
- padding?: import("csstype").Property.Padding<string | number> | undefined;
1293
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1294
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1295
- placeContent?: import("csstype").Property.PlaceContent | undefined;
1296
- placeItems?: import("csstype").Property.PlaceItems | undefined;
1297
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1298
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1299
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1300
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1301
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1302
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1303
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1304
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1305
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1306
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
1307
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1308
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
1309
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
1310
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1311
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1312
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1313
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1314
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1315
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1316
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1317
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1318
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1319
- MozBinding?: import("csstype").Property.MozBinding | undefined;
1320
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1321
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1322
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1323
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1324
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1325
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1326
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1327
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1328
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1329
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1330
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1331
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1332
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1333
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1334
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1335
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1336
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1337
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1338
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1339
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
1340
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1341
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1342
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1343
- MozOrient?: import("csstype").Property.MozOrient | undefined;
1344
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1345
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1346
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1347
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1348
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1349
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1350
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1351
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1352
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1353
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1354
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1355
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1356
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1357
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1358
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1359
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1360
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1361
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1362
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1363
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1364
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1365
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1366
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1367
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1368
- msFilter?: import("csstype").Property.MsFilter | undefined;
1369
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1370
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1371
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1372
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1373
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1374
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
1375
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1376
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1377
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1378
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1379
- msHyphens?: import("csstype").Property.Hyphens | undefined;
1380
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1381
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
1382
- msOrder?: import("csstype").Property.Order | undefined;
1383
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1384
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
1385
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
1386
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1387
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1388
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1389
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1390
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1391
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1392
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1393
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1394
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1395
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1396
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1397
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1398
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1399
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1400
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1401
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1402
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1403
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1404
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1405
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1406
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1407
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
1408
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1409
- msTransform?: import("csstype").Property.Transform | undefined;
1410
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1411
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1412
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1413
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1414
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1415
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1416
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
1417
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1418
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1419
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1420
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
1421
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1422
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1423
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1424
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1425
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1426
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1427
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1428
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1429
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1430
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1431
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1432
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1433
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1434
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1435
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1436
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1437
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1438
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1439
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1440
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1441
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1442
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1443
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1444
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1445
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1446
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1447
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1448
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1449
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1450
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1451
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1452
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1453
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1454
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1455
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1456
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1457
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1458
- WebkitFilter?: import("csstype").Property.Filter | undefined;
1459
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1460
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1461
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1462
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1463
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1464
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1465
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1466
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1467
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1468
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1469
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1470
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1471
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1472
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1473
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1474
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1475
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1476
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1477
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1478
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1479
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1480
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1481
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1482
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1483
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1484
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1485
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1486
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1487
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1488
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1489
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1490
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1491
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1492
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1493
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1494
- WebkitOrder?: import("csstype").Property.Order | undefined;
1495
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1496
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1497
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1498
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1499
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1500
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1501
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1502
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1503
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1504
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1505
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1506
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1507
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1508
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1509
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1510
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1511
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1512
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1513
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1514
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1515
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1516
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1517
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1518
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1519
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1520
- WebkitTransform?: import("csstype").Property.Transform | undefined;
1521
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1522
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1523
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1524
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1525
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1526
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1527
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1528
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1529
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1530
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1531
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1532
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1533
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1534
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1535
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1536
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1537
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1538
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1539
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1540
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1541
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1542
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1543
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1544
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1545
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1546
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1547
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1548
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1549
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1550
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1551
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1552
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1553
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1554
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1555
- azimuth?: import("csstype").Property.Azimuth | undefined;
1556
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
1557
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
1558
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
1559
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1560
- boxLines?: import("csstype").Property.BoxLines | undefined;
1561
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1562
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
1563
- boxPack?: import("csstype").Property.BoxPack | undefined;
1564
- clip?: import("csstype").Property.Clip | undefined;
1565
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1566
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1567
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1568
- imeMode?: import("csstype").Property.ImeMode | undefined;
1569
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1570
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1571
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1572
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1573
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1574
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1575
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1576
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1577
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1578
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1579
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1580
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1581
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1582
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1583
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1584
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1585
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1586
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1587
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1588
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1589
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1590
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1591
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1592
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1593
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1594
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1595
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1596
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1597
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1598
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1599
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1600
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1601
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1602
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1603
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1604
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1605
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1606
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1607
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1608
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1609
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1610
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1611
- MozOpacity?: import("csstype").Property.Opacity | undefined;
1612
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1613
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1614
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1615
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1616
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1617
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1618
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1619
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1620
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1621
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1622
- MozTransform?: import("csstype").Property.Transform | undefined;
1623
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1624
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1625
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1626
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1627
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1628
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1629
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1630
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1631
- msImeMode?: import("csstype").Property.ImeMode | undefined;
1632
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1633
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1634
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1635
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1636
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1637
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1638
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
1639
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1640
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1641
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1642
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
1643
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1644
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1645
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1646
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1647
- OTransform?: import("csstype").Property.Transform | undefined;
1648
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1649
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1650
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1651
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1652
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1653
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1654
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1655
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1656
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1657
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1658
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1659
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1660
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1661
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1662
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1663
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1664
- clipRule?: import("csstype").Property.ClipRule | undefined;
1665
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1666
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
1667
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1668
- fill?: import("csstype").Property.Fill | undefined;
1669
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1670
- fillRule?: import("csstype").Property.FillRule | undefined;
1671
- floodColor?: import("csstype").Property.FloodColor | undefined;
1672
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1673
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1674
- lightingColor?: import("csstype").Property.LightingColor | undefined;
1675
- marker?: import("csstype").Property.Marker | undefined;
1676
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1677
- markerMid?: import("csstype").Property.MarkerMid | undefined;
1678
- markerStart?: import("csstype").Property.MarkerStart | undefined;
1679
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1680
- stopColor?: import("csstype").Property.StopColor | undefined;
1681
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1682
- stroke?: import("csstype").Property.Stroke | undefined;
1683
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1684
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1685
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1686
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1687
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1688
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1689
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1690
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
1691
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1692
- };
43
+ [key: string]: any;
1693
44
  }, HTMLElement>;
1694
45
  static secondary: (p: ElbeBoxProps) => import("react").DetailedReactHTMLElement<{
1695
- "aria-label": string | undefined;
1696
- "data-type": string | undefined;
1697
- "data-tooltip"?: string | undefined;
1698
- id: string | undefined;
1699
- className: string;
1700
- style: {
1701
- flex?: string | number | undefined;
1702
- accentColor?: import("csstype").Property.AccentColor | undefined;
1703
- alignContent?: import("csstype").Property.AlignContent | undefined;
1704
- alignItems?: import("csstype").Property.AlignItems | undefined;
1705
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
1706
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
1707
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1708
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1709
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1710
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1711
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1712
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1713
- animationName?: import("csstype").Property.AnimationName | undefined;
1714
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1715
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
1716
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
1717
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1718
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1719
- appearance?: import("csstype").Property.Appearance | undefined;
1720
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1721
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1722
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1723
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1724
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1725
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1726
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1727
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1728
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1729
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1730
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1731
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1732
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1733
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1734
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
1735
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1736
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1737
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1738
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1739
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1740
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1741
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1742
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1743
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1744
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1745
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1746
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1747
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1748
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1749
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1750
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1751
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1752
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1753
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1754
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1755
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1756
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1757
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1758
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1759
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1760
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1761
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1762
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1763
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1764
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1765
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1766
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1767
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1768
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1769
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1770
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1771
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1772
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1773
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1774
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1775
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1776
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1777
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1778
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1779
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1780
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
1781
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1782
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
1783
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
1784
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
1785
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
1786
- breakInside?: import("csstype").Property.BreakInside | undefined;
1787
- captionSide?: import("csstype").Property.CaptionSide | undefined;
1788
- caretColor?: import("csstype").Property.CaretColor | undefined;
1789
- caretShape?: import("csstype").Property.CaretShape | undefined;
1790
- clear?: import("csstype").Property.Clear | undefined;
1791
- clipPath?: import("csstype").Property.ClipPath | undefined;
1792
- color?: import("csstype").Property.Color | undefined;
1793
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1794
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
1795
- columnCount?: import("csstype").Property.ColumnCount | undefined;
1796
- columnFill?: import("csstype").Property.ColumnFill | undefined;
1797
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1798
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1799
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1800
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1801
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1802
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1803
- contain?: import("csstype").Property.Contain | undefined;
1804
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1805
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1806
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1807
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1808
- containerName?: import("csstype").Property.ContainerName | undefined;
1809
- containerType?: import("csstype").Property.ContainerType | undefined;
1810
- content?: import("csstype").Property.Content | undefined;
1811
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1812
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1813
- counterReset?: import("csstype").Property.CounterReset | undefined;
1814
- counterSet?: import("csstype").Property.CounterSet | undefined;
1815
- cursor?: import("csstype").Property.Cursor | undefined;
1816
- direction?: import("csstype").Property.Direction | undefined;
1817
- display?: import("csstype").Property.Display | undefined;
1818
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
1819
- filter?: import("csstype").Property.Filter | undefined;
1820
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1821
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
1822
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
1823
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
1824
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
1825
- float?: import("csstype").Property.Float | undefined;
1826
- fontFamily?: import("csstype").Property.FontFamily | undefined;
1827
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1828
- fontKerning?: import("csstype").Property.FontKerning | undefined;
1829
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1830
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1831
- fontPalette?: import("csstype").Property.FontPalette | undefined;
1832
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1833
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1834
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1835
- fontStretch?: import("csstype").Property.FontStretch | undefined;
1836
- fontStyle?: import("csstype").Property.FontStyle | undefined;
1837
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1838
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1839
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1840
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1841
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1842
- fontVariant?: import("csstype").Property.FontVariant | undefined;
1843
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1844
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1845
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1846
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1847
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1848
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1849
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1850
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1851
- fontWeight?: import("csstype").Property.FontWeight | undefined;
1852
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1853
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1854
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1855
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1856
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1857
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1858
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1859
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1860
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1861
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1862
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1863
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1864
- height?: import("csstype").Property.Height<string | number> | undefined;
1865
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1866
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1867
- hyphens?: import("csstype").Property.Hyphens | undefined;
1868
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1869
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
1870
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
1871
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
1872
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1873
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1874
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1875
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1876
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1877
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1878
- isolation?: import("csstype").Property.Isolation | undefined;
1879
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
1880
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
1881
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
1882
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1883
- left?: import("csstype").Property.Left<string | number> | undefined;
1884
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1885
- lineBreak?: import("csstype").Property.LineBreak | undefined;
1886
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1887
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1888
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1889
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1890
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
1891
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1892
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1893
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1894
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1895
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1896
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1897
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1898
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1899
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
1900
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1901
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1902
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1903
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1904
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1905
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1906
- maskClip?: import("csstype").Property.MaskClip | undefined;
1907
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
1908
- maskImage?: import("csstype").Property.MaskImage | undefined;
1909
- maskMode?: import("csstype").Property.MaskMode | undefined;
1910
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1911
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1912
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1913
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1914
- maskType?: import("csstype").Property.MaskType | undefined;
1915
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1916
- mathDepth?: import("csstype").Property.MathDepth | undefined;
1917
- mathShift?: import("csstype").Property.MathShift | undefined;
1918
- mathStyle?: import("csstype").Property.MathStyle | undefined;
1919
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1920
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1921
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1922
- maxLines?: import("csstype").Property.MaxLines | undefined;
1923
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1924
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1925
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1926
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1927
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1928
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1929
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1930
- motionPath?: import("csstype").Property.OffsetPath | undefined;
1931
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1932
- objectFit?: import("csstype").Property.ObjectFit | undefined;
1933
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1934
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1935
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1936
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
1937
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1938
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1939
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1940
- opacity?: import("csstype").Property.Opacity | undefined;
1941
- order?: import("csstype").Property.Order | undefined;
1942
- orphans?: import("csstype").Property.Orphans | undefined;
1943
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
1944
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1945
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1946
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1947
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1948
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1949
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1950
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1951
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
1952
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1953
- overflowX?: import("csstype").Property.OverflowX | undefined;
1954
- overflowY?: import("csstype").Property.OverflowY | undefined;
1955
- overlay?: import("csstype").Property.Overlay | undefined;
1956
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1957
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1958
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1959
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1960
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1961
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1962
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1963
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1964
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1965
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1966
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1967
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1968
- page?: import("csstype").Property.Page | undefined;
1969
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1970
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1971
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1972
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
1973
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1974
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1975
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1976
- position?: import("csstype").Property.Position | undefined;
1977
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1978
- quotes?: import("csstype").Property.Quotes | undefined;
1979
- resize?: import("csstype").Property.Resize | undefined;
1980
- right?: import("csstype").Property.Right<string | number> | undefined;
1981
- rotate?: import("csstype").Property.Rotate | undefined;
1982
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1983
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1984
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1985
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1986
- scale?: import("csstype").Property.Scale | undefined;
1987
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1988
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1989
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1990
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1991
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1992
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1993
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1994
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1995
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1996
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1997
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1998
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1999
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
2000
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
2001
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
2002
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
2003
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
2004
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
2005
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2006
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2007
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2008
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2009
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
2010
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2011
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
2012
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
2013
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
2014
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
2015
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
2016
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
2017
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2018
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
2019
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2020
- tableLayout?: import("csstype").Property.TableLayout | undefined;
2021
- textAlign?: import("csstype").Property.TextAlign | undefined;
2022
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2023
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
2024
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2025
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2026
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2027
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
2028
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2029
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2030
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2031
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2032
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2033
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2034
- textJustify?: import("csstype").Property.TextJustify | undefined;
2035
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
2036
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
2037
- textRendering?: import("csstype").Property.TextRendering | undefined;
2038
- textShadow?: import("csstype").Property.TextShadow | undefined;
2039
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2040
- textTransform?: import("csstype").Property.TextTransform | undefined;
2041
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2042
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2043
- textWrap?: import("csstype").Property.TextWrap | undefined;
2044
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
2045
- top?: import("csstype").Property.Top<string | number> | undefined;
2046
- touchAction?: import("csstype").Property.TouchAction | undefined;
2047
- transform?: import("csstype").Property.Transform | undefined;
2048
- transformBox?: import("csstype").Property.TransformBox | undefined;
2049
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2050
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
2051
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2052
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2053
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2054
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2055
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2056
- translate?: import("csstype").Property.Translate<string | number> | undefined;
2057
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2058
- userSelect?: import("csstype").Property.UserSelect | undefined;
2059
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2060
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2061
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2062
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2063
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2064
- visibility?: import("csstype").Property.Visibility | undefined;
2065
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2066
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2067
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
2068
- widows?: import("csstype").Property.Widows | undefined;
2069
- width?: import("csstype").Property.Width<string | number> | undefined;
2070
- willChange?: import("csstype").Property.WillChange | undefined;
2071
- wordBreak?: import("csstype").Property.WordBreak | undefined;
2072
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2073
- wordWrap?: import("csstype").Property.WordWrap | undefined;
2074
- writingMode?: import("csstype").Property.WritingMode | undefined;
2075
- zIndex?: import("csstype").Property.ZIndex | undefined;
2076
- zoom?: import("csstype").Property.Zoom | undefined;
2077
- all?: import("csstype").Property.All | undefined;
2078
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
2079
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
2080
- background?: import("csstype").Property.Background<string | number> | undefined;
2081
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2082
- border?: import("csstype").Property.Border<string | number> | undefined;
2083
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2084
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2085
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2086
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2087
- borderColor?: import("csstype").Property.BorderColor | undefined;
2088
- borderImage?: import("csstype").Property.BorderImage | undefined;
2089
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2090
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2091
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2092
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2093
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2094
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2095
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
2096
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2097
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2098
- caret?: import("csstype").Property.Caret | undefined;
2099
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2100
- columns?: import("csstype").Property.Columns<string | number> | undefined;
2101
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2102
- container?: import("csstype").Property.Container | undefined;
2103
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
2104
- font?: import("csstype").Property.Font | undefined;
2105
- gap?: import("csstype").Property.Gap<string | number> | undefined;
2106
- grid?: import("csstype").Property.Grid | undefined;
2107
- gridArea?: import("csstype").Property.GridArea | undefined;
2108
- gridColumn?: import("csstype").Property.GridColumn | undefined;
2109
- gridRow?: import("csstype").Property.GridRow | undefined;
2110
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2111
- inset?: import("csstype").Property.Inset<string | number> | undefined;
2112
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2113
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2114
- lineClamp?: import("csstype").Property.LineClamp | undefined;
2115
- listStyle?: import("csstype").Property.ListStyle | undefined;
2116
- margin?: import("csstype").Property.Margin<string | number> | undefined;
2117
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2118
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2119
- mask?: import("csstype").Property.Mask<string | number> | undefined;
2120
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
2121
- motion?: import("csstype").Property.Offset<string | number> | undefined;
2122
- offset?: import("csstype").Property.Offset<string | number> | undefined;
2123
- outline?: import("csstype").Property.Outline<string | number> | undefined;
2124
- overflow?: import("csstype").Property.Overflow | undefined;
2125
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2126
- padding?: import("csstype").Property.Padding<string | number> | undefined;
2127
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2128
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2129
- placeContent?: import("csstype").Property.PlaceContent | undefined;
2130
- placeItems?: import("csstype").Property.PlaceItems | undefined;
2131
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2132
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2133
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2134
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2135
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2136
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2137
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2138
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2139
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2140
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2141
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2142
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
2143
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2144
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2145
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2146
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2147
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2148
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2149
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2150
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2151
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2152
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2153
- MozBinding?: import("csstype").Property.MozBinding | undefined;
2154
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2155
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2156
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2157
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2158
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2159
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2160
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2161
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2162
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2163
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2164
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2165
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2166
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2167
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2168
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2169
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2170
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2171
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2172
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2173
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
2174
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2175
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2176
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2177
- MozOrient?: import("csstype").Property.MozOrient | undefined;
2178
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2179
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2180
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2181
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2182
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2183
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2184
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2185
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2186
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2187
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2188
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2189
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2190
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2191
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2192
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2193
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2194
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2195
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2196
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2197
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2198
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2199
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2200
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2201
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2202
- msFilter?: import("csstype").Property.MsFilter | undefined;
2203
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2204
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2205
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2206
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2207
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2208
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
2209
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2210
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2211
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2212
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2213
- msHyphens?: import("csstype").Property.Hyphens | undefined;
2214
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2215
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
2216
- msOrder?: import("csstype").Property.Order | undefined;
2217
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2218
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
2219
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
2220
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2221
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2222
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2223
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2224
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2225
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2226
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2227
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2228
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2229
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2230
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2231
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2232
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2233
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2234
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2235
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2236
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2237
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2238
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2239
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2240
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2241
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
2242
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2243
- msTransform?: import("csstype").Property.Transform | undefined;
2244
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2245
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2246
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2247
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2248
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2249
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2250
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
2251
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2252
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2253
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2254
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
2255
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2256
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2257
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2258
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2259
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2260
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2261
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2262
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2263
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2264
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2265
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2266
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2267
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2268
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2269
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2270
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2271
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2272
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2273
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2274
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2275
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2276
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2277
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2278
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2279
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2280
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2281
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2282
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2283
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2284
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2285
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2286
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2287
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2288
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2289
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2290
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2291
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2292
- WebkitFilter?: import("csstype").Property.Filter | undefined;
2293
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2294
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2295
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2296
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2297
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
2298
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2299
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
2300
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2301
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2302
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2303
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
2304
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
2305
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
2306
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
2307
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
2308
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2309
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2310
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
2311
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2312
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2313
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2314
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
2315
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2316
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
2317
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
2318
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
2319
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
2320
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
2321
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
2322
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
2323
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
2324
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2325
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2326
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
2327
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2328
- WebkitOrder?: import("csstype").Property.Order | undefined;
2329
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2330
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2331
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2332
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2333
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2334
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2335
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
2336
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2337
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2338
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2339
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
2340
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2341
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2342
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2343
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2344
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2345
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2346
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2347
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
2348
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
2349
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2350
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2351
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
2352
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2353
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
2354
- WebkitTransform?: import("csstype").Property.Transform | undefined;
2355
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2356
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2357
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2358
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2359
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2360
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2361
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
2362
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
2363
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
2364
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2365
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
2366
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2367
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
2368
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
2369
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
2370
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
2371
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
2372
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
2373
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
2374
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
2375
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2376
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2377
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
2378
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
2379
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2380
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2381
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
2382
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
2383
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
2384
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
2385
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
2386
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2387
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
2388
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2389
- azimuth?: import("csstype").Property.Azimuth | undefined;
2390
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
2391
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
2392
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
2393
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2394
- boxLines?: import("csstype").Property.BoxLines | undefined;
2395
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2396
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
2397
- boxPack?: import("csstype").Property.BoxPack | undefined;
2398
- clip?: import("csstype").Property.Clip | undefined;
2399
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
2400
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
2401
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
2402
- imeMode?: import("csstype").Property.ImeMode | undefined;
2403
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2404
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2405
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2406
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2407
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2408
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2409
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
2410
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
2411
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2412
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2413
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
2414
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
2415
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2416
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2417
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2418
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2419
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
2420
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2421
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2422
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
2423
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
2424
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
2425
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
2426
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2427
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2428
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
2429
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2430
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2431
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2432
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2433
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2434
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2435
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2436
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2437
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2438
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2439
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2440
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2441
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
2442
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2443
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
2444
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2445
- MozOpacity?: import("csstype").Property.Opacity | undefined;
2446
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
2447
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
2448
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2449
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2450
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2451
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2452
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2453
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2454
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2455
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2456
- MozTransform?: import("csstype").Property.Transform | undefined;
2457
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2458
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2459
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2460
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2461
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2462
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2463
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2464
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
2465
- msImeMode?: import("csstype").Property.ImeMode | undefined;
2466
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2467
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2468
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2469
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2470
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2471
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2472
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
2473
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2474
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2475
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2476
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
2477
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
2478
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2479
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2480
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2481
- OTransform?: import("csstype").Property.Transform | undefined;
2482
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2483
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2484
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2485
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2486
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2487
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2488
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2489
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2490
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2491
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2492
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
2493
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2494
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2495
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
2496
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
2497
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
2498
- clipRule?: import("csstype").Property.ClipRule | undefined;
2499
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
2500
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
2501
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
2502
- fill?: import("csstype").Property.Fill | undefined;
2503
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
2504
- fillRule?: import("csstype").Property.FillRule | undefined;
2505
- floodColor?: import("csstype").Property.FloodColor | undefined;
2506
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
2507
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
2508
- lightingColor?: import("csstype").Property.LightingColor | undefined;
2509
- marker?: import("csstype").Property.Marker | undefined;
2510
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
2511
- markerMid?: import("csstype").Property.MarkerMid | undefined;
2512
- markerStart?: import("csstype").Property.MarkerStart | undefined;
2513
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2514
- stopColor?: import("csstype").Property.StopColor | undefined;
2515
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2516
- stroke?: import("csstype").Property.Stroke | undefined;
2517
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2518
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2519
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2520
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2521
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2522
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2523
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2524
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
2525
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2526
- };
46
+ [key: string]: any;
2527
47
  }, HTMLElement>;
2528
48
  static inverse: (p: ElbeBoxProps) => import("react").DetailedReactHTMLElement<{
2529
- "aria-label": string | undefined;
2530
- "data-type": string | undefined;
2531
- "data-tooltip"?: string | undefined;
2532
- id: string | undefined;
2533
- className: string;
2534
- style: {
2535
- flex?: string | number | undefined;
2536
- accentColor?: import("csstype").Property.AccentColor | undefined;
2537
- alignContent?: import("csstype").Property.AlignContent | undefined;
2538
- alignItems?: import("csstype").Property.AlignItems | undefined;
2539
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
2540
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
2541
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
2542
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2543
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
2544
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2545
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2546
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2547
- animationName?: import("csstype").Property.AnimationName | undefined;
2548
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2549
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
2550
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
2551
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
2552
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2553
- appearance?: import("csstype").Property.Appearance | undefined;
2554
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
2555
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2556
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2557
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
2558
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
2559
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2560
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
2561
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
2562
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2563
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
2564
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
2565
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
2566
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2567
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
2568
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
2569
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
2570
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
2571
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
2572
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
2573
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
2574
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
2575
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
2576
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
2577
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2578
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
2579
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2580
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2581
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
2582
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
2583
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
2584
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
2585
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
2586
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
2587
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
2588
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2589
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
2590
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
2591
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
2592
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2593
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2594
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2595
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2596
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2597
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
2598
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
2599
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2600
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
2601
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
2602
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
2603
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
2604
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
2605
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
2606
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
2607
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
2608
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
2609
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
2610
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2611
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2612
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
2613
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
2614
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
2615
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2616
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
2617
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
2618
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
2619
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
2620
- breakInside?: import("csstype").Property.BreakInside | undefined;
2621
- captionSide?: import("csstype").Property.CaptionSide | undefined;
2622
- caretColor?: import("csstype").Property.CaretColor | undefined;
2623
- caretShape?: import("csstype").Property.CaretShape | undefined;
2624
- clear?: import("csstype").Property.Clear | undefined;
2625
- clipPath?: import("csstype").Property.ClipPath | undefined;
2626
- color?: import("csstype").Property.Color | undefined;
2627
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2628
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
2629
- columnCount?: import("csstype").Property.ColumnCount | undefined;
2630
- columnFill?: import("csstype").Property.ColumnFill | undefined;
2631
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
2632
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2633
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2634
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2635
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
2636
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2637
- contain?: import("csstype").Property.Contain | undefined;
2638
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
2639
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
2640
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
2641
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
2642
- containerName?: import("csstype").Property.ContainerName | undefined;
2643
- containerType?: import("csstype").Property.ContainerType | undefined;
2644
- content?: import("csstype").Property.Content | undefined;
2645
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
2646
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
2647
- counterReset?: import("csstype").Property.CounterReset | undefined;
2648
- counterSet?: import("csstype").Property.CounterSet | undefined;
2649
- cursor?: import("csstype").Property.Cursor | undefined;
2650
- direction?: import("csstype").Property.Direction | undefined;
2651
- display?: import("csstype").Property.Display | undefined;
2652
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
2653
- filter?: import("csstype").Property.Filter | undefined;
2654
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2655
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
2656
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
2657
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
2658
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
2659
- float?: import("csstype").Property.Float | undefined;
2660
- fontFamily?: import("csstype").Property.FontFamily | undefined;
2661
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2662
- fontKerning?: import("csstype").Property.FontKerning | undefined;
2663
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2664
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
2665
- fontPalette?: import("csstype").Property.FontPalette | undefined;
2666
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
2667
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
2668
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
2669
- fontStretch?: import("csstype").Property.FontStretch | undefined;
2670
- fontStyle?: import("csstype").Property.FontStyle | undefined;
2671
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
2672
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
2673
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
2674
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
2675
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
2676
- fontVariant?: import("csstype").Property.FontVariant | undefined;
2677
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
2678
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
2679
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
2680
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
2681
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2682
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
2683
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
2684
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
2685
- fontWeight?: import("csstype").Property.FontWeight | undefined;
2686
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
2687
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
2688
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
2689
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
2690
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
2691
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
2692
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
2693
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
2694
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
2695
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
2696
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
2697
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
2698
- height?: import("csstype").Property.Height<string | number> | undefined;
2699
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2700
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
2701
- hyphens?: import("csstype").Property.Hyphens | undefined;
2702
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
2703
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
2704
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
2705
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
2706
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
2707
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
2708
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2709
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2710
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2711
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2712
- isolation?: import("csstype").Property.Isolation | undefined;
2713
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
2714
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
2715
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
2716
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
2717
- left?: import("csstype").Property.Left<string | number> | undefined;
2718
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
2719
- lineBreak?: import("csstype").Property.LineBreak | undefined;
2720
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
2721
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
2722
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
2723
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
2724
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
2725
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
2726
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
2727
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
2728
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2729
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2730
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
2731
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
2732
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
2733
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
2734
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
2735
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2736
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2737
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2738
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
2739
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2740
- maskClip?: import("csstype").Property.MaskClip | undefined;
2741
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
2742
- maskImage?: import("csstype").Property.MaskImage | undefined;
2743
- maskMode?: import("csstype").Property.MaskMode | undefined;
2744
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
2745
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
2746
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
2747
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
2748
- maskType?: import("csstype").Property.MaskType | undefined;
2749
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
2750
- mathDepth?: import("csstype").Property.MathDepth | undefined;
2751
- mathShift?: import("csstype").Property.MathShift | undefined;
2752
- mathStyle?: import("csstype").Property.MathStyle | undefined;
2753
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
2754
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
2755
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2756
- maxLines?: import("csstype").Property.MaxLines | undefined;
2757
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
2758
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
2759
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
2760
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
2761
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
2762
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
2763
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2764
- motionPath?: import("csstype").Property.OffsetPath | undefined;
2765
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
2766
- objectFit?: import("csstype").Property.ObjectFit | undefined;
2767
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2768
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
2769
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2770
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
2771
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
2772
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
2773
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
2774
- opacity?: import("csstype").Property.Opacity | undefined;
2775
- order?: import("csstype").Property.Order | undefined;
2776
- orphans?: import("csstype").Property.Orphans | undefined;
2777
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
2778
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
2779
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2780
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2781
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
2782
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
2783
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
2784
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
2785
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
2786
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
2787
- overflowX?: import("csstype").Property.OverflowX | undefined;
2788
- overflowY?: import("csstype").Property.OverflowY | undefined;
2789
- overlay?: import("csstype").Property.Overlay | undefined;
2790
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
2791
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
2792
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
2793
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
2794
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
2795
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
2796
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
2797
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2798
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2799
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
2800
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
2801
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
2802
- page?: import("csstype").Property.Page | undefined;
2803
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
2804
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
2805
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
2806
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
2807
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
2808
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2809
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
2810
- position?: import("csstype").Property.Position | undefined;
2811
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2812
- quotes?: import("csstype").Property.Quotes | undefined;
2813
- resize?: import("csstype").Property.Resize | undefined;
2814
- right?: import("csstype").Property.Right<string | number> | undefined;
2815
- rotate?: import("csstype").Property.Rotate | undefined;
2816
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
2817
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
2818
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
2819
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
2820
- scale?: import("csstype").Property.Scale | undefined;
2821
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
2822
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
2823
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
2824
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2825
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
2826
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
2827
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2828
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2829
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2830
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
2831
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
2832
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
2833
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
2834
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
2835
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
2836
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
2837
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
2838
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
2839
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2840
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2841
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2842
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2843
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
2844
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2845
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
2846
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
2847
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
2848
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
2849
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
2850
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
2851
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2852
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
2853
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2854
- tableLayout?: import("csstype").Property.TableLayout | undefined;
2855
- textAlign?: import("csstype").Property.TextAlign | undefined;
2856
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2857
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
2858
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2859
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2860
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2861
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
2862
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2863
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2864
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2865
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2866
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2867
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2868
- textJustify?: import("csstype").Property.TextJustify | undefined;
2869
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
2870
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
2871
- textRendering?: import("csstype").Property.TextRendering | undefined;
2872
- textShadow?: import("csstype").Property.TextShadow | undefined;
2873
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2874
- textTransform?: import("csstype").Property.TextTransform | undefined;
2875
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2876
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2877
- textWrap?: import("csstype").Property.TextWrap | undefined;
2878
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
2879
- top?: import("csstype").Property.Top<string | number> | undefined;
2880
- touchAction?: import("csstype").Property.TouchAction | undefined;
2881
- transform?: import("csstype").Property.Transform | undefined;
2882
- transformBox?: import("csstype").Property.TransformBox | undefined;
2883
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2884
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
2885
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2886
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2887
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2888
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2889
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2890
- translate?: import("csstype").Property.Translate<string | number> | undefined;
2891
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2892
- userSelect?: import("csstype").Property.UserSelect | undefined;
2893
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2894
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2895
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2896
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2897
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2898
- visibility?: import("csstype").Property.Visibility | undefined;
2899
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2900
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2901
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
2902
- widows?: import("csstype").Property.Widows | undefined;
2903
- width?: import("csstype").Property.Width<string | number> | undefined;
2904
- willChange?: import("csstype").Property.WillChange | undefined;
2905
- wordBreak?: import("csstype").Property.WordBreak | undefined;
2906
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2907
- wordWrap?: import("csstype").Property.WordWrap | undefined;
2908
- writingMode?: import("csstype").Property.WritingMode | undefined;
2909
- zIndex?: import("csstype").Property.ZIndex | undefined;
2910
- zoom?: import("csstype").Property.Zoom | undefined;
2911
- all?: import("csstype").Property.All | undefined;
2912
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
2913
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
2914
- background?: import("csstype").Property.Background<string | number> | undefined;
2915
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2916
- border?: import("csstype").Property.Border<string | number> | undefined;
2917
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2918
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2919
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2920
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2921
- borderColor?: import("csstype").Property.BorderColor | undefined;
2922
- borderImage?: import("csstype").Property.BorderImage | undefined;
2923
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2924
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2925
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2926
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2927
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2928
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2929
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
2930
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2931
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2932
- caret?: import("csstype").Property.Caret | undefined;
2933
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2934
- columns?: import("csstype").Property.Columns<string | number> | undefined;
2935
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2936
- container?: import("csstype").Property.Container | undefined;
2937
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
2938
- font?: import("csstype").Property.Font | undefined;
2939
- gap?: import("csstype").Property.Gap<string | number> | undefined;
2940
- grid?: import("csstype").Property.Grid | undefined;
2941
- gridArea?: import("csstype").Property.GridArea | undefined;
2942
- gridColumn?: import("csstype").Property.GridColumn | undefined;
2943
- gridRow?: import("csstype").Property.GridRow | undefined;
2944
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2945
- inset?: import("csstype").Property.Inset<string | number> | undefined;
2946
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2947
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2948
- lineClamp?: import("csstype").Property.LineClamp | undefined;
2949
- listStyle?: import("csstype").Property.ListStyle | undefined;
2950
- margin?: import("csstype").Property.Margin<string | number> | undefined;
2951
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2952
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2953
- mask?: import("csstype").Property.Mask<string | number> | undefined;
2954
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
2955
- motion?: import("csstype").Property.Offset<string | number> | undefined;
2956
- offset?: import("csstype").Property.Offset<string | number> | undefined;
2957
- outline?: import("csstype").Property.Outline<string | number> | undefined;
2958
- overflow?: import("csstype").Property.Overflow | undefined;
2959
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2960
- padding?: import("csstype").Property.Padding<string | number> | undefined;
2961
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2962
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2963
- placeContent?: import("csstype").Property.PlaceContent | undefined;
2964
- placeItems?: import("csstype").Property.PlaceItems | undefined;
2965
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2966
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2967
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2968
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2969
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2970
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2971
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2972
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2973
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2974
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2975
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2976
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
2977
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2978
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2979
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2980
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2981
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2982
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2983
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2984
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2985
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2986
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2987
- MozBinding?: import("csstype").Property.MozBinding | undefined;
2988
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2989
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2990
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2991
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2992
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2993
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2994
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2995
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2996
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2997
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2998
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2999
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
3000
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
3001
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
3002
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3003
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3004
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
3005
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3006
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
3007
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
3008
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
3009
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3010
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3011
- MozOrient?: import("csstype").Property.MozOrient | undefined;
3012
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
3013
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
3014
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
3015
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
3016
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
3017
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3018
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3019
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
3020
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3021
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
3022
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3023
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
3024
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
3025
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
3026
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
3027
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
3028
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
3029
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
3030
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
3031
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
3032
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
3033
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
3034
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
3035
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
3036
- msFilter?: import("csstype").Property.MsFilter | undefined;
3037
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
3038
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
3039
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
3040
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
3041
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
3042
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
3043
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
3044
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
3045
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
3046
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
3047
- msHyphens?: import("csstype").Property.Hyphens | undefined;
3048
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
3049
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
3050
- msOrder?: import("csstype").Property.Order | undefined;
3051
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
3052
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
3053
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
3054
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
3055
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
3056
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
3057
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
3058
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
3059
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
3060
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
3061
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
3062
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
3063
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
3064
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
3065
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
3066
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
3067
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
3068
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
3069
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
3070
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
3071
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
3072
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
3073
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
3074
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
3075
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
3076
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
3077
- msTransform?: import("csstype").Property.Transform | undefined;
3078
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3079
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3080
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3081
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3082
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3083
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
3084
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
3085
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
3086
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
3087
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
3088
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
3089
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
3090
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
3091
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
3092
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3093
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3094
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3095
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3096
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3097
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
3098
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3099
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3100
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
3101
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
3102
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
3103
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3104
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3105
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3106
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
3107
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
3108
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
3109
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3110
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3111
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
3112
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3113
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3114
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
3115
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
3116
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
3117
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
3118
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
3119
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
3120
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
3121
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
3122
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
3123
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3124
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
3125
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3126
- WebkitFilter?: import("csstype").Property.Filter | undefined;
3127
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
3128
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
3129
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
3130
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
3131
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
3132
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3133
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
3134
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
3135
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
3136
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
3137
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
3138
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
3139
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
3140
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
3141
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
3142
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3143
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3144
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
3145
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3146
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
3147
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
3148
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
3149
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3150
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
3151
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
3152
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
3153
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
3154
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
3155
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
3156
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
3157
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
3158
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3159
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3160
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
3161
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3162
- WebkitOrder?: import("csstype").Property.Order | undefined;
3163
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3164
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3165
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3166
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
3167
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3168
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
3169
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
3170
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
3171
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3172
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
3173
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
3174
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3175
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3176
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
3177
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3178
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
3179
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
3180
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
3181
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
3182
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
3183
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3184
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
3185
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
3186
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
3187
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
3188
- WebkitTransform?: import("csstype").Property.Transform | undefined;
3189
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3190
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
3191
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3192
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3193
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3194
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3195
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
3196
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
3197
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
3198
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3199
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
3200
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3201
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
3202
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
3203
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
3204
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
3205
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
3206
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
3207
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
3208
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
3209
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3210
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3211
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
3212
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
3213
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3214
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3215
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
3216
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
3217
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
3218
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
3219
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
3220
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
3221
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
3222
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3223
- azimuth?: import("csstype").Property.Azimuth | undefined;
3224
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
3225
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
3226
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
3227
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3228
- boxLines?: import("csstype").Property.BoxLines | undefined;
3229
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3230
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
3231
- boxPack?: import("csstype").Property.BoxPack | undefined;
3232
- clip?: import("csstype").Property.Clip | undefined;
3233
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
3234
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
3235
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
3236
- imeMode?: import("csstype").Property.ImeMode | undefined;
3237
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
3238
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3239
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3240
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
3241
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3242
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3243
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
3244
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
3245
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
3246
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
3247
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
3248
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
3249
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3250
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3251
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3252
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3253
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
3254
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3255
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3256
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
3257
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
3258
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
3259
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
3260
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
3261
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3262
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
3263
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3264
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3265
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3266
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3267
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3268
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3269
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3270
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3271
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3272
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3273
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3274
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3275
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
3276
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
3277
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
3278
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
3279
- MozOpacity?: import("csstype").Property.Opacity | undefined;
3280
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
3281
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
3282
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
3283
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3284
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
3285
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3286
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
3287
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3288
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3289
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3290
- MozTransform?: import("csstype").Property.Transform | undefined;
3291
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3292
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
3293
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3294
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3295
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3296
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3297
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3298
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
3299
- msImeMode?: import("csstype").Property.ImeMode | undefined;
3300
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3301
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3302
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3303
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3304
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3305
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3306
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
3307
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3308
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3309
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3310
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
3311
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
3312
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3313
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3314
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
3315
- OTransform?: import("csstype").Property.Transform | undefined;
3316
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3317
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3318
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3319
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3320
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3321
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3322
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3323
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3324
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3325
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3326
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
3327
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3328
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3329
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
3330
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
3331
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
3332
- clipRule?: import("csstype").Property.ClipRule | undefined;
3333
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
3334
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
3335
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
3336
- fill?: import("csstype").Property.Fill | undefined;
3337
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
3338
- fillRule?: import("csstype").Property.FillRule | undefined;
3339
- floodColor?: import("csstype").Property.FloodColor | undefined;
3340
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
3341
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
3342
- lightingColor?: import("csstype").Property.LightingColor | undefined;
3343
- marker?: import("csstype").Property.Marker | undefined;
3344
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
3345
- markerMid?: import("csstype").Property.MarkerMid | undefined;
3346
- markerStart?: import("csstype").Property.MarkerStart | undefined;
3347
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
3348
- stopColor?: import("csstype").Property.StopColor | undefined;
3349
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
3350
- stroke?: import("csstype").Property.Stroke | undefined;
3351
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
3352
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
3353
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
3354
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
3355
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
3356
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
3357
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
3358
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
3359
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
3360
- };
49
+ [key: string]: any;
3361
50
  }, HTMLElement>;
3362
51
  render(): import("react").DetailedReactHTMLElement<{
3363
- "aria-label": string | undefined;
3364
- "data-type": string | undefined;
3365
- "data-tooltip"?: string | undefined;
3366
- id: string | undefined;
3367
- className: string;
3368
- style: {
3369
- flex?: string | number | undefined;
3370
- accentColor?: import("csstype").Property.AccentColor | undefined;
3371
- alignContent?: import("csstype").Property.AlignContent | undefined;
3372
- alignItems?: import("csstype").Property.AlignItems | undefined;
3373
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
3374
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
3375
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
3376
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3377
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
3378
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3379
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3380
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3381
- animationName?: import("csstype").Property.AnimationName | undefined;
3382
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3383
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
3384
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
3385
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
3386
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3387
- appearance?: import("csstype").Property.Appearance | undefined;
3388
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
3389
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
3390
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
3391
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
3392
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
3393
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3394
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
3395
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
3396
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3397
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
3398
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
3399
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
3400
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3401
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
3402
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
3403
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
3404
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
3405
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
3406
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
3407
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
3408
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
3409
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
3410
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
3411
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
3412
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
3413
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3414
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3415
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
3416
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
3417
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
3418
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
3419
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
3420
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
3421
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
3422
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
3423
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
3424
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
3425
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
3426
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
3427
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
3428
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
3429
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
3430
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
3431
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
3432
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
3433
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
3434
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
3435
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
3436
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
3437
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
3438
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
3439
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
3440
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
3441
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
3442
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
3443
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
3444
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3445
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3446
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
3447
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
3448
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
3449
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
3450
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
3451
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
3452
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
3453
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
3454
- breakInside?: import("csstype").Property.BreakInside | undefined;
3455
- captionSide?: import("csstype").Property.CaptionSide | undefined;
3456
- caretColor?: import("csstype").Property.CaretColor | undefined;
3457
- caretShape?: import("csstype").Property.CaretShape | undefined;
3458
- clear?: import("csstype").Property.Clear | undefined;
3459
- clipPath?: import("csstype").Property.ClipPath | undefined;
3460
- color?: import("csstype").Property.Color | undefined;
3461
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
3462
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
3463
- columnCount?: import("csstype").Property.ColumnCount | undefined;
3464
- columnFill?: import("csstype").Property.ColumnFill | undefined;
3465
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
3466
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
3467
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
3468
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3469
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
3470
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3471
- contain?: import("csstype").Property.Contain | undefined;
3472
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
3473
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
3474
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
3475
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
3476
- containerName?: import("csstype").Property.ContainerName | undefined;
3477
- containerType?: import("csstype").Property.ContainerType | undefined;
3478
- content?: import("csstype").Property.Content | undefined;
3479
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
3480
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
3481
- counterReset?: import("csstype").Property.CounterReset | undefined;
3482
- counterSet?: import("csstype").Property.CounterSet | undefined;
3483
- cursor?: import("csstype").Property.Cursor | undefined;
3484
- direction?: import("csstype").Property.Direction | undefined;
3485
- display?: import("csstype").Property.Display | undefined;
3486
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
3487
- filter?: import("csstype").Property.Filter | undefined;
3488
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
3489
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
3490
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
3491
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
3492
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
3493
- float?: import("csstype").Property.Float | undefined;
3494
- fontFamily?: import("csstype").Property.FontFamily | undefined;
3495
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3496
- fontKerning?: import("csstype").Property.FontKerning | undefined;
3497
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
3498
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
3499
- fontPalette?: import("csstype").Property.FontPalette | undefined;
3500
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
3501
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
3502
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
3503
- fontStretch?: import("csstype").Property.FontStretch | undefined;
3504
- fontStyle?: import("csstype").Property.FontStyle | undefined;
3505
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
3506
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
3507
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
3508
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
3509
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
3510
- fontVariant?: import("csstype").Property.FontVariant | undefined;
3511
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
3512
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
3513
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
3514
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
3515
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
3516
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
3517
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
3518
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
3519
- fontWeight?: import("csstype").Property.FontWeight | undefined;
3520
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
3521
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
3522
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
3523
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
3524
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
3525
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
3526
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
3527
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
3528
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
3529
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
3530
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
3531
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
3532
- height?: import("csstype").Property.Height<string | number> | undefined;
3533
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
3534
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
3535
- hyphens?: import("csstype").Property.Hyphens | undefined;
3536
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
3537
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
3538
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
3539
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
3540
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
3541
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
3542
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3543
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3544
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3545
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3546
- isolation?: import("csstype").Property.Isolation | undefined;
3547
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
3548
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
3549
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
3550
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
3551
- left?: import("csstype").Property.Left<string | number> | undefined;
3552
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
3553
- lineBreak?: import("csstype").Property.LineBreak | undefined;
3554
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
3555
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
3556
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
3557
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
3558
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
3559
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
3560
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
3561
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
3562
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3563
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3564
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
3565
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
3566
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
3567
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
3568
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
3569
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3570
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
3571
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
3572
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
3573
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3574
- maskClip?: import("csstype").Property.MaskClip | undefined;
3575
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
3576
- maskImage?: import("csstype").Property.MaskImage | undefined;
3577
- maskMode?: import("csstype").Property.MaskMode | undefined;
3578
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
3579
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
3580
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
3581
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
3582
- maskType?: import("csstype").Property.MaskType | undefined;
3583
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
3584
- mathDepth?: import("csstype").Property.MathDepth | undefined;
3585
- mathShift?: import("csstype").Property.MathShift | undefined;
3586
- mathStyle?: import("csstype").Property.MathStyle | undefined;
3587
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
3588
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
3589
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3590
- maxLines?: import("csstype").Property.MaxLines | undefined;
3591
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
3592
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
3593
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
3594
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
3595
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
3596
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
3597
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
3598
- motionPath?: import("csstype").Property.OffsetPath | undefined;
3599
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
3600
- objectFit?: import("csstype").Property.ObjectFit | undefined;
3601
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3602
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
3603
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
3604
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
3605
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
3606
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
3607
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
3608
- opacity?: import("csstype").Property.Opacity | undefined;
3609
- order?: import("csstype").Property.Order | undefined;
3610
- orphans?: import("csstype").Property.Orphans | undefined;
3611
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
3612
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
3613
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
3614
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3615
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
3616
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
3617
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
3618
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
3619
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
3620
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
3621
- overflowX?: import("csstype").Property.OverflowX | undefined;
3622
- overflowY?: import("csstype").Property.OverflowY | undefined;
3623
- overlay?: import("csstype").Property.Overlay | undefined;
3624
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
3625
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
3626
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
3627
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
3628
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
3629
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
3630
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
3631
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3632
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3633
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
3634
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
3635
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
3636
- page?: import("csstype").Property.Page | undefined;
3637
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
3638
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
3639
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
3640
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
3641
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
3642
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3643
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
3644
- position?: import("csstype").Property.Position | undefined;
3645
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
3646
- quotes?: import("csstype").Property.Quotes | undefined;
3647
- resize?: import("csstype").Property.Resize | undefined;
3648
- right?: import("csstype").Property.Right<string | number> | undefined;
3649
- rotate?: import("csstype").Property.Rotate | undefined;
3650
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
3651
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
3652
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
3653
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
3654
- scale?: import("csstype").Property.Scale | undefined;
3655
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
3656
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
3657
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
3658
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
3659
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
3660
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
3661
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
3662
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
3663
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
3664
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
3665
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
3666
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
3667
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
3668
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
3669
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
3670
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
3671
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
3672
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
3673
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
3674
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
3675
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
3676
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
3677
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
3678
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
3679
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
3680
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
3681
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
3682
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
3683
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
3684
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
3685
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3686
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
3687
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3688
- tableLayout?: import("csstype").Property.TableLayout | undefined;
3689
- textAlign?: import("csstype").Property.TextAlign | undefined;
3690
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
3691
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
3692
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3693
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3694
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
3695
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
3696
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3697
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
3698
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
3699
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
3700
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
3701
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
3702
- textJustify?: import("csstype").Property.TextJustify | undefined;
3703
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
3704
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
3705
- textRendering?: import("csstype").Property.TextRendering | undefined;
3706
- textShadow?: import("csstype").Property.TextShadow | undefined;
3707
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3708
- textTransform?: import("csstype").Property.TextTransform | undefined;
3709
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
3710
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
3711
- textWrap?: import("csstype").Property.TextWrap | undefined;
3712
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
3713
- top?: import("csstype").Property.Top<string | number> | undefined;
3714
- touchAction?: import("csstype").Property.TouchAction | undefined;
3715
- transform?: import("csstype").Property.Transform | undefined;
3716
- transformBox?: import("csstype").Property.TransformBox | undefined;
3717
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3718
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
3719
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
3720
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3721
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3722
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3723
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3724
- translate?: import("csstype").Property.Translate<string | number> | undefined;
3725
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
3726
- userSelect?: import("csstype").Property.UserSelect | undefined;
3727
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
3728
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
3729
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
3730
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
3731
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
3732
- visibility?: import("csstype").Property.Visibility | undefined;
3733
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
3734
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
3735
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
3736
- widows?: import("csstype").Property.Widows | undefined;
3737
- width?: import("csstype").Property.Width<string | number> | undefined;
3738
- willChange?: import("csstype").Property.WillChange | undefined;
3739
- wordBreak?: import("csstype").Property.WordBreak | undefined;
3740
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
3741
- wordWrap?: import("csstype").Property.WordWrap | undefined;
3742
- writingMode?: import("csstype").Property.WritingMode | undefined;
3743
- zIndex?: import("csstype").Property.ZIndex | undefined;
3744
- zoom?: import("csstype").Property.Zoom | undefined;
3745
- all?: import("csstype").Property.All | undefined;
3746
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
3747
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
3748
- background?: import("csstype").Property.Background<string | number> | undefined;
3749
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
3750
- border?: import("csstype").Property.Border<string | number> | undefined;
3751
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
3752
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
3753
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
3754
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
3755
- borderColor?: import("csstype").Property.BorderColor | undefined;
3756
- borderImage?: import("csstype").Property.BorderImage | undefined;
3757
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
3758
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
3759
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
3760
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
3761
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3762
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
3763
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
3764
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
3765
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
3766
- caret?: import("csstype").Property.Caret | undefined;
3767
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3768
- columns?: import("csstype").Property.Columns<string | number> | undefined;
3769
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
3770
- container?: import("csstype").Property.Container | undefined;
3771
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
3772
- font?: import("csstype").Property.Font | undefined;
3773
- gap?: import("csstype").Property.Gap<string | number> | undefined;
3774
- grid?: import("csstype").Property.Grid | undefined;
3775
- gridArea?: import("csstype").Property.GridArea | undefined;
3776
- gridColumn?: import("csstype").Property.GridColumn | undefined;
3777
- gridRow?: import("csstype").Property.GridRow | undefined;
3778
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
3779
- inset?: import("csstype").Property.Inset<string | number> | undefined;
3780
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
3781
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
3782
- lineClamp?: import("csstype").Property.LineClamp | undefined;
3783
- listStyle?: import("csstype").Property.ListStyle | undefined;
3784
- margin?: import("csstype").Property.Margin<string | number> | undefined;
3785
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
3786
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
3787
- mask?: import("csstype").Property.Mask<string | number> | undefined;
3788
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
3789
- motion?: import("csstype").Property.Offset<string | number> | undefined;
3790
- offset?: import("csstype").Property.Offset<string | number> | undefined;
3791
- outline?: import("csstype").Property.Outline<string | number> | undefined;
3792
- overflow?: import("csstype").Property.Overflow | undefined;
3793
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
3794
- padding?: import("csstype").Property.Padding<string | number> | undefined;
3795
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
3796
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
3797
- placeContent?: import("csstype").Property.PlaceContent | undefined;
3798
- placeItems?: import("csstype").Property.PlaceItems | undefined;
3799
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
3800
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
3801
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
3802
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
3803
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
3804
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
3805
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
3806
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
3807
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
3808
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
3809
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
3810
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
3811
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
3812
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3813
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3814
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3815
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3816
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3817
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
3818
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3819
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3820
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
3821
- MozBinding?: import("csstype").Property.MozBinding | undefined;
3822
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
3823
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
3824
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
3825
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
3826
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
3827
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
3828
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
3829
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
3830
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
3831
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
3832
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
3833
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
3834
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
3835
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
3836
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3837
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3838
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
3839
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3840
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
3841
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
3842
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
3843
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3844
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3845
- MozOrient?: import("csstype").Property.MozOrient | undefined;
3846
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
3847
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
3848
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
3849
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
3850
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
3851
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3852
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3853
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
3854
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3855
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
3856
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3857
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
3858
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
3859
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
3860
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
3861
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
3862
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
3863
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
3864
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
3865
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
3866
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
3867
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
3868
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
3869
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
3870
- msFilter?: import("csstype").Property.MsFilter | undefined;
3871
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
3872
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
3873
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
3874
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
3875
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
3876
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
3877
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
3878
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
3879
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
3880
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
3881
- msHyphens?: import("csstype").Property.Hyphens | undefined;
3882
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
3883
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
3884
- msOrder?: import("csstype").Property.Order | undefined;
3885
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
3886
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
3887
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
3888
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
3889
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
3890
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
3891
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
3892
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
3893
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
3894
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
3895
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
3896
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
3897
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
3898
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
3899
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
3900
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
3901
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
3902
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
3903
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
3904
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
3905
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
3906
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
3907
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
3908
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
3909
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
3910
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
3911
- msTransform?: import("csstype").Property.Transform | undefined;
3912
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3913
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3914
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3915
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3916
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3917
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
3918
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
3919
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
3920
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
3921
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
3922
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
3923
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
3924
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
3925
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
3926
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3927
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3928
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3929
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3930
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3931
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
3932
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3933
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3934
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
3935
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
3936
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
3937
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3938
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3939
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3940
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
3941
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
3942
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
3943
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3944
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3945
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
3946
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3947
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3948
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
3949
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
3950
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
3951
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
3952
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
3953
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
3954
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
3955
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
3956
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
3957
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3958
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
3959
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3960
- WebkitFilter?: import("csstype").Property.Filter | undefined;
3961
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
3962
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
3963
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
3964
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
3965
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
3966
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3967
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
3968
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
3969
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
3970
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
3971
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
3972
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
3973
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
3974
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
3975
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
3976
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3977
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3978
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
3979
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3980
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
3981
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
3982
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
3983
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3984
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
3985
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
3986
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
3987
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
3988
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
3989
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
3990
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
3991
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
3992
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3993
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3994
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
3995
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3996
- WebkitOrder?: import("csstype").Property.Order | undefined;
3997
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3998
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3999
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
4000
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
4001
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
4002
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
4003
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
4004
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
4005
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
4006
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
4007
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
4008
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
4009
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
4010
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
4011
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
4012
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
4013
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
4014
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
4015
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
4016
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
4017
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
4018
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
4019
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
4020
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
4021
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
4022
- WebkitTransform?: import("csstype").Property.Transform | undefined;
4023
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
4024
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
4025
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
4026
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
4027
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
4028
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
4029
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
4030
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
4031
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
4032
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
4033
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
4034
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
4035
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
4036
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
4037
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
4038
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
4039
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
4040
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
4041
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
4042
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
4043
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
4044
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
4045
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
4046
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
4047
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
4048
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
4049
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
4050
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
4051
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
4052
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
4053
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
4054
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
4055
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
4056
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
4057
- azimuth?: import("csstype").Property.Azimuth | undefined;
4058
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
4059
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
4060
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
4061
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
4062
- boxLines?: import("csstype").Property.BoxLines | undefined;
4063
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
4064
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
4065
- boxPack?: import("csstype").Property.BoxPack | undefined;
4066
- clip?: import("csstype").Property.Clip | undefined;
4067
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
4068
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
4069
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
4070
- imeMode?: import("csstype").Property.ImeMode | undefined;
4071
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
4072
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
4073
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
4074
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
4075
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
4076
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
4077
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
4078
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
4079
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
4080
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
4081
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
4082
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
4083
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
4084
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
4085
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
4086
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
4087
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
4088
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
4089
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
4090
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
4091
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
4092
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
4093
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
4094
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
4095
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
4096
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
4097
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
4098
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
4099
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
4100
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
4101
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
4102
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
4103
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
4104
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
4105
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
4106
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
4107
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
4108
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
4109
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
4110
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
4111
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
4112
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
4113
- MozOpacity?: import("csstype").Property.Opacity | undefined;
4114
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
4115
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
4116
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
4117
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
4118
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
4119
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
4120
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
4121
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
4122
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
4123
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
4124
- MozTransform?: import("csstype").Property.Transform | undefined;
4125
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
4126
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
4127
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
4128
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
4129
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
4130
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
4131
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
4132
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
4133
- msImeMode?: import("csstype").Property.ImeMode | undefined;
4134
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
4135
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
4136
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
4137
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
4138
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
4139
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
4140
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
4141
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
4142
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
4143
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
4144
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
4145
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
4146
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
4147
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
4148
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
4149
- OTransform?: import("csstype").Property.Transform | undefined;
4150
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
4151
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
4152
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
4153
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
4154
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
4155
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
4156
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
4157
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
4158
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
4159
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
4160
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
4161
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
4162
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
4163
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
4164
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
4165
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
4166
- clipRule?: import("csstype").Property.ClipRule | undefined;
4167
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
4168
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
4169
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
4170
- fill?: import("csstype").Property.Fill | undefined;
4171
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
4172
- fillRule?: import("csstype").Property.FillRule | undefined;
4173
- floodColor?: import("csstype").Property.FloodColor | undefined;
4174
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
4175
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
4176
- lightingColor?: import("csstype").Property.LightingColor | undefined;
4177
- marker?: import("csstype").Property.Marker | undefined;
4178
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
4179
- markerMid?: import("csstype").Property.MarkerMid | undefined;
4180
- markerStart?: import("csstype").Property.MarkerStart | undefined;
4181
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
4182
- stopColor?: import("csstype").Property.StopColor | undefined;
4183
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
4184
- stroke?: import("csstype").Property.Stroke | undefined;
4185
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
4186
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
4187
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
4188
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
4189
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
4190
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
4191
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
4192
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
4193
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
4194
- };
52
+ [key: string]: any;
4195
53
  }, HTMLElement>;
4196
54
  }