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