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