@m4l/styles 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/index.d.ts +1 -0
  2. package/index.js +1721 -0
  3. package/package.json +32 -0
  4. package/theme/defaultThemeOptions.d.ts +2 -0
  5. package/theme/index.d.ts +8 -0
  6. package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +10 -0
  7. package/theme/overrides/M4LExtendedComponents/M4LErrorLabel.d.ts +10 -0
  8. package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +10 -0
  9. package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +10 -0
  10. package/theme/overrides/M4LExtendedComponents/M4LImage.d.ts +10 -0
  11. package/theme/overrides/M4LExtendedComponents/M4LImageButton.d.ts +10 -0
  12. package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +13 -0
  13. package/theme/overrides/M4LExtendedComponents/M4LTypography.d.ts +10 -0
  14. package/theme/overrides/M4LExtendedComponents/M4LanguagePopover.d.ts +13 -0
  15. package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +10 -0
  16. package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +16 -0
  17. package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +12 -0
  18. package/theme/overrides/MUIComponents/Accordion.d.ts +861 -0
  19. package/theme/overrides/MUIComponents/Autocomplete.d.ts +26 -0
  20. package/theme/overrides/MUIComponents/Avatar.d.ts +24 -0
  21. package/theme/overrides/MUIComponents/Backdrop.d.ts +13 -0
  22. package/theme/overrides/MUIComponents/Badge.d.ts +12 -0
  23. package/theme/overrides/MUIComponents/Breadcrumbs.d.ts +11 -0
  24. package/theme/overrides/MUIComponents/Button.d.ts +52 -0
  25. package/theme/overrides/MUIComponents/ButtonGroup.d.ts +39 -0
  26. package/theme/overrides/MUIComponents/Card.d.ts +36 -0
  27. package/theme/overrides/MUIComponents/Checkbox.d.ts +18 -0
  28. package/theme/overrides/MUIComponents/CmpDisenoTest.d.ts +6 -0
  29. package/theme/overrides/MUIComponents/ControlLabel.d.ts +813 -0
  30. package/theme/overrides/MUIComponents/CssBaseline.d.ts +42 -0
  31. package/theme/overrides/MUIComponents/DataGrid.d.ts +1670 -0
  32. package/theme/overrides/MUIComponents/Dialog.d.ts +55 -0
  33. package/theme/overrides/MUIComponents/Drawer.d.ts +17 -0
  34. package/theme/overrides/MUIComponents/DynamicFilter.d.ts +6 -0
  35. package/theme/overrides/MUIComponents/Fab.d.ts +34 -0
  36. package/theme/overrides/MUIComponents/IconButton.d.ts +23 -0
  37. package/theme/overrides/MUIComponents/Input.d.ts +1661 -0
  38. package/theme/overrides/MUIComponents/InputLabel.d.ts +14 -0
  39. package/theme/overrides/MUIComponents/Link.d.ts +15 -0
  40. package/theme/overrides/MUIComponents/List.d.ts +32 -0
  41. package/theme/overrides/MUIComponents/LoadingButton.d.ts +811 -0
  42. package/theme/overrides/MUIComponents/Menu.d.ts +15 -0
  43. package/theme/overrides/MUIComponents/Pagination.d.ts +30 -0
  44. package/theme/overrides/MUIComponents/Paper.d.ts +22 -0
  45. package/theme/overrides/MUIComponents/Popover.d.ts +11 -0
  46. package/theme/overrides/MUIComponents/Progress.d.ts +20 -0
  47. package/theme/overrides/MUIComponents/Radio.d.ts +16 -0
  48. package/theme/overrides/MUIComponents/Skeleton.d.ts +13 -0
  49. package/theme/overrides/MUIComponents/Slider.d.ts +23 -0
  50. package/theme/overrides/MUIComponents/Stepper.d.ts +10 -0
  51. package/theme/overrides/MUIComponents/SvgIcon.d.ts +17 -0
  52. package/theme/overrides/MUIComponents/Switch.d.ts +28 -0
  53. package/theme/overrides/MUIComponents/Table.d.ts +3238 -0
  54. package/theme/overrides/MUIComponents/Tabs.d.ts +845 -0
  55. package/theme/overrides/MUIComponents/Timeline.d.ts +17 -0
  56. package/theme/overrides/MUIComponents/ToggleButton.d.ts +43 -0
  57. package/theme/overrides/MUIComponents/Tooltip.d.ts +13 -0
  58. package/theme/overrides/MUIComponents/Typography.d.ts +13 -0
  59. package/theme/overrides/index.d.ts +2 -0
  60. package/theme/palette.d.ts +323 -0
  61. package/theme/shadows.d.ts +67 -0
  62. package/theme/typography.d.ts +132 -0
  63. package/types/index.d.ts +1 -0
  64. package/vite-env.d.ts +3 -0
@@ -0,0 +1,3238 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export default function Table(theme: Theme): {
3
+ MuiTableRow: {
4
+ styleOverrides: {
5
+ root: {
6
+ '&.Mui-selected': {
7
+ backgroundColor: string;
8
+ '&:hover': {
9
+ backgroundColor: string;
10
+ };
11
+ };
12
+ };
13
+ };
14
+ };
15
+ MuiTableCell: {
16
+ styleOverrides: {
17
+ root: {
18
+ borderBottom: string;
19
+ };
20
+ head: {
21
+ color: string;
22
+ backgroundColor: string;
23
+ '&:first-of-type': {
24
+ paddingLeft: string;
25
+ borderTopLeftRadius: number;
26
+ borderBottomLeftRadius: number;
27
+ boxShadow: string;
28
+ };
29
+ '&:last-of-type': {
30
+ paddingRight: string;
31
+ borderTopRightRadius: number;
32
+ borderBottomRightRadius: number;
33
+ boxShadow: string;
34
+ };
35
+ };
36
+ stickyHeader: {
37
+ backgroundColor: string;
38
+ backgroundImage: string;
39
+ };
40
+ body: {
41
+ '&:first-of-type': {
42
+ paddingLeft: string;
43
+ };
44
+ '&:last-of-type': {
45
+ paddingRight: string;
46
+ };
47
+ };
48
+ };
49
+ };
50
+ MuiTablePagination: {
51
+ styleOverrides: {
52
+ root: {
53
+ [x: string]: unknown;
54
+ '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
55
+ accentColor?: import("csstype").Property.AccentColor | undefined;
56
+ alignContent?: import("csstype").Property.AlignContent | undefined;
57
+ alignItems?: import("csstype").Property.AlignItems | undefined;
58
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
59
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
60
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
61
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
62
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
63
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
64
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
65
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
66
+ animationName?: import("csstype").Property.AnimationName | undefined;
67
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
68
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
69
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
70
+ appearance?: import("csstype").Property.Appearance | undefined;
71
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
72
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
73
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
74
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
75
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
76
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
77
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
78
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
79
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
80
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
81
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
82
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
83
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
84
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
85
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
86
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
87
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
88
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
89
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
90
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
91
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
92
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
93
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
94
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
95
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
96
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
97
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
98
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
99
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
100
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
101
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
102
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
103
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
104
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
105
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
106
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
107
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
108
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
109
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
110
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
111
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
112
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
113
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
114
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
115
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
116
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
117
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
118
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
119
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
120
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
121
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
122
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
123
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
124
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
125
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
126
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
127
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
128
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
129
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
130
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
131
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
132
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
133
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
134
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
135
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
136
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
137
+ breakInside?: import("csstype").Property.BreakInside | undefined;
138
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
139
+ caretColor?: import("csstype").Property.CaretColor | undefined;
140
+ clear?: import("csstype").Property.Clear | undefined;
141
+ clipPath?: import("csstype").Property.ClipPath | undefined;
142
+ color?: import("csstype").Property.Color | undefined;
143
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
144
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
145
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
146
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
147
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
148
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
149
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
150
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
151
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
152
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
153
+ contain?: import("csstype").Property.Contain | undefined;
154
+ content?: import("csstype").Property.Content | undefined;
155
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
156
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
157
+ counterReset?: import("csstype").Property.CounterReset | undefined;
158
+ counterSet?: import("csstype").Property.CounterSet | undefined;
159
+ cursor?: import("csstype").Property.Cursor | undefined;
160
+ direction?: import("csstype").Property.Direction | undefined;
161
+ display?: import("csstype").Property.Display | undefined;
162
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
163
+ filter?: import("csstype").Property.Filter | undefined;
164
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
165
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
166
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
167
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
168
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
169
+ float?: import("csstype").Property.Float | undefined;
170
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
171
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
172
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
173
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
174
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
175
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
176
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
177
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
178
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
179
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
180
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
181
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
182
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
183
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
184
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
185
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
186
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
187
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
188
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
189
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
190
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
191
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
192
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
193
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
194
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
195
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
196
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
197
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
198
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
199
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
200
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
201
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
202
+ height?: import("csstype").Property.Height<string | number> | undefined;
203
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
204
+ hyphens?: import("csstype").Property.Hyphens | undefined;
205
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
206
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
207
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
208
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
209
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
210
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
211
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
212
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
213
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
214
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
215
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
216
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
217
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
218
+ isolation?: import("csstype").Property.Isolation | undefined;
219
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
220
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
221
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
222
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
223
+ left?: import("csstype").Property.Left<string | number> | undefined;
224
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
225
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
226
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
227
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
228
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
229
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
230
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
231
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
232
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
233
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
234
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
235
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
236
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
237
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
238
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
239
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
240
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
241
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
242
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
243
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
244
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
245
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
246
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
247
+ maskClip?: import("csstype").Property.MaskClip | undefined;
248
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
249
+ maskImage?: import("csstype").Property.MaskImage | undefined;
250
+ maskMode?: import("csstype").Property.MaskMode | undefined;
251
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
252
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
253
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
254
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
255
+ maskType?: import("csstype").Property.MaskType | undefined;
256
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
257
+ mathShift?: import("csstype").Property.MathShift | undefined;
258
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
259
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
260
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
261
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
262
+ maxLines?: import("csstype").Property.MaxLines | undefined;
263
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
264
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
265
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
266
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
267
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
268
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
269
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
270
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
271
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
272
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
273
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
274
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
275
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
276
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
277
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
278
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
279
+ opacity?: import("csstype").Property.Opacity | undefined;
280
+ order?: import("csstype").Property.Order | undefined;
281
+ orphans?: import("csstype").Property.Orphans | undefined;
282
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
283
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
284
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
285
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
286
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
287
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
288
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
289
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
290
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
291
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
292
+ overflowX?: import("csstype").Property.OverflowX | undefined;
293
+ overflowY?: import("csstype").Property.OverflowY | undefined;
294
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
295
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
296
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
297
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
298
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
299
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
300
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
301
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
302
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
303
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
304
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
305
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
306
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
307
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
308
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
309
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
310
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
311
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
312
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
313
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
314
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
315
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
316
+ position?: import("csstype").Property.Position | undefined;
317
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
318
+ quotes?: import("csstype").Property.Quotes | undefined;
319
+ resize?: import("csstype").Property.Resize | undefined;
320
+ right?: import("csstype").Property.Right<string | number> | undefined;
321
+ rotate?: import("csstype").Property.Rotate | undefined;
322
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
323
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
324
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
325
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
326
+ scale?: import("csstype").Property.Scale | undefined;
327
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
328
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
329
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
330
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
331
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
332
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
333
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
334
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
335
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
336
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
337
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
338
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
339
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
340
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
341
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
342
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
343
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
344
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
345
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
346
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
347
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
348
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
349
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
350
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
351
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
352
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
353
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
354
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
355
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
356
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
357
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
358
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
359
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
360
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
361
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
362
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
363
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
364
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
365
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
366
+ textAlign?: import("csstype").Property.TextAlign | undefined;
367
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
368
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
369
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
370
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
371
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
372
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
373
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
374
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
375
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
376
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
377
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
378
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
379
+ textJustify?: import("csstype").Property.TextJustify | undefined;
380
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
381
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
382
+ textRendering?: import("csstype").Property.TextRendering | undefined;
383
+ textShadow?: import("csstype").Property.TextShadow | undefined;
384
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
385
+ textTransform?: import("csstype").Property.TextTransform | undefined;
386
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
387
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
388
+ top?: import("csstype").Property.Top<string | number> | undefined;
389
+ touchAction?: import("csstype").Property.TouchAction | undefined;
390
+ transform?: import("csstype").Property.Transform | undefined;
391
+ transformBox?: import("csstype").Property.TransformBox | undefined;
392
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
393
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
394
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
395
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
396
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
397
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
398
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
399
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
400
+ userSelect?: import("csstype").Property.UserSelect | undefined;
401
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
402
+ visibility?: import("csstype").Property.Visibility | undefined;
403
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
404
+ widows?: import("csstype").Property.Widows | undefined;
405
+ width?: import("csstype").Property.Width<string | number> | undefined;
406
+ willChange?: import("csstype").Property.WillChange | undefined;
407
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
408
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
409
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
410
+ writingMode?: import("csstype").Property.WritingMode | undefined;
411
+ zIndex?: import("csstype").Property.ZIndex | undefined;
412
+ zoom?: import("csstype").Property.Zoom | undefined;
413
+ all?: import("csstype").Globals | undefined;
414
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
415
+ background?: import("csstype").Property.Background<string | number> | undefined;
416
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
417
+ border?: import("csstype").Property.Border<string | number> | undefined;
418
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
419
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
420
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
421
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
422
+ borderColor?: import("csstype").Property.BorderColor | undefined;
423
+ borderImage?: import("csstype").Property.BorderImage | undefined;
424
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
425
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
426
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
427
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
428
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
429
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
430
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
431
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
432
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
433
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
434
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
435
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
436
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
437
+ font?: import("csstype").Property.Font | undefined;
438
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
439
+ grid?: import("csstype").Property.Grid | undefined;
440
+ gridArea?: import("csstype").Property.GridArea | undefined;
441
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
442
+ gridRow?: import("csstype").Property.GridRow | undefined;
443
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
444
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
445
+ listStyle?: import("csstype").Property.ListStyle | undefined;
446
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
447
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
448
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
449
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
450
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
451
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
452
+ overflow?: import("csstype").Property.Overflow | undefined;
453
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
454
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
455
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
456
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
457
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
458
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
459
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
460
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
461
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
462
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
463
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
464
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
465
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
466
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
467
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
468
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
469
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
470
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
471
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
472
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
473
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
474
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
475
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
476
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
477
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
478
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
479
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
480
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
481
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
482
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
483
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
484
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
485
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
486
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
487
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
488
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
489
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
490
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
491
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
492
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
493
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
494
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
495
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
496
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
497
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
498
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
499
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
500
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
501
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
502
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
503
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
504
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
505
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
506
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
507
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
508
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
509
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
510
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
511
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
512
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
513
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
514
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
515
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
516
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
517
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
518
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
519
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
520
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
521
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
522
+ msFilter?: import("csstype").Property.MsFilter | undefined;
523
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
524
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
525
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
526
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
527
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
528
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
529
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
530
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
531
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
532
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
533
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
534
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
535
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
536
+ msOrder?: import("csstype").Property.Order | undefined;
537
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
538
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
539
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
540
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
541
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
542
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
543
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
544
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
545
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
546
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
547
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
548
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
549
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
550
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
551
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
552
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
553
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
554
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
555
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
556
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
557
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
558
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
559
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
560
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
561
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
562
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
563
+ msTransform?: import("csstype").Property.Transform | undefined;
564
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
565
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
566
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
567
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
568
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
569
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
570
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
571
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
572
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
573
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
574
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
575
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
576
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
577
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
578
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
579
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
580
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
581
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
582
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
583
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
584
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
585
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
586
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
587
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
588
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
589
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
590
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
591
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
592
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
593
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
594
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
595
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
596
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
597
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
598
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
599
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
600
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
601
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
602
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
603
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
604
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
605
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
606
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
607
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
608
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
609
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
610
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
611
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
612
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
613
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
614
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
615
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
616
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
617
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
618
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
619
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
620
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
621
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
622
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
623
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
624
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
625
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
626
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
627
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
628
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
629
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
630
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
631
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
632
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
633
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
634
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
635
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
636
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
637
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
638
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
639
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
640
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
641
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
642
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
643
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
644
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
645
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
646
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
647
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
648
+ WebkitOrder?: import("csstype").Property.Order | undefined;
649
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
650
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
651
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
652
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
653
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
654
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
655
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
656
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
657
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
658
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
659
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
660
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
661
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
662
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
663
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
664
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
665
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
666
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
667
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
668
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
669
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
670
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
671
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
672
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
673
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
674
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
675
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
676
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
677
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
678
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
679
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
680
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
681
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
682
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
683
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
684
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
685
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
686
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
687
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
688
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
689
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
690
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
691
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
692
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
693
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
694
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
695
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
696
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
697
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
698
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
699
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
700
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
701
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
702
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
703
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
704
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
705
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
706
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
707
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
708
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
709
+ azimuth?: import("csstype").Property.Azimuth | undefined;
710
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
711
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
712
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
713
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
714
+ boxLines?: import("csstype").Property.BoxLines | undefined;
715
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
716
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
717
+ boxPack?: import("csstype").Property.BoxPack | undefined;
718
+ clip?: import("csstype").Property.Clip | undefined;
719
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
720
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
721
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
722
+ imeMode?: import("csstype").Property.ImeMode | undefined;
723
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
724
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
725
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
726
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
727
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
728
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
729
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
730
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
731
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
732
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
733
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
734
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
735
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
736
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
737
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
738
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
739
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
740
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
741
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
742
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
743
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
744
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
745
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
746
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
747
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
748
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
749
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
750
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
751
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
752
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
753
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
754
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
755
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
756
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
757
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
758
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
759
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
760
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
761
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
762
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
763
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
764
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
765
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
766
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
767
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
768
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
769
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
770
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
771
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
772
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
773
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
774
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<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
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
780
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
781
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
782
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
783
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
784
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
785
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
786
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
787
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
788
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
789
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
790
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
791
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
792
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
793
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
794
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
795
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
796
+ OTransform?: import("csstype").Property.Transform | undefined;
797
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
798
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
799
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
800
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
801
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
802
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
803
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
804
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
805
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
806
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
807
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
808
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
809
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
810
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
811
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
812
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
813
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
814
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
815
+ clipRule?: import("csstype").Property.ClipRule | undefined;
816
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
817
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
818
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
819
+ fill?: import("csstype").Property.Fill | undefined;
820
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
821
+ fillRule?: import("csstype").Property.FillRule | undefined;
822
+ floodColor?: import("csstype").Property.FloodColor | undefined;
823
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
824
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
825
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
826
+ marker?: import("csstype").Property.Marker | undefined;
827
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
828
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
829
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
830
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
831
+ stopColor?: import("csstype").Property.StopColor | undefined;
832
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
833
+ stroke?: import("csstype").Property.Stroke | undefined;
834
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
835
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
836
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
837
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
838
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
839
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
840
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
841
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
842
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
843
+ };
844
+ toolbar: {
845
+ '& .MuiInputBase-root': {
846
+ '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
847
+ accentColor?: import("csstype").Property.AccentColor | undefined;
848
+ alignContent?: import("csstype").Property.AlignContent | undefined;
849
+ alignItems?: import("csstype").Property.AlignItems | undefined;
850
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
851
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
852
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
853
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
854
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
855
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
856
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
857
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
858
+ animationName?: import("csstype").Property.AnimationName | undefined;
859
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
860
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
861
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
862
+ appearance?: import("csstype").Property.Appearance | undefined;
863
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
864
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
865
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
866
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
867
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
868
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
869
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
870
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
871
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
872
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
873
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
874
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
875
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
876
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
877
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
878
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
879
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
880
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
881
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
882
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
883
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
884
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
885
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
886
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
887
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
888
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
889
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
890
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
891
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
892
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
893
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
894
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
895
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
896
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
897
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
898
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
899
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
900
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
901
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
902
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
903
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
904
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
905
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
906
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
907
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
908
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
909
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
910
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
911
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
912
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
913
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
914
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
915
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
916
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
917
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
918
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
919
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
920
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
921
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
922
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
923
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
924
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
925
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
926
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
927
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
928
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
929
+ breakInside?: import("csstype").Property.BreakInside | undefined;
930
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
931
+ caretColor?: import("csstype").Property.CaretColor | undefined;
932
+ clear?: import("csstype").Property.Clear | undefined;
933
+ clipPath?: import("csstype").Property.ClipPath | undefined;
934
+ color?: import("csstype").Property.Color | undefined;
935
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
936
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
937
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
938
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
939
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
940
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
941
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
942
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
943
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
944
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
945
+ contain?: import("csstype").Property.Contain | undefined;
946
+ content?: import("csstype").Property.Content | undefined;
947
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
948
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
949
+ counterReset?: import("csstype").Property.CounterReset | undefined;
950
+ counterSet?: import("csstype").Property.CounterSet | undefined;
951
+ cursor?: import("csstype").Property.Cursor | undefined;
952
+ direction?: import("csstype").Property.Direction | undefined;
953
+ display?: import("csstype").Property.Display | undefined;
954
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
955
+ filter?: import("csstype").Property.Filter | undefined;
956
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
957
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
958
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
959
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
960
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
961
+ float?: import("csstype").Property.Float | undefined;
962
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
963
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
964
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
965
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
966
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
967
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
968
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
969
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
970
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
971
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
972
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
973
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
974
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
975
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
976
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
977
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
978
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
979
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
980
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
981
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
982
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
983
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
984
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
985
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
986
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
987
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
988
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
989
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
990
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
991
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
992
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
993
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
994
+ height?: import("csstype").Property.Height<string | number> | undefined;
995
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
996
+ hyphens?: import("csstype").Property.Hyphens | undefined;
997
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
998
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
999
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1000
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1001
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1002
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1003
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
1004
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1005
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1006
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1007
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1008
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1009
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1010
+ isolation?: import("csstype").Property.Isolation | undefined;
1011
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1012
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1013
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1014
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1015
+ left?: import("csstype").Property.Left<string | number> | undefined;
1016
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1017
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1018
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1019
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1020
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1021
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1022
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1023
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1024
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1025
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1026
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1027
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1028
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1029
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1030
+ marginLeft: import("csstype").Property.MarginLeft<string | number>;
1031
+ marginRight: import("csstype").Property.MarginRight<string | number>;
1032
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1033
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1034
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1035
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1036
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1037
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1038
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1039
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1040
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1041
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1042
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1043
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1044
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1045
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1046
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1047
+ maskType?: import("csstype").Property.MaskType | undefined;
1048
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1049
+ mathShift?: import("csstype").Property.MathShift | undefined;
1050
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1051
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1052
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1053
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1054
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1055
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1056
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1057
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1058
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1059
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1060
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1061
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1062
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1063
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1064
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1065
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1066
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1067
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1068
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1069
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1070
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1071
+ opacity?: import("csstype").Property.Opacity | undefined;
1072
+ order?: import("csstype").Property.Order | undefined;
1073
+ orphans?: import("csstype").Property.Orphans | undefined;
1074
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1075
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1076
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1077
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1078
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1079
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1080
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1081
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1082
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1083
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1084
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1085
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1086
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1087
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1088
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1089
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1090
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1091
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1092
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1093
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1094
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1095
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1096
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1097
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1098
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1099
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1100
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1101
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1102
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1103
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1104
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1105
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1106
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1107
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1108
+ position?: import("csstype").Property.Position | undefined;
1109
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1110
+ quotes?: import("csstype").Property.Quotes | undefined;
1111
+ resize?: import("csstype").Property.Resize | undefined;
1112
+ right?: import("csstype").Property.Right<string | number> | undefined;
1113
+ rotate?: import("csstype").Property.Rotate | undefined;
1114
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1115
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1116
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1117
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1118
+ scale?: import("csstype").Property.Scale | undefined;
1119
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1120
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1121
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1122
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1123
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1124
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1125
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1126
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1127
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1128
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1129
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1130
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1131
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1132
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1133
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1134
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1135
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1136
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1137
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1138
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1139
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1140
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1141
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1142
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1143
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1144
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1145
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1146
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1147
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1148
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1149
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1150
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1151
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1152
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1153
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1154
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1155
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1156
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1157
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1158
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1159
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1160
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1161
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1162
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1163
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1164
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1165
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1166
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1167
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1168
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1169
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1170
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1171
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1172
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1173
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1174
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1175
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1176
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1177
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1178
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1179
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1180
+ top?: import("csstype").Property.Top<string | number> | undefined;
1181
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1182
+ transform?: import("csstype").Property.Transform | undefined;
1183
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1184
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1185
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1186
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1187
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1188
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1189
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1190
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
1191
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1192
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1193
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1194
+ visibility?: import("csstype").Property.Visibility | undefined;
1195
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1196
+ widows?: import("csstype").Property.Widows | undefined;
1197
+ width?: import("csstype").Property.Width<string | number> | undefined;
1198
+ willChange?: import("csstype").Property.WillChange | undefined;
1199
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1200
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1201
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1202
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1203
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1204
+ zoom?: import("csstype").Property.Zoom | undefined;
1205
+ all?: import("csstype").Globals | undefined;
1206
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
1207
+ background?: import("csstype").Property.Background<string | number> | undefined;
1208
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1209
+ border?: import("csstype").Property.Border<string | number> | undefined;
1210
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
1211
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1212
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1213
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
1214
+ borderColor?: import("csstype").Property.BorderColor | undefined;
1215
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1216
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
1217
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1218
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1219
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
1220
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1221
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
1222
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1223
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
1224
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
1225
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1226
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
1227
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
1228
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1229
+ font?: import("csstype").Property.Font | undefined;
1230
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
1231
+ grid?: import("csstype").Property.Grid | undefined;
1232
+ gridArea?: import("csstype").Property.GridArea | undefined;
1233
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1234
+ gridRow?: import("csstype").Property.GridRow | undefined;
1235
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1236
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1237
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1238
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
1239
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
1240
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1241
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
1242
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
1243
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
1244
+ overflow?: import("csstype").Property.Overflow | undefined;
1245
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1246
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
1247
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1248
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1249
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
1250
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1251
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
1252
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1253
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1254
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1255
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1256
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1257
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1258
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1259
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1260
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1261
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1262
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1263
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1264
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1265
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1266
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1267
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1268
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1269
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1270
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1271
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1272
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1273
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1274
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1275
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1276
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1277
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1278
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1279
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1280
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1281
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1282
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1283
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1284
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1285
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1286
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1287
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1288
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1289
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1290
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1291
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1292
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1293
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1294
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1295
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1296
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1297
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1298
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1299
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1300
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1301
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1302
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1303
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1304
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1305
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1306
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1307
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1308
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1309
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1310
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1311
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1312
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1313
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1314
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1315
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1316
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1317
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1318
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1319
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1320
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
1321
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1322
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1323
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1324
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1325
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1326
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1327
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1328
+ msOrder?: import("csstype").Property.Order | undefined;
1329
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1330
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1331
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1332
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1333
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1334
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1335
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1336
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1337
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1338
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1339
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1340
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1341
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1342
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1343
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1344
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1345
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1346
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1347
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1348
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1349
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1350
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1351
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1352
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1353
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1354
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1355
+ msTransform?: import("csstype").Property.Transform | undefined;
1356
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1357
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1358
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1359
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1360
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1361
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1362
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1363
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1364
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1365
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1366
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1367
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1368
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1369
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1370
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1371
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1372
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1373
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1374
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1375
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1376
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1377
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1378
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1379
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1380
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1381
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1382
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1383
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1384
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1385
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1386
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1387
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1388
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1389
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1390
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1391
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1392
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1393
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1394
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1395
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1396
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1397
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1398
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1399
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1400
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1401
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1402
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1403
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1404
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1405
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1406
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1407
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1408
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1409
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1410
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1411
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1412
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1413
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1414
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1415
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1416
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1417
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1418
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1419
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1420
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1421
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1422
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1423
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1424
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1425
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1426
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1427
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1428
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1429
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1430
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1431
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1432
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1433
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1434
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1435
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1436
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1437
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1438
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1439
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1440
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1441
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1442
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1443
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1444
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1445
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1446
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1447
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1448
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1449
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1450
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1451
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1452
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1453
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1454
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1455
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1456
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1457
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1458
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1459
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1460
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1461
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1462
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1463
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1464
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1465
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1466
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1467
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1468
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1469
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1470
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1471
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1472
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1473
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1474
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1475
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1476
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1477
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1478
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1479
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1480
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1481
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1482
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1483
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1484
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1485
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1486
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1487
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1488
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1489
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1490
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1491
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1492
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1493
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1494
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1495
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1496
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1497
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1498
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1499
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1500
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1501
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1502
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1503
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1504
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1505
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1506
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1507
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1508
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1509
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1510
+ clip?: import("csstype").Property.Clip | undefined;
1511
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1512
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1513
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1514
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1515
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1516
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1517
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1518
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1519
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1520
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1521
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1522
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1523
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1524
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1525
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1526
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1527
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1528
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1529
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1530
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1531
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1532
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1533
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1534
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1535
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1536
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1537
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1538
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1539
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1540
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1541
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1542
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1543
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1544
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1545
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1546
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1547
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1548
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1549
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1550
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1551
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1552
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1553
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1554
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1555
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1556
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1557
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1558
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1559
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1560
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1561
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1562
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1563
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1564
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1565
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1566
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1567
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1568
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1569
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1570
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1571
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1572
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1573
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1574
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1575
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1576
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1577
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1578
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1579
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1580
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1581
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1582
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1583
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1584
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1585
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1586
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1587
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1588
+ OTransform?: import("csstype").Property.Transform | undefined;
1589
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1590
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1591
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1592
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1593
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1594
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1595
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1596
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1597
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1598
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1599
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1600
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1601
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1602
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1603
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1604
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1605
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1606
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1607
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1608
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1609
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1610
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1611
+ fill?: import("csstype").Property.Fill | undefined;
1612
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1613
+ fillRule?: import("csstype").Property.FillRule | undefined;
1614
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1615
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1616
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1617
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1618
+ marker?: import("csstype").Property.Marker | undefined;
1619
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1620
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1621
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1622
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1623
+ stopColor?: import("csstype").Property.StopColor | undefined;
1624
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1625
+ stroke?: import("csstype").Property.Stroke | undefined;
1626
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1627
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1628
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1629
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1630
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1631
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1632
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1633
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1634
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1635
+ };
1636
+ '&.MuiToolbar-regular': {
1637
+ minHeight: number;
1638
+ height: number;
1639
+ paddingRight: number;
1640
+ };
1641
+ '& .MuiTablePagination-displayedRows': {
1642
+ [x: string]: unknown;
1643
+ '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
1644
+ accentColor?: import("csstype").Property.AccentColor | undefined;
1645
+ alignContent?: import("csstype").Property.AlignContent | undefined;
1646
+ alignItems?: import("csstype").Property.AlignItems | undefined;
1647
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
1648
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
1649
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1650
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1651
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1652
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1653
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1654
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1655
+ animationName?: import("csstype").Property.AnimationName | undefined;
1656
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1657
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1658
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1659
+ appearance?: import("csstype").Property.Appearance | undefined;
1660
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1661
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1662
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1663
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1664
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1665
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1666
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1667
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1668
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1669
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1670
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1671
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1672
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1673
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1674
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
1675
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1676
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1677
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1678
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1679
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1680
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1681
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1682
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1683
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1684
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1685
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1686
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1687
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1688
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1689
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1690
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1691
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1692
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1693
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1694
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1695
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1696
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1697
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1698
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1699
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1700
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1701
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1702
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1703
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1704
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1705
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1706
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1707
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1708
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1709
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1710
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1711
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1712
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1713
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1714
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1715
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1716
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1717
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1718
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1719
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1720
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
1721
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1722
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1723
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1724
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1725
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1726
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1727
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1728
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1729
+ clear?: import("csstype").Property.Clear | undefined;
1730
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1731
+ color?: import("csstype").Property.Color | undefined;
1732
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1733
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1734
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1735
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1736
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1737
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1738
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1739
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1740
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1741
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1742
+ contain?: import("csstype").Property.Contain | undefined;
1743
+ content?: import("csstype").Property.Content | undefined;
1744
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1745
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1746
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1747
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1748
+ cursor?: import("csstype").Property.Cursor | undefined;
1749
+ direction?: import("csstype").Property.Direction | undefined;
1750
+ display?: import("csstype").Property.Display | undefined;
1751
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1752
+ filter?: import("csstype").Property.Filter | undefined;
1753
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1754
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1755
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1756
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1757
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1758
+ float?: import("csstype").Property.Float | undefined;
1759
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1760
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1761
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1762
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1763
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1764
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1765
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1766
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1767
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1768
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1769
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1770
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1771
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1772
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1773
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1774
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1775
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1776
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1777
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1778
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1779
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1780
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1781
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1782
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1783
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1784
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1785
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1786
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1787
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1788
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1789
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1790
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1791
+ height?: import("csstype").Property.Height<string | number> | undefined;
1792
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1793
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1794
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1795
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1796
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1797
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1798
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1799
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1800
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
1801
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1802
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1803
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1804
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1805
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1806
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1807
+ isolation?: import("csstype").Property.Isolation | undefined;
1808
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1809
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1810
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1811
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1812
+ left?: import("csstype").Property.Left<string | number> | undefined;
1813
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1814
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1815
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1816
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1817
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1818
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1819
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1820
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1821
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1822
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1823
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1824
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1825
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1826
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1827
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1828
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1829
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1830
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1831
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1832
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1833
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1834
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1835
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1836
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1837
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1838
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1839
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1840
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1841
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1842
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1843
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1844
+ maskType?: import("csstype").Property.MaskType | undefined;
1845
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1846
+ mathShift?: import("csstype").Property.MathShift | undefined;
1847
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1848
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1849
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1850
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1851
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1852
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1853
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1854
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1855
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1856
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1857
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1858
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1859
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1860
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1861
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1862
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1863
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1864
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1865
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1866
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1867
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1868
+ opacity?: import("csstype").Property.Opacity | undefined;
1869
+ order?: import("csstype").Property.Order | undefined;
1870
+ orphans?: import("csstype").Property.Orphans | undefined;
1871
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1872
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1873
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1874
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1875
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1876
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1877
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1878
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1879
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1880
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1881
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1882
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1883
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1884
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1885
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1886
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1887
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1888
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1889
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1890
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1891
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1892
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1893
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1894
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1895
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1896
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1897
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1898
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1899
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1900
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1901
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1902
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1903
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1904
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1905
+ position?: import("csstype").Property.Position | undefined;
1906
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1907
+ quotes?: import("csstype").Property.Quotes | undefined;
1908
+ resize?: import("csstype").Property.Resize | undefined;
1909
+ right?: import("csstype").Property.Right<string | number> | undefined;
1910
+ rotate?: import("csstype").Property.Rotate | undefined;
1911
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1912
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1913
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1914
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1915
+ scale?: import("csstype").Property.Scale | undefined;
1916
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1917
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1918
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1919
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1920
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1921
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1922
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1923
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1924
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1925
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1926
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1927
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1928
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1929
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1930
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1931
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1932
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1933
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1934
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1935
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1936
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1937
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1938
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1939
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1940
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1941
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1942
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1943
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1944
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1945
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1946
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1947
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1948
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1949
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1950
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1951
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1952
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1953
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1954
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1955
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1956
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1957
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1958
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1959
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1960
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1961
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1962
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1963
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1964
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1965
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1966
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1967
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1968
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1969
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1970
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1971
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1972
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1973
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1974
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1975
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1976
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1977
+ top?: import("csstype").Property.Top<string | number> | undefined;
1978
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1979
+ transform?: import("csstype").Property.Transform | undefined;
1980
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1981
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1982
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1983
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1984
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1985
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1986
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1987
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
1988
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1989
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1990
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1991
+ visibility?: import("csstype").Property.Visibility | undefined;
1992
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1993
+ widows?: import("csstype").Property.Widows | undefined;
1994
+ width?: import("csstype").Property.Width<string | number> | undefined;
1995
+ willChange?: import("csstype").Property.WillChange | undefined;
1996
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1997
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1998
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1999
+ writingMode?: import("csstype").Property.WritingMode | undefined;
2000
+ zIndex?: import("csstype").Property.ZIndex | undefined;
2001
+ zoom?: import("csstype").Property.Zoom | undefined;
2002
+ all?: import("csstype").Globals | undefined;
2003
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
2004
+ background?: import("csstype").Property.Background<string | number> | undefined;
2005
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2006
+ border?: import("csstype").Property.Border<string | number> | undefined;
2007
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2008
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2009
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2010
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2011
+ borderColor?: import("csstype").Property.BorderColor | undefined;
2012
+ borderImage?: import("csstype").Property.BorderImage | undefined;
2013
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2014
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2015
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2016
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2017
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2018
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2019
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
2020
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2021
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2022
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2023
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
2024
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
2025
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
2026
+ font?: import("csstype").Property.Font | undefined;
2027
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
2028
+ grid?: import("csstype").Property.Grid | undefined;
2029
+ gridArea?: import("csstype").Property.GridArea | undefined;
2030
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
2031
+ gridRow?: import("csstype").Property.GridRow | undefined;
2032
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2033
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
2034
+ listStyle?: import("csstype").Property.ListStyle | undefined;
2035
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
2036
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
2037
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
2038
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
2039
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
2040
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
2041
+ overflow?: import("csstype").Property.Overflow | undefined;
2042
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2043
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
2044
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
2045
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2046
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2047
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2048
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
2049
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2050
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2051
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2052
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2053
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2054
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2055
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2056
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2057
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2058
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2059
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2060
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2061
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2062
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2063
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2064
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2065
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2066
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2067
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2068
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2069
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2070
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2071
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2072
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2073
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2074
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2075
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2076
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2077
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2078
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
2079
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2080
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2081
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2082
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
2083
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2084
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2085
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2086
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2087
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2088
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2089
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2090
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2091
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2092
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2093
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2094
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2095
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2096
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2097
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2098
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2099
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2100
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2101
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2102
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2103
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2104
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2105
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2106
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2107
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2108
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2109
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2110
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2111
+ msFilter?: import("csstype").Property.MsFilter | undefined;
2112
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2113
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2114
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2115
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2116
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2117
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
2118
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2119
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2120
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2121
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2122
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
2123
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2124
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
2125
+ msOrder?: import("csstype").Property.Order | undefined;
2126
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2127
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
2128
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
2129
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2130
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2131
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2132
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2133
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2134
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2135
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2136
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2137
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2138
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2139
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2140
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2141
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2142
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2143
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2144
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2145
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2146
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2147
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2148
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2149
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2150
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
2151
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2152
+ msTransform?: import("csstype").Property.Transform | undefined;
2153
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2154
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2155
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2156
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2157
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2158
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2159
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
2160
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2161
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2162
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2163
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
2164
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2165
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2166
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2167
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2168
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2169
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2170
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2171
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2172
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2173
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2174
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2175
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2176
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2177
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2178
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2179
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2180
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2181
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2182
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2183
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2184
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2185
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2186
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2187
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2188
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2189
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2190
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2191
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2192
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2193
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2194
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2195
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2196
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2197
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2198
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2199
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2200
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2201
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
2202
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2203
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2204
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2205
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2206
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
2207
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2208
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
2209
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2210
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2211
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2212
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
2213
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
2214
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
2215
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
2216
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
2217
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2218
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2219
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
2220
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2221
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2222
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2223
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
2224
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2225
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
2226
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
2227
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
2228
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
2229
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
2230
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
2231
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
2232
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
2233
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2234
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2235
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
2236
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2237
+ WebkitOrder?: import("csstype").Property.Order | undefined;
2238
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2239
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2240
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2241
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2242
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2243
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2244
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
2245
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2246
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2247
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2248
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
2249
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2250
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2251
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2252
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2253
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2254
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2255
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2256
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
2257
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
2258
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2259
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2260
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
2261
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2262
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
2263
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
2264
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2265
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2266
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2267
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2268
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2269
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2270
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
2271
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
2272
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
2273
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2274
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
2275
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2276
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
2277
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2278
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
2279
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
2280
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
2281
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
2282
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
2283
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
2284
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2285
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2286
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
2287
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
2288
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2289
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2290
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
2291
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
2292
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
2293
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
2294
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
2295
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2296
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
2297
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2298
+ azimuth?: import("csstype").Property.Azimuth | undefined;
2299
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
2300
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
2301
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
2302
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2303
+ boxLines?: import("csstype").Property.BoxLines | undefined;
2304
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2305
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
2306
+ boxPack?: import("csstype").Property.BoxPack | undefined;
2307
+ clip?: import("csstype").Property.Clip | undefined;
2308
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
2309
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
2310
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
2311
+ imeMode?: import("csstype").Property.ImeMode | undefined;
2312
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2313
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2314
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2315
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2316
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2317
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2318
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
2319
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
2320
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2321
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2322
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
2323
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
2324
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2325
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2326
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2327
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2328
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
2329
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2330
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2331
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
2332
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
2333
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
2334
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
2335
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2336
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
2337
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2338
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2339
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
2340
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2341
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2342
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2343
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2344
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2345
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2346
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2347
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2348
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2349
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2350
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
2351
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2352
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
2353
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2354
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
2355
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
2356
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
2357
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
2358
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2359
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2360
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2361
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2362
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2363
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2364
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2365
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2366
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2367
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2368
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
2369
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
2370
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2371
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2372
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2373
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2374
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2375
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2376
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
2377
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2378
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2379
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2380
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
2381
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
2382
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2383
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2384
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2385
+ OTransform?: import("csstype").Property.Transform | undefined;
2386
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2387
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2388
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2389
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2390
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2391
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2392
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2393
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2394
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2395
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2396
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
2397
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2398
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2399
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
2400
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2401
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2402
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
2403
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
2404
+ clipRule?: import("csstype").Property.ClipRule | undefined;
2405
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
2406
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
2407
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
2408
+ fill?: import("csstype").Property.Fill | undefined;
2409
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
2410
+ fillRule?: import("csstype").Property.FillRule | undefined;
2411
+ floodColor?: import("csstype").Property.FloodColor | undefined;
2412
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
2413
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
2414
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
2415
+ marker?: import("csstype").Property.Marker | undefined;
2416
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
2417
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
2418
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
2419
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2420
+ stopColor?: import("csstype").Property.StopColor | undefined;
2421
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2422
+ stroke?: import("csstype").Property.Stroke | undefined;
2423
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2424
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2425
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2426
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2427
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2428
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2429
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2430
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
2431
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2432
+ };
2433
+ };
2434
+ selectLabel: {
2435
+ [x: string]: unknown;
2436
+ '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
2437
+ accentColor?: import("csstype").Property.AccentColor | undefined;
2438
+ alignContent?: import("csstype").Property.AlignContent | undefined;
2439
+ alignItems?: import("csstype").Property.AlignItems | undefined;
2440
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
2441
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
2442
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
2443
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2444
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
2445
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2446
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2447
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2448
+ animationName?: import("csstype").Property.AnimationName | undefined;
2449
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2450
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
2451
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2452
+ appearance?: import("csstype").Property.Appearance | undefined;
2453
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
2454
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2455
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2456
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
2457
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
2458
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2459
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
2460
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
2461
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2462
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
2463
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
2464
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
2465
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2466
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
2467
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
2468
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
2469
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
2470
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
2471
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
2472
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
2473
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
2474
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
2475
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
2476
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2477
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
2478
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2479
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2480
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
2481
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
2482
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
2483
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
2484
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
2485
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
2486
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
2487
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2488
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
2489
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
2490
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
2491
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2492
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2493
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2494
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2495
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2496
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
2497
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
2498
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2499
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
2500
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
2501
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
2502
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
2503
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
2504
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
2505
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
2506
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
2507
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
2508
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
2509
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2510
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2511
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
2512
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
2513
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
2514
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2515
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
2516
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
2517
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
2518
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
2519
+ breakInside?: import("csstype").Property.BreakInside | undefined;
2520
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
2521
+ caretColor?: import("csstype").Property.CaretColor | undefined;
2522
+ clear?: import("csstype").Property.Clear | undefined;
2523
+ clipPath?: import("csstype").Property.ClipPath | undefined;
2524
+ color?: import("csstype").Property.Color | undefined;
2525
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2526
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
2527
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
2528
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
2529
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
2530
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2531
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2532
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2533
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
2534
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2535
+ contain?: import("csstype").Property.Contain | undefined;
2536
+ content?: import("csstype").Property.Content | undefined;
2537
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
2538
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
2539
+ counterReset?: import("csstype").Property.CounterReset | undefined;
2540
+ counterSet?: import("csstype").Property.CounterSet | undefined;
2541
+ cursor?: import("csstype").Property.Cursor | undefined;
2542
+ direction?: import("csstype").Property.Direction | undefined;
2543
+ display?: import("csstype").Property.Display | undefined;
2544
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
2545
+ filter?: import("csstype").Property.Filter | undefined;
2546
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2547
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
2548
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
2549
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
2550
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
2551
+ float?: import("csstype").Property.Float | undefined;
2552
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
2553
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2554
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
2555
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2556
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
2557
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
2558
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
2559
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
2560
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
2561
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
2562
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
2563
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
2564
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
2565
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
2566
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
2567
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2568
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
2569
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
2570
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
2571
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
2572
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
2573
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
2574
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
2575
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
2576
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
2577
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
2578
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
2579
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
2580
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
2581
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
2582
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
2583
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
2584
+ height?: import("csstype").Property.Height<string | number> | undefined;
2585
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2586
+ hyphens?: import("csstype").Property.Hyphens | undefined;
2587
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
2588
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
2589
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
2590
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
2591
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
2592
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
2593
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
2594
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2595
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2596
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2597
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2598
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2599
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2600
+ isolation?: import("csstype").Property.Isolation | undefined;
2601
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
2602
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
2603
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
2604
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
2605
+ left?: import("csstype").Property.Left<string | number> | undefined;
2606
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
2607
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
2608
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
2609
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
2610
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
2611
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
2612
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
2613
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2614
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
2615
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
2616
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
2617
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2618
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2619
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2620
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
2621
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
2622
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
2623
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
2624
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2625
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2626
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2627
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
2628
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2629
+ maskClip?: import("csstype").Property.MaskClip | undefined;
2630
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
2631
+ maskImage?: import("csstype").Property.MaskImage | undefined;
2632
+ maskMode?: import("csstype").Property.MaskMode | undefined;
2633
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
2634
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
2635
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
2636
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
2637
+ maskType?: import("csstype").Property.MaskType | undefined;
2638
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
2639
+ mathShift?: import("csstype").Property.MathShift | undefined;
2640
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
2641
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
2642
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
2643
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2644
+ maxLines?: import("csstype").Property.MaxLines | undefined;
2645
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
2646
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
2647
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
2648
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
2649
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
2650
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
2651
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2652
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
2653
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
2654
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
2655
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2656
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
2657
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2658
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
2659
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
2660
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
2661
+ opacity?: import("csstype").Property.Opacity | undefined;
2662
+ order?: import("csstype").Property.Order | undefined;
2663
+ orphans?: import("csstype").Property.Orphans | undefined;
2664
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
2665
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
2666
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2667
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2668
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
2669
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
2670
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
2671
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
2672
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
2673
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
2674
+ overflowX?: import("csstype").Property.OverflowX | undefined;
2675
+ overflowY?: import("csstype").Property.OverflowY | undefined;
2676
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
2677
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
2678
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
2679
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
2680
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2681
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
2682
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
2683
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
2684
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2685
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2686
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2687
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
2688
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
2689
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
2690
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
2691
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
2692
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
2693
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
2694
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
2695
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2696
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
2697
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
2698
+ position?: import("csstype").Property.Position | undefined;
2699
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2700
+ quotes?: import("csstype").Property.Quotes | undefined;
2701
+ resize?: import("csstype").Property.Resize | undefined;
2702
+ right?: import("csstype").Property.Right<string | number> | undefined;
2703
+ rotate?: import("csstype").Property.Rotate | undefined;
2704
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
2705
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
2706
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
2707
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
2708
+ scale?: import("csstype").Property.Scale | undefined;
2709
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
2710
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2711
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2712
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
2713
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
2714
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2715
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2716
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
2717
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
2718
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2719
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2720
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2721
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2722
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2723
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
2724
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
2725
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
2726
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2727
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
2728
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
2729
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
2730
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
2731
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
2732
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
2733
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2734
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2735
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2736
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2737
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2738
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
2739
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2740
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
2741
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
2742
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
2743
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
2744
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2745
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
2746
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2747
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
2748
+ textAlign?: import("csstype").Property.TextAlign | undefined;
2749
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2750
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
2751
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2752
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2753
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2754
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
2755
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2756
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2757
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2758
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2759
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2760
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2761
+ textJustify?: import("csstype").Property.TextJustify | undefined;
2762
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
2763
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
2764
+ textRendering?: import("csstype").Property.TextRendering | undefined;
2765
+ textShadow?: import("csstype").Property.TextShadow | undefined;
2766
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2767
+ textTransform?: import("csstype").Property.TextTransform | undefined;
2768
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2769
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2770
+ top?: import("csstype").Property.Top<string | number> | undefined;
2771
+ touchAction?: import("csstype").Property.TouchAction | undefined;
2772
+ transform?: import("csstype").Property.Transform | undefined;
2773
+ transformBox?: import("csstype").Property.TransformBox | undefined;
2774
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2775
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
2776
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2777
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2778
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2779
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2780
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
2781
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2782
+ userSelect?: import("csstype").Property.UserSelect | undefined;
2783
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2784
+ visibility?: import("csstype").Property.Visibility | undefined;
2785
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2786
+ widows?: import("csstype").Property.Widows | undefined;
2787
+ width?: import("csstype").Property.Width<string | number> | undefined;
2788
+ willChange?: import("csstype").Property.WillChange | undefined;
2789
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
2790
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2791
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
2792
+ writingMode?: import("csstype").Property.WritingMode | undefined;
2793
+ zIndex?: import("csstype").Property.ZIndex | undefined;
2794
+ zoom?: import("csstype").Property.Zoom | undefined;
2795
+ all?: import("csstype").Globals | undefined;
2796
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
2797
+ background?: import("csstype").Property.Background<string | number> | undefined;
2798
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2799
+ border?: import("csstype").Property.Border<string | number> | undefined;
2800
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2801
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2802
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2803
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2804
+ borderColor?: import("csstype").Property.BorderColor | undefined;
2805
+ borderImage?: import("csstype").Property.BorderImage | undefined;
2806
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2807
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2808
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2809
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2810
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2811
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2812
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
2813
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2814
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2815
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2816
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
2817
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
2818
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
2819
+ font?: import("csstype").Property.Font | undefined;
2820
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
2821
+ grid?: import("csstype").Property.Grid | undefined;
2822
+ gridArea?: import("csstype").Property.GridArea | undefined;
2823
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
2824
+ gridRow?: import("csstype").Property.GridRow | undefined;
2825
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2826
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
2827
+ listStyle?: import("csstype").Property.ListStyle | undefined;
2828
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
2829
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
2830
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
2831
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
2832
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
2833
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
2834
+ overflow?: import("csstype").Property.Overflow | undefined;
2835
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2836
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
2837
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
2838
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2839
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2840
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2841
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
2842
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2843
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2844
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2845
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2846
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2847
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2848
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2849
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2850
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2851
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2852
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2853
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2854
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2855
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2856
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2857
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2858
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2859
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2860
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2861
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2862
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2863
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2864
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2865
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2866
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2867
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2868
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2869
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2870
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2871
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
2872
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2873
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2874
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2875
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
2876
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2877
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2878
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2879
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2880
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2881
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2882
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2883
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2884
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2885
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2886
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2887
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2888
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2889
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2890
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2891
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2892
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2893
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2894
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2895
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2896
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2897
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2898
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2899
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2900
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2901
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2902
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2903
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2904
+ msFilter?: import("csstype").Property.MsFilter | undefined;
2905
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2906
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2907
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2908
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2909
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2910
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
2911
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2912
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2913
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2914
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2915
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
2916
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2917
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
2918
+ msOrder?: import("csstype").Property.Order | undefined;
2919
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2920
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
2921
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
2922
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2923
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2924
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2925
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2926
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2927
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2928
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2929
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2930
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2931
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2932
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2933
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2934
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2935
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2936
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2937
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2938
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2939
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2940
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2941
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2942
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2943
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
2944
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2945
+ msTransform?: import("csstype").Property.Transform | undefined;
2946
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2947
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2948
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2949
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2950
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2951
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2952
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
2953
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2954
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2955
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2956
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
2957
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2958
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2959
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2960
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2961
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2962
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2963
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2964
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2965
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2966
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2967
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2968
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2969
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2970
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2971
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2972
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2973
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2974
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2975
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2976
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2977
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2978
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2979
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2980
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2981
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2982
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2983
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2984
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2985
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2986
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2987
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2988
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2989
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2990
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2991
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2992
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2993
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2994
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
2995
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2996
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2997
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2998
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2999
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
3000
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3001
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
3002
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
3003
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
3004
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
3005
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
3006
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
3007
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
3008
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
3009
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
3010
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3011
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3012
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
3013
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3014
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
3015
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
3016
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
3017
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3018
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
3019
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
3020
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
3021
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
3022
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
3023
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
3024
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
3025
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
3026
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3027
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3028
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
3029
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3030
+ WebkitOrder?: import("csstype").Property.Order | undefined;
3031
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3032
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3033
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3034
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
3035
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3036
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
3037
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
3038
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
3039
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3040
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
3041
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
3042
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3043
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3044
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
3045
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3046
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
3047
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
3048
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
3049
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
3050
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
3051
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3052
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
3053
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
3054
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
3055
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
3056
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
3057
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3058
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
3059
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3060
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3061
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3062
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3063
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
3064
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
3065
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
3066
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3067
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
3068
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3069
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
3070
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3071
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
3072
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
3073
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
3074
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
3075
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
3076
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
3077
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3078
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3079
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
3080
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
3081
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3082
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3083
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
3084
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
3085
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
3086
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
3087
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
3088
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
3089
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
3090
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3091
+ azimuth?: import("csstype").Property.Azimuth | undefined;
3092
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
3093
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
3094
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
3095
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3096
+ boxLines?: import("csstype").Property.BoxLines | undefined;
3097
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3098
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
3099
+ boxPack?: import("csstype").Property.BoxPack | undefined;
3100
+ clip?: import("csstype").Property.Clip | undefined;
3101
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
3102
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
3103
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
3104
+ imeMode?: import("csstype").Property.ImeMode | undefined;
3105
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
3106
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3107
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3108
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
3109
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3110
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3111
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
3112
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
3113
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
3114
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
3115
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
3116
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
3117
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3118
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3119
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3120
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3121
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
3122
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3123
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3124
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
3125
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
3126
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
3127
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
3128
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3129
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
3130
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3131
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3132
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
3133
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3134
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3135
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3136
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3137
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3138
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3139
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3140
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3141
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3142
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3143
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
3144
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
3145
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
3146
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
3147
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
3148
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
3149
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
3150
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
3151
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
3152
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
3153
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
3154
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
3155
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
3156
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3157
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
3158
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3159
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3160
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3161
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
3162
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
3163
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3164
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3165
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3166
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3167
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3168
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3169
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
3170
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3171
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3172
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3173
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
3174
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
3175
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3176
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3177
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
3178
+ OTransform?: import("csstype").Property.Transform | undefined;
3179
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3180
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3181
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3182
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3183
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3184
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3185
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3186
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3187
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3188
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3189
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
3190
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3191
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3192
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
3193
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
3194
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
3195
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
3196
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
3197
+ clipRule?: import("csstype").Property.ClipRule | undefined;
3198
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
3199
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
3200
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
3201
+ fill?: import("csstype").Property.Fill | undefined;
3202
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
3203
+ fillRule?: import("csstype").Property.FillRule | undefined;
3204
+ floodColor?: import("csstype").Property.FloodColor | undefined;
3205
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
3206
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
3207
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
3208
+ marker?: import("csstype").Property.Marker | undefined;
3209
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
3210
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
3211
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
3212
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
3213
+ stopColor?: import("csstype").Property.StopColor | undefined;
3214
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
3215
+ stroke?: import("csstype").Property.Stroke | undefined;
3216
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
3217
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
3218
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
3219
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
3220
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
3221
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
3222
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
3223
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
3224
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
3225
+ };
3226
+ select: {
3227
+ paddingBottom: number;
3228
+ '&:focus': {
3229
+ borderRadius: number;
3230
+ };
3231
+ };
3232
+ selectIcon: {
3233
+ width: number;
3234
+ height: number;
3235
+ };
3236
+ };
3237
+ };
3238
+ };