@mui/x-charts 7.0.0-beta.0 → 7.0.0-beta.1

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 (185) hide show
  1. package/BarChart/BarChart.d.ts +2 -1
  2. package/BarChart/BarChart.js +23 -4
  3. package/BarChart/BarElement.d.ts +1 -1
  4. package/BarChart/BarElement.js +6 -3
  5. package/BarChart/BarPlot.d.ts +8 -1
  6. package/BarChart/BarPlot.js +19 -5
  7. package/BarChart/formatter.js +1 -1
  8. package/CHANGELOG.md +247 -0
  9. package/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.d.ts +20 -0
  10. package/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +83 -0
  11. package/ChartsOnAxisClickHandler/index.d.ts +1 -0
  12. package/ChartsOnAxisClickHandler/index.js +16 -0
  13. package/ChartsOnAxisClickHandler/package.json +6 -0
  14. package/ChartsReferenceLine/ChartsXReferenceLine.js +1 -1
  15. package/ChartsReferenceLine/ChartsYReferenceLine.js +1 -1
  16. package/ChartsTooltip/ChartsAxisTooltipContent.js +6 -5
  17. package/ChartsTooltip/DefaultChartsAxisTooltipContent.js +6 -4
  18. package/ChartsTooltip/utils.d.ts +3 -1
  19. package/ChartsTooltip/utils.js +8 -0
  20. package/ChartsVoronoiHandler/ChartsVoronoiHandler.d.ts +7 -0
  21. package/ChartsVoronoiHandler/ChartsVoronoiHandler.js +92 -44
  22. package/LineChart/AnimatedArea.d.ts +1361 -0
  23. package/LineChart/AnimatedArea.js +111 -0
  24. package/LineChart/AnimatedLine.d.ts +1361 -0
  25. package/LineChart/AnimatedLine.js +113 -0
  26. package/LineChart/AreaElement.d.ts +17 -17
  27. package/LineChart/AreaElement.js +17 -34
  28. package/LineChart/AreaPlot.d.ts +12 -7
  29. package/LineChart/AreaPlot.js +91 -58
  30. package/LineChart/LineChart.d.ts +13 -4
  31. package/LineChart/LineChart.js +35 -6
  32. package/LineChart/LineElement.d.ts +17 -17
  33. package/LineChart/LineElement.js +16 -36
  34. package/LineChart/LineHighlightElement.js +3 -2
  35. package/LineChart/LinePlot.d.ts +12 -7
  36. package/LineChart/LinePlot.js +89 -56
  37. package/LineChart/MarkElement.d.ts +5 -2
  38. package/LineChart/MarkElement.js +26 -13
  39. package/LineChart/MarkPlot.d.ts +8 -1
  40. package/LineChart/MarkPlot.js +80 -51
  41. package/LineChart/formatter.js +1 -1
  42. package/LineChart/index.d.ts +2 -0
  43. package/LineChart/index.js +22 -0
  44. package/PieChart/PieArcLabelPlot.d.ts +1 -1
  45. package/PieChart/PieArcLabelPlot.js +1 -1
  46. package/PieChart/PieArcPlot.d.ts +2 -2
  47. package/PieChart/PieArcPlot.js +6 -6
  48. package/PieChart/PieChart.d.ts +1 -1
  49. package/PieChart/PieChart.js +4 -4
  50. package/PieChart/PiePlot.d.ts +1 -1
  51. package/PieChart/PiePlot.js +4 -4
  52. package/ScatterChart/Scatter.d.ts +7 -1
  53. package/ScatterChart/Scatter.js +17 -3
  54. package/ScatterChart/ScatterChart.d.ts +8 -2
  55. package/ScatterChart/ScatterChart.js +11 -2
  56. package/ScatterChart/ScatterPlot.d.ts +1 -1
  57. package/ScatterChart/ScatterPlot.js +10 -2
  58. package/SparkLineChart/SparkLineChart.js +2 -0
  59. package/context/DrawingProvider.d.ts +6 -1
  60. package/context/DrawingProvider.js +9 -2
  61. package/context/InteractionProvider.d.ts +3 -3
  62. package/esm/BarChart/BarChart.js +23 -4
  63. package/esm/BarChart/BarElement.js +6 -3
  64. package/esm/BarChart/BarPlot.js +19 -5
  65. package/esm/BarChart/formatter.js +1 -1
  66. package/esm/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +77 -0
  67. package/esm/ChartsOnAxisClickHandler/index.js +1 -0
  68. package/esm/ChartsReferenceLine/ChartsXReferenceLine.js +1 -1
  69. package/esm/ChartsReferenceLine/ChartsYReferenceLine.js +1 -1
  70. package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +6 -5
  71. package/esm/ChartsTooltip/DefaultChartsAxisTooltipContent.js +7 -4
  72. package/esm/ChartsTooltip/utils.js +6 -0
  73. package/esm/ChartsVoronoiHandler/ChartsVoronoiHandler.js +92 -44
  74. package/esm/LineChart/AnimatedArea.js +103 -0
  75. package/esm/LineChart/AnimatedLine.js +105 -0
  76. package/esm/LineChart/AreaElement.js +16 -33
  77. package/esm/LineChart/AreaPlot.js +92 -59
  78. package/esm/LineChart/LineChart.js +35 -6
  79. package/esm/LineChart/LineElement.js +16 -35
  80. package/esm/LineChart/LineHighlightElement.js +3 -2
  81. package/esm/LineChart/LinePlot.js +90 -57
  82. package/esm/LineChart/MarkElement.js +26 -13
  83. package/esm/LineChart/MarkPlot.js +80 -51
  84. package/esm/LineChart/formatter.js +1 -1
  85. package/esm/LineChart/index.js +2 -0
  86. package/esm/PieChart/PieArcLabelPlot.js +1 -1
  87. package/esm/PieChart/PieArcPlot.js +6 -6
  88. package/esm/PieChart/PieChart.js +4 -4
  89. package/esm/PieChart/PiePlot.js +4 -4
  90. package/esm/ScatterChart/Scatter.js +17 -3
  91. package/esm/ScatterChart/ScatterChart.js +11 -2
  92. package/esm/ScatterChart/ScatterPlot.js +10 -2
  93. package/esm/SparkLineChart/SparkLineChart.js +2 -0
  94. package/esm/context/DrawingProvider.js +9 -2
  95. package/esm/hooks/useDrawingArea.js +7 -3
  96. package/esm/index.js +1 -0
  97. package/esm/internals/geometry.js +1 -1
  98. package/esm/internals/useAnimatedPath.js +29 -0
  99. package/esm/internals/utils.js +7 -0
  100. package/hooks/useDrawingArea.d.ts +2 -0
  101. package/hooks/useDrawingArea.js +7 -3
  102. package/index.d.ts +1 -0
  103. package/index.js +12 -1
  104. package/internals/geometry.js +1 -1
  105. package/internals/useAnimatedPath.d.ts +1 -0
  106. package/internals/useAnimatedPath.js +38 -0
  107. package/internals/utils.d.ts +4 -0
  108. package/internals/utils.js +8 -0
  109. package/legacy/BarChart/BarChart.js +23 -4
  110. package/legacy/BarChart/BarElement.js +5 -2
  111. package/legacy/BarChart/BarPlot.js +18 -4
  112. package/legacy/BarChart/formatter.js +1 -1
  113. package/legacy/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +75 -0
  114. package/legacy/ChartsOnAxisClickHandler/index.js +1 -0
  115. package/legacy/ChartsReferenceLine/ChartsXReferenceLine.js +1 -1
  116. package/legacy/ChartsReferenceLine/ChartsYReferenceLine.js +1 -1
  117. package/legacy/ChartsTooltip/ChartsAxisTooltipContent.js +6 -7
  118. package/legacy/ChartsTooltip/DefaultChartsAxisTooltipContent.js +7 -4
  119. package/legacy/ChartsTooltip/utils.js +6 -0
  120. package/legacy/ChartsVoronoiHandler/ChartsVoronoiHandler.js +88 -44
  121. package/legacy/LineChart/AnimatedArea.js +102 -0
  122. package/legacy/LineChart/AnimatedLine.js +104 -0
  123. package/legacy/LineChart/AreaElement.js +15 -35
  124. package/legacy/LineChart/AreaPlot.js +102 -66
  125. package/legacy/LineChart/LineChart.js +35 -6
  126. package/legacy/LineChart/LineElement.js +15 -37
  127. package/legacy/LineChart/LineHighlightElement.js +3 -2
  128. package/legacy/LineChart/LinePlot.js +97 -63
  129. package/legacy/LineChart/MarkElement.js +29 -12
  130. package/legacy/LineChart/MarkPlot.js +83 -53
  131. package/legacy/LineChart/formatter.js +1 -1
  132. package/legacy/LineChart/index.js +2 -0
  133. package/legacy/PieChart/PieArcLabelPlot.js +1 -1
  134. package/legacy/PieChart/PieArcPlot.js +6 -6
  135. package/legacy/PieChart/PieChart.js +4 -4
  136. package/legacy/PieChart/PiePlot.js +4 -4
  137. package/legacy/ScatterChart/Scatter.js +19 -3
  138. package/legacy/ScatterChart/ScatterChart.js +11 -2
  139. package/legacy/ScatterChart/ScatterPlot.js +10 -2
  140. package/legacy/SparkLineChart/SparkLineChart.js +2 -0
  141. package/legacy/context/DrawingProvider.js +11 -2
  142. package/legacy/hooks/useDrawingArea.js +7 -3
  143. package/legacy/index.js +2 -1
  144. package/legacy/internals/geometry.js +1 -1
  145. package/legacy/internals/useAnimatedPath.js +32 -0
  146. package/legacy/internals/utils.js +7 -0
  147. package/modern/BarChart/BarChart.js +23 -4
  148. package/modern/BarChart/BarElement.js +6 -3
  149. package/modern/BarChart/BarPlot.js +19 -5
  150. package/modern/BarChart/formatter.js +1 -1
  151. package/modern/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +75 -0
  152. package/modern/ChartsOnAxisClickHandler/index.js +1 -0
  153. package/modern/ChartsReferenceLine/ChartsXReferenceLine.js +1 -1
  154. package/modern/ChartsReferenceLine/ChartsYReferenceLine.js +1 -1
  155. package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +6 -5
  156. package/modern/ChartsTooltip/DefaultChartsAxisTooltipContent.js +6 -4
  157. package/modern/ChartsTooltip/utils.js +6 -0
  158. package/modern/ChartsVoronoiHandler/ChartsVoronoiHandler.js +92 -44
  159. package/modern/LineChart/AnimatedArea.js +103 -0
  160. package/modern/LineChart/AnimatedLine.js +105 -0
  161. package/modern/LineChart/AreaElement.js +16 -33
  162. package/modern/LineChart/AreaPlot.js +91 -58
  163. package/modern/LineChart/LineChart.js +35 -6
  164. package/modern/LineChart/LineElement.js +16 -35
  165. package/modern/LineChart/LineHighlightElement.js +3 -2
  166. package/modern/LineChart/LinePlot.js +89 -56
  167. package/modern/LineChart/MarkElement.js +26 -13
  168. package/modern/LineChart/MarkPlot.js +80 -51
  169. package/modern/LineChart/formatter.js +1 -1
  170. package/modern/LineChart/index.js +2 -0
  171. package/modern/PieChart/PieArcLabelPlot.js +1 -1
  172. package/modern/PieChart/PieArcPlot.js +6 -6
  173. package/modern/PieChart/PieChart.js +4 -4
  174. package/modern/PieChart/PiePlot.js +4 -4
  175. package/modern/ScatterChart/Scatter.js +17 -3
  176. package/modern/ScatterChart/ScatterChart.js +11 -2
  177. package/modern/ScatterChart/ScatterPlot.js +10 -2
  178. package/modern/SparkLineChart/SparkLineChart.js +2 -0
  179. package/modern/context/DrawingProvider.js +9 -2
  180. package/modern/hooks/useDrawingArea.js +7 -3
  181. package/modern/index.js +2 -1
  182. package/modern/internals/geometry.js +1 -1
  183. package/modern/internals/useAnimatedPath.js +29 -0
  184. package/modern/internals/utils.js +7 -0
  185. package/package.json +6 -5
@@ -0,0 +1,1361 @@
1
+ import * as React from 'react';
2
+ import type { AreaElementOwnerState } from './AreaElement';
3
+ export declare const AreaElementPath: import("@emotion/styled").StyledComponent<Pick<import("@react-spring/web").AnimatedProps<{
4
+ string?: string | number | undefined;
5
+ end?: string | number | undefined;
6
+ accumulate?: "none" | "sum" | undefined;
7
+ local?: string | number | undefined;
8
+ color?: string | undefined;
9
+ clip?: string | number | undefined;
10
+ style?: {
11
+ accentColor?: import("csstype").Property.AccentColor | undefined;
12
+ alignContent?: import("csstype").Property.AlignContent | undefined;
13
+ alignItems?: import("csstype").Property.AlignItems | undefined;
14
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
15
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
16
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
17
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
18
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
19
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
20
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
21
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
22
+ animationName?: import("csstype").Property.AnimationName | undefined;
23
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
24
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
25
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
26
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
27
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
28
+ appearance?: import("csstype").Property.Appearance | undefined;
29
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
30
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
31
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
32
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
33
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
34
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
35
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
36
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
37
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
38
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
39
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
40
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
41
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
42
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
43
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
44
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
45
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
46
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
47
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
48
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
49
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
50
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
51
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
52
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
53
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
54
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
55
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
56
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
57
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
58
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
59
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
60
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
61
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
62
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
63
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
64
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
65
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
66
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
67
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
68
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
69
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
70
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
71
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
72
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
73
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
74
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
75
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
76
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
77
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
78
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
79
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
80
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
81
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
82
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
83
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
84
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
85
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
86
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
87
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
88
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
89
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
90
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
91
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
92
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
93
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
94
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
95
+ breakInside?: import("csstype").Property.BreakInside | undefined;
96
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
97
+ caretColor?: import("csstype").Property.CaretColor | undefined;
98
+ caretShape?: import("csstype").Property.CaretShape | undefined;
99
+ clear?: import("csstype").Property.Clear | undefined;
100
+ clipPath?: import("csstype").Property.ClipPath | undefined;
101
+ color?: import("csstype").Property.Color | undefined;
102
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
103
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
104
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
105
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
106
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
107
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
108
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
109
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
110
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
111
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
112
+ contain?: import("csstype").Property.Contain | undefined;
113
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
114
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
115
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
116
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
117
+ containerName?: import("csstype").Property.ContainerName | undefined;
118
+ containerType?: import("csstype").Property.ContainerType | undefined;
119
+ content?: import("csstype").Property.Content | undefined;
120
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
121
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
122
+ counterReset?: import("csstype").Property.CounterReset | undefined;
123
+ counterSet?: import("csstype").Property.CounterSet | undefined;
124
+ cursor?: import("csstype").Property.Cursor | undefined;
125
+ direction?: import("csstype").Property.Direction | undefined;
126
+ display?: import("csstype").Property.Display | undefined;
127
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
128
+ filter?: import("csstype").Property.Filter | undefined;
129
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
130
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
131
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
132
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
133
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
134
+ float?: import("csstype").Property.Float | undefined;
135
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
136
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
137
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
138
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
139
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
140
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
141
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
142
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
143
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
144
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
145
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
146
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
147
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
148
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
149
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
150
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | 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
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
156
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
157
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
158
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
159
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
160
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
161
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
162
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
163
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
164
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
165
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
166
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
167
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
168
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
169
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
170
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
171
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
172
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
173
+ height?: import("csstype").Property.Height<string | number> | undefined;
174
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
175
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
176
+ hyphens?: import("csstype").Property.Hyphens | undefined;
177
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
178
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
179
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
180
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
181
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
182
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
183
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
184
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
185
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
186
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
187
+ isolation?: import("csstype").Property.Isolation | undefined;
188
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
189
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
190
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
191
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
192
+ left?: import("csstype").Property.Left<string | number> | undefined;
193
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
194
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
195
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
196
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
197
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
198
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
199
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
200
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
201
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
202
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
203
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
204
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
205
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
206
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
207
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
208
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
209
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
210
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
211
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
212
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
213
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
214
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
215
+ maskClip?: import("csstype").Property.MaskClip | undefined;
216
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
217
+ maskImage?: import("csstype").Property.MaskImage | undefined;
218
+ maskMode?: import("csstype").Property.MaskMode | undefined;
219
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
220
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
221
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
222
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
223
+ maskType?: import("csstype").Property.MaskType | undefined;
224
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
225
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
226
+ mathShift?: import("csstype").Property.MathShift | undefined;
227
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
228
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
229
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
230
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
231
+ maxLines?: import("csstype").Property.MaxLines | undefined;
232
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
233
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
234
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
235
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
236
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
237
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
238
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
239
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
240
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
241
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
242
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
243
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
244
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
245
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
246
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | 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
+ overlay?: import("csstype").Property.Overlay | undefined;
265
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
266
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
267
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
268
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | 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
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
273
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
274
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
275
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
276
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
277
+ page?: import("csstype").Property.Page | 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
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
285
+ position?: import("csstype").Property.Position | undefined;
286
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
287
+ quotes?: import("csstype").Property.Quotes | undefined;
288
+ resize?: import("csstype").Property.Resize | undefined;
289
+ right?: import("csstype").Property.Right<string | number> | undefined;
290
+ rotate?: (string | number) | undefined;
291
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
292
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
293
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
294
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
295
+ scale?: string | number | readonly [number, number] | undefined;
296
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
297
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
298
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
299
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
300
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
301
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
302
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
303
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
304
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
305
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
306
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
307
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
308
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
309
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
310
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
311
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
312
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
313
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
314
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
315
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
316
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
317
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
318
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
319
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
320
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
321
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
322
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
323
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
324
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
325
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
326
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
327
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
328
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
329
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
330
+ textAlign?: import("csstype").Property.TextAlign | undefined;
331
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
332
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
333
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
334
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
335
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
336
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
337
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
338
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
339
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
340
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
341
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
342
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
343
+ textJustify?: import("csstype").Property.TextJustify | undefined;
344
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
345
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
346
+ textRendering?: import("csstype").Property.TextRendering | undefined;
347
+ textShadow?: import("csstype").Property.TextShadow | undefined;
348
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
349
+ textTransform?: import("csstype").Property.TextTransform | undefined;
350
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
351
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
352
+ textWrap?: import("csstype").Property.TextWrap | undefined;
353
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
354
+ top?: import("csstype").Property.Top<string | number> | undefined;
355
+ touchAction?: import("csstype").Property.TouchAction | undefined;
356
+ transform?: string | undefined;
357
+ transformBox?: import("csstype").Property.TransformBox | undefined;
358
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
359
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
360
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
361
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
362
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
363
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
364
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
365
+ translate?: (string | number) | readonly [string | number, string | number] | undefined;
366
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
367
+ userSelect?: import("csstype").Property.UserSelect | undefined;
368
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
369
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
370
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
371
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
372
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
373
+ visibility?: import("csstype").Property.Visibility | undefined;
374
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
375
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
376
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
377
+ widows?: import("csstype").Property.Widows | undefined;
378
+ width?: import("csstype").Property.Width<string | number> | undefined;
379
+ willChange?: import("csstype").Property.WillChange | undefined;
380
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
381
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
382
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
383
+ writingMode?: import("csstype").Property.WritingMode | undefined;
384
+ zIndex?: import("csstype").Property.ZIndex | undefined;
385
+ zoom?: import("csstype").Property.Zoom | undefined;
386
+ all?: import("csstype").Globals | undefined;
387
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
388
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
389
+ background?: import("csstype").Property.Background<string | number> | undefined;
390
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
391
+ border?: import("csstype").Property.Border<string | number> | undefined;
392
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
393
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
394
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
395
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
396
+ borderColor?: import("csstype").Property.BorderColor | undefined;
397
+ borderImage?: import("csstype").Property.BorderImage | undefined;
398
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
399
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
400
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
401
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
402
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
403
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
404
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
405
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
406
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
407
+ caret?: import("csstype").Property.Caret | undefined;
408
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
409
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
410
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
411
+ container?: import("csstype").Property.Container | undefined;
412
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
413
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
414
+ font?: import("csstype").Property.Font | undefined;
415
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
416
+ grid?: import("csstype").Property.Grid | undefined;
417
+ gridArea?: import("csstype").Property.GridArea | undefined;
418
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
419
+ gridRow?: import("csstype").Property.GridRow | undefined;
420
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
421
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
422
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
423
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
424
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
425
+ listStyle?: import("csstype").Property.ListStyle | undefined;
426
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
427
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
428
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
429
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
430
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
431
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
432
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
433
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
434
+ overflow?: import("csstype").Property.Overflow | undefined;
435
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
436
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
437
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
438
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
439
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
440
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
441
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
442
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
443
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
444
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
445
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
446
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
447
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
448
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
449
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
450
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
451
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
452
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
453
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
454
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
455
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
456
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
457
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
458
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
459
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
460
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
461
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
462
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
463
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
464
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
465
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
466
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
467
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
468
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
469
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
470
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
471
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
472
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
473
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
474
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
475
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
476
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
477
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
478
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
479
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
480
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
481
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
482
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
483
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
484
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
485
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
486
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
487
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
488
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
489
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
490
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
491
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
492
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
493
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
494
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
495
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
496
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
497
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
498
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
499
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
500
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
501
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
502
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
503
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
504
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
505
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
506
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
507
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
508
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
509
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
510
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
511
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
512
+ msFilter?: import("csstype").Property.MsFilter | undefined;
513
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
514
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
515
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
516
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
517
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
518
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
519
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
520
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
521
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
522
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
523
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
524
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
525
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
526
+ msOrder?: import("csstype").Property.Order | undefined;
527
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
528
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
529
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
530
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
531
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
532
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
533
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
534
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
535
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
536
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
537
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
538
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
539
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
540
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
541
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
542
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
543
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
544
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
545
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
546
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
547
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
548
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
549
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
550
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
551
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
552
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
553
+ msTransform?: import("csstype").Property.Transform | undefined;
554
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
555
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
556
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
557
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
558
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
559
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
560
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
561
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
562
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
563
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
564
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
565
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
566
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
567
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
568
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
569
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
570
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
571
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
572
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
573
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
574
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
575
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
576
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
577
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
578
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
579
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
580
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
581
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
582
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
583
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
584
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
585
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
586
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
587
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
588
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
589
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
590
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
591
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
592
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
593
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
594
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
595
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
596
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
597
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
598
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
599
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
600
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
601
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
602
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
603
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
604
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
605
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
606
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
607
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
608
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
609
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
610
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
611
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
612
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
613
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
614
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
615
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
616
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
617
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
618
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
619
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
620
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
621
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
622
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
623
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
624
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
625
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
626
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
627
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
628
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
629
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
630
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
631
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
632
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
633
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
634
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
635
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
636
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
637
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
638
+ WebkitOrder?: import("csstype").Property.Order | undefined;
639
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
640
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
641
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
642
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
643
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
644
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
645
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
646
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
647
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
648
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
649
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
650
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
651
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
652
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
653
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
654
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
655
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
656
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
657
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
658
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
659
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
660
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
661
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
662
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
663
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
664
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
665
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
666
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
667
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
668
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
669
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
670
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
671
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
672
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
673
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
674
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
675
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
676
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
677
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
678
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
679
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
680
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
681
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
682
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
683
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
684
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
685
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
686
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
687
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
688
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
689
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
690
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
691
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
692
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
693
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
694
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
695
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
696
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
697
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
698
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
699
+ azimuth?: import("csstype").Property.Azimuth | undefined;
700
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
701
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
702
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
703
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
704
+ boxLines?: import("csstype").Property.BoxLines | undefined;
705
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
706
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
707
+ boxPack?: import("csstype").Property.BoxPack | undefined;
708
+ clip?: import("csstype").Property.Clip | undefined;
709
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
710
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
711
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
712
+ imeMode?: import("csstype").Property.ImeMode | undefined;
713
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
714
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
715
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
716
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
717
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
718
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
719
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
720
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
721
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
722
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
723
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
724
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
725
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
726
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
727
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
728
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
729
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
730
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
731
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
732
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
733
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
734
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
735
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
736
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
737
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
738
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
739
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
740
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
741
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
742
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
743
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
744
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
745
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
746
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
747
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
748
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
749
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
750
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
751
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
752
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
753
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
754
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
755
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
756
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
757
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
758
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
759
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
760
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
761
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
762
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
763
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
764
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
765
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
766
+ MozTransform?: import("csstype").Property.Transform | undefined;
767
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
768
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
769
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
770
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
771
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
772
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
773
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
774
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
775
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
776
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
777
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
778
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
779
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
780
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
781
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
782
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
783
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
784
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
785
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
786
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
787
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
788
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
789
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
790
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
791
+ OTransform?: import("csstype").Property.Transform | undefined;
792
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
793
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
794
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
795
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
796
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
797
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
798
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
799
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
800
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
801
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
802
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
803
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
804
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
805
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
806
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
807
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
808
+ clipRule?: import("csstype").Property.ClipRule | undefined;
809
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
810
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
811
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
812
+ fill?: import("csstype").Property.Fill | undefined;
813
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
814
+ fillRule?: import("csstype").Property.FillRule | undefined;
815
+ floodColor?: import("csstype").Property.FloodColor | undefined;
816
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
817
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
818
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
819
+ marker?: import("csstype").Property.Marker | undefined;
820
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
821
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
822
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
823
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
824
+ stopColor?: import("csstype").Property.StopColor | undefined;
825
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
826
+ stroke?: import("csstype").Property.Stroke | undefined;
827
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
828
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
829
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
830
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
831
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
832
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
833
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
834
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
835
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
836
+ x?: (string | number) | undefined;
837
+ y?: (string | number) | undefined;
838
+ z?: (string | number) | undefined;
839
+ translateX?: (string | number) | undefined;
840
+ translateY?: (string | number) | undefined;
841
+ translateZ?: (string | number) | undefined;
842
+ translate3d?: readonly [string | number, string | number, string | number] | undefined;
843
+ rotateX?: (string | number) | undefined;
844
+ rotateY?: (string | number) | undefined;
845
+ rotateZ?: (string | number) | undefined;
846
+ rotate3d?: readonly [number, number, number, string | number] | undefined;
847
+ scaleX?: number | undefined;
848
+ scaleY?: number | undefined;
849
+ scaleZ?: number | undefined;
850
+ scale3d?: readonly [number, number, number] | undefined;
851
+ skew?: (string | number) | readonly [string | number, string | number] | undefined;
852
+ skewX?: (string | number) | undefined;
853
+ skewY?: (string | number) | undefined;
854
+ matrix?: readonly [number, number, number, number, number, number] | undefined;
855
+ matrix3d?: readonly [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number] | undefined;
856
+ } | undefined;
857
+ unicode?: string | number | undefined;
858
+ fill?: string | undefined;
859
+ stroke?: string | undefined;
860
+ x?: string | number | undefined;
861
+ y?: string | number | undefined;
862
+ clipPath?: string | undefined;
863
+ cursor?: string | number | undefined;
864
+ direction?: string | number | undefined;
865
+ display?: string | number | undefined;
866
+ filter?: string | undefined;
867
+ fontFamily?: string | undefined;
868
+ fontSize?: string | number | undefined;
869
+ fontSizeAdjust?: string | number | undefined;
870
+ fontStretch?: string | number | undefined;
871
+ fontStyle?: string | number | undefined;
872
+ fontVariant?: string | number | undefined;
873
+ fontWeight?: string | number | undefined;
874
+ height?: string | number | undefined;
875
+ imageRendering?: string | number | undefined;
876
+ letterSpacing?: string | number | undefined;
877
+ opacity?: string | number | undefined;
878
+ order?: string | number | undefined;
879
+ paintOrder?: string | number | undefined;
880
+ pointerEvents?: string | number | undefined;
881
+ rotate?: string | number | undefined;
882
+ scale?: string | number | undefined;
883
+ textRendering?: string | number | undefined;
884
+ transform?: string | undefined;
885
+ unicodeBidi?: string | number | undefined;
886
+ visibility?: string | number | undefined;
887
+ width?: string | number | undefined;
888
+ wordSpacing?: string | number | undefined;
889
+ writingMode?: string | number | undefined;
890
+ alphabetic?: string | number | undefined;
891
+ hanging?: string | number | undefined;
892
+ ideographic?: string | number | undefined;
893
+ mathematical?: string | number | undefined;
894
+ mask?: string | undefined;
895
+ offset?: string | number | undefined;
896
+ overflow?: string | number | undefined;
897
+ textDecoration?: string | number | undefined;
898
+ azimuth?: string | number | undefined;
899
+ alignmentBaseline?: "inherit" | "auto" | "baseline" | "middle" | "after-edge" | "alphabetic" | "before-edge" | "central" | "hanging" | "ideographic" | "mathematical" | "text-after-edge" | "text-before-edge" | undefined;
900
+ baselineShift?: string | number | undefined;
901
+ clipRule?: string | number | undefined;
902
+ colorInterpolation?: string | number | undefined;
903
+ colorRendering?: string | number | undefined;
904
+ dominantBaseline?: string | number | undefined;
905
+ fillOpacity?: string | number | undefined;
906
+ fillRule?: "inherit" | "evenodd" | "nonzero" | undefined;
907
+ floodColor?: string | number | undefined;
908
+ floodOpacity?: string | number | undefined;
909
+ glyphOrientationVertical?: string | number | undefined;
910
+ lightingColor?: string | number | undefined;
911
+ markerEnd?: string | undefined;
912
+ markerMid?: string | undefined;
913
+ markerStart?: string | undefined;
914
+ shapeRendering?: string | number | undefined;
915
+ stopColor?: string | undefined;
916
+ stopOpacity?: string | number | undefined;
917
+ strokeDasharray?: string | number | undefined;
918
+ strokeDashoffset?: string | number | undefined;
919
+ strokeLinecap?: "inherit" | "round" | "butt" | "square" | undefined;
920
+ strokeLinejoin?: "inherit" | "round" | "bevel" | "miter" | undefined;
921
+ strokeMiterlimit?: string | number | undefined;
922
+ strokeOpacity?: string | number | undefined;
923
+ strokeWidth?: string | number | undefined;
924
+ textAnchor?: string | undefined;
925
+ vectorEffect?: string | number | undefined;
926
+ additive?: "replace" | "sum" | undefined;
927
+ path?: string | undefined;
928
+ key?: React.Key | null | undefined;
929
+ crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
930
+ href?: string | undefined;
931
+ max?: string | number | undefined;
932
+ media?: string | undefined;
933
+ method?: string | undefined;
934
+ min?: string | number | undefined;
935
+ name?: string | undefined;
936
+ target?: string | undefined;
937
+ type?: string | undefined;
938
+ suppressHydrationWarning?: boolean | undefined;
939
+ className?: string | undefined;
940
+ id?: string | undefined;
941
+ lang?: string | undefined;
942
+ tabIndex?: number | undefined;
943
+ role?: React.AriaRole | undefined;
944
+ "aria-activedescendant"?: string | undefined;
945
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
946
+ "aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
947
+ "aria-braillelabel"?: string | undefined;
948
+ "aria-brailleroledescription"?: string | undefined;
949
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
950
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
951
+ "aria-colcount"?: number | undefined;
952
+ "aria-colindex"?: number | undefined;
953
+ "aria-colindextext"?: string | undefined;
954
+ "aria-colspan"?: number | undefined;
955
+ "aria-controls"?: string | undefined;
956
+ "aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
957
+ "aria-describedby"?: string | undefined;
958
+ "aria-description"?: string | undefined;
959
+ "aria-details"?: string | undefined;
960
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
961
+ "aria-dropeffect"?: "none" | "copy" | "move" | "link" | "execute" | "popup" | undefined;
962
+ "aria-errormessage"?: string | undefined;
963
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
964
+ "aria-flowto"?: string | undefined;
965
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
966
+ "aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
967
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
968
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
969
+ "aria-keyshortcuts"?: string | undefined;
970
+ "aria-label"?: string | undefined;
971
+ "aria-labelledby"?: string | undefined;
972
+ "aria-level"?: number | undefined;
973
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
974
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
975
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
976
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
977
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
978
+ "aria-owns"?: string | undefined;
979
+ "aria-placeholder"?: string | undefined;
980
+ "aria-posinset"?: number | undefined;
981
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
982
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
983
+ "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
984
+ "aria-required"?: (boolean | "false" | "true") | undefined;
985
+ "aria-roledescription"?: string | undefined;
986
+ "aria-rowcount"?: number | undefined;
987
+ "aria-rowindex"?: number | undefined;
988
+ "aria-rowindextext"?: string | undefined;
989
+ "aria-rowspan"?: number | undefined;
990
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
991
+ "aria-setsize"?: number | undefined;
992
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
993
+ "aria-valuemax"?: number | undefined;
994
+ "aria-valuemin"?: number | undefined;
995
+ "aria-valuenow"?: number | undefined;
996
+ "aria-valuetext"?: string | undefined;
997
+ accentHeight?: string | number | undefined;
998
+ allowReorder?: "yes" | "no" | undefined;
999
+ amplitude?: string | number | undefined;
1000
+ arabicForm?: "initial" | "medial" | "terminal" | "isolated" | undefined;
1001
+ ascent?: string | number | undefined;
1002
+ attributeName?: string | undefined;
1003
+ attributeType?: string | undefined;
1004
+ autoReverse?: (boolean | "false" | "true") | undefined;
1005
+ baseFrequency?: string | number | undefined;
1006
+ baseProfile?: string | number | undefined;
1007
+ bbox?: string | number | undefined;
1008
+ begin?: string | number | undefined;
1009
+ bias?: string | number | undefined;
1010
+ by?: string | number | undefined;
1011
+ calcMode?: string | number | undefined;
1012
+ capHeight?: string | number | undefined;
1013
+ clipPathUnits?: string | number | undefined;
1014
+ colorInterpolationFilters?: "inherit" | "auto" | "linearRGB" | "sRGB" | undefined;
1015
+ colorProfile?: string | number | undefined;
1016
+ contentScriptType?: string | number | undefined;
1017
+ contentStyleType?: string | number | undefined;
1018
+ cx?: string | number | undefined;
1019
+ cy?: string | number | undefined;
1020
+ d?: string | undefined;
1021
+ decelerate?: string | number | undefined;
1022
+ descent?: string | number | undefined;
1023
+ diffuseConstant?: string | number | undefined;
1024
+ divisor?: string | number | undefined;
1025
+ dur?: string | number | undefined;
1026
+ dx?: string | number | undefined;
1027
+ dy?: string | number | undefined;
1028
+ edgeMode?: string | number | undefined;
1029
+ elevation?: string | number | undefined;
1030
+ enableBackground?: string | number | undefined;
1031
+ exponent?: string | number | undefined;
1032
+ externalResourcesRequired?: (boolean | "false" | "true") | undefined;
1033
+ filterRes?: string | number | undefined;
1034
+ filterUnits?: string | number | undefined;
1035
+ focusable?: "auto" | (boolean | "false" | "true") | undefined;
1036
+ format?: string | number | undefined;
1037
+ fr?: string | number | undefined;
1038
+ from?: string | number | undefined;
1039
+ fx?: string | number | undefined;
1040
+ fy?: string | number | undefined;
1041
+ g1?: string | number | undefined;
1042
+ g2?: string | number | undefined;
1043
+ glyphName?: string | number | undefined;
1044
+ glyphOrientationHorizontal?: string | number | undefined;
1045
+ glyphRef?: string | number | undefined;
1046
+ gradientTransform?: string | undefined;
1047
+ gradientUnits?: string | undefined;
1048
+ horizAdvX?: string | number | undefined;
1049
+ horizOriginX?: string | number | undefined;
1050
+ in2?: string | number | undefined;
1051
+ in?: string | undefined;
1052
+ intercept?: string | number | undefined;
1053
+ k1?: string | number | undefined;
1054
+ k2?: string | number | undefined;
1055
+ k3?: string | number | undefined;
1056
+ k4?: string | number | undefined;
1057
+ k?: string | number | undefined;
1058
+ kernelMatrix?: string | number | undefined;
1059
+ kernelUnitLength?: string | number | undefined;
1060
+ kerning?: string | number | undefined;
1061
+ keyPoints?: string | number | undefined;
1062
+ keySplines?: string | number | undefined;
1063
+ keyTimes?: string | number | undefined;
1064
+ lengthAdjust?: string | number | undefined;
1065
+ limitingConeAngle?: string | number | undefined;
1066
+ markerHeight?: string | number | undefined;
1067
+ markerUnits?: string | number | undefined;
1068
+ markerWidth?: string | number | undefined;
1069
+ maskContentUnits?: string | number | undefined;
1070
+ maskUnits?: string | number | undefined;
1071
+ mode?: string | number | undefined;
1072
+ numOctaves?: string | number | undefined;
1073
+ operator?: string | number | undefined;
1074
+ orient?: string | number | undefined;
1075
+ orientation?: string | number | undefined;
1076
+ origin?: string | number | undefined;
1077
+ overlinePosition?: string | number | undefined;
1078
+ overlineThickness?: string | number | undefined;
1079
+ panose1?: string | number | undefined;
1080
+ pathLength?: string | number | undefined;
1081
+ patternContentUnits?: string | undefined;
1082
+ patternTransform?: string | number | undefined;
1083
+ patternUnits?: string | undefined;
1084
+ points?: string | undefined;
1085
+ pointsAtX?: string | number | undefined;
1086
+ pointsAtY?: string | number | undefined;
1087
+ pointsAtZ?: string | number | undefined;
1088
+ preserveAlpha?: (boolean | "false" | "true") | undefined;
1089
+ preserveAspectRatio?: string | undefined;
1090
+ primitiveUnits?: string | number | undefined;
1091
+ r?: string | number | undefined;
1092
+ radius?: string | number | undefined;
1093
+ refX?: string | number | undefined;
1094
+ refY?: string | number | undefined;
1095
+ renderingIntent?: string | number | undefined;
1096
+ repeatCount?: string | number | undefined;
1097
+ repeatDur?: string | number | undefined;
1098
+ requiredExtensions?: string | number | undefined;
1099
+ requiredFeatures?: string | number | undefined;
1100
+ restart?: string | number | undefined;
1101
+ result?: string | undefined;
1102
+ rx?: string | number | undefined;
1103
+ ry?: string | number | undefined;
1104
+ seed?: string | number | undefined;
1105
+ slope?: string | number | undefined;
1106
+ spacing?: string | number | undefined;
1107
+ specularConstant?: string | number | undefined;
1108
+ specularExponent?: string | number | undefined;
1109
+ speed?: string | number | undefined;
1110
+ spreadMethod?: string | undefined;
1111
+ startOffset?: string | number | undefined;
1112
+ stdDeviation?: string | number | undefined;
1113
+ stemh?: string | number | undefined;
1114
+ stemv?: string | number | undefined;
1115
+ stitchTiles?: string | number | undefined;
1116
+ strikethroughPosition?: string | number | undefined;
1117
+ strikethroughThickness?: string | number | undefined;
1118
+ surfaceScale?: string | number | undefined;
1119
+ systemLanguage?: string | number | undefined;
1120
+ tableValues?: string | number | undefined;
1121
+ targetX?: string | number | undefined;
1122
+ targetY?: string | number | undefined;
1123
+ textLength?: string | number | undefined;
1124
+ to?: string | number | undefined;
1125
+ u1?: string | number | undefined;
1126
+ u2?: string | number | undefined;
1127
+ underlinePosition?: string | number | undefined;
1128
+ underlineThickness?: string | number | undefined;
1129
+ unicodeRange?: string | number | undefined;
1130
+ unitsPerEm?: string | number | undefined;
1131
+ vAlphabetic?: string | number | undefined;
1132
+ values?: string | undefined;
1133
+ version?: string | undefined;
1134
+ vertAdvY?: string | number | undefined;
1135
+ vertOriginX?: string | number | undefined;
1136
+ vertOriginY?: string | number | undefined;
1137
+ vHanging?: string | number | undefined;
1138
+ vIdeographic?: string | number | undefined;
1139
+ viewBox?: string | undefined;
1140
+ viewTarget?: string | number | undefined;
1141
+ vMathematical?: string | number | undefined;
1142
+ widths?: string | number | undefined;
1143
+ x1?: string | number | undefined;
1144
+ x2?: string | number | undefined;
1145
+ xChannelSelector?: string | undefined;
1146
+ xHeight?: string | number | undefined;
1147
+ xlinkActuate?: string | undefined;
1148
+ xlinkArcrole?: string | undefined;
1149
+ xlinkHref?: string | undefined;
1150
+ xlinkRole?: string | undefined;
1151
+ xlinkShow?: string | undefined;
1152
+ xlinkTitle?: string | undefined;
1153
+ xlinkType?: string | undefined;
1154
+ xmlBase?: string | undefined;
1155
+ xmlLang?: string | undefined;
1156
+ xmlns?: string | undefined;
1157
+ xmlnsXlink?: string | undefined;
1158
+ xmlSpace?: string | undefined;
1159
+ y1?: string | number | undefined;
1160
+ y2?: string | number | undefined;
1161
+ yChannelSelector?: string | undefined;
1162
+ z?: string | number | undefined;
1163
+ zoomAndPan?: string | undefined;
1164
+ children?: React.ReactNode;
1165
+ dangerouslySetInnerHTML?: {
1166
+ __html: string | TrustedHTML;
1167
+ } | undefined;
1168
+ onCopy?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1169
+ onCopyCapture?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1170
+ onCut?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1171
+ onCutCapture?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1172
+ onPaste?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1173
+ onPasteCapture?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1174
+ onCompositionEnd?: React.CompositionEventHandler<SVGPathElement> | undefined;
1175
+ onCompositionEndCapture?: React.CompositionEventHandler<SVGPathElement> | undefined;
1176
+ onCompositionStart?: React.CompositionEventHandler<SVGPathElement> | undefined;
1177
+ onCompositionStartCapture?: React.CompositionEventHandler<SVGPathElement> | undefined;
1178
+ onCompositionUpdate?: React.CompositionEventHandler<SVGPathElement> | undefined;
1179
+ onCompositionUpdateCapture?: React.CompositionEventHandler<SVGPathElement> | undefined;
1180
+ onFocus?: React.FocusEventHandler<SVGPathElement> | undefined;
1181
+ onFocusCapture?: React.FocusEventHandler<SVGPathElement> | undefined;
1182
+ onBlur?: React.FocusEventHandler<SVGPathElement> | undefined;
1183
+ onBlurCapture?: React.FocusEventHandler<SVGPathElement> | undefined;
1184
+ onChange?: React.FormEventHandler<SVGPathElement> | undefined;
1185
+ onChangeCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1186
+ onBeforeInput?: React.FormEventHandler<SVGPathElement> | undefined;
1187
+ onBeforeInputCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1188
+ onInput?: React.FormEventHandler<SVGPathElement> | undefined;
1189
+ onInputCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1190
+ onReset?: React.FormEventHandler<SVGPathElement> | undefined;
1191
+ onResetCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1192
+ onSubmit?: React.FormEventHandler<SVGPathElement> | undefined;
1193
+ onSubmitCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1194
+ onInvalid?: React.FormEventHandler<SVGPathElement> | undefined;
1195
+ onInvalidCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1196
+ onLoad?: React.ReactEventHandler<SVGPathElement> | undefined;
1197
+ onLoadCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1198
+ onError?: React.ReactEventHandler<SVGPathElement> | undefined;
1199
+ onErrorCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1200
+ onKeyDown?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1201
+ onKeyDownCapture?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1202
+ onKeyPress?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1203
+ onKeyPressCapture?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1204
+ onKeyUp?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1205
+ onKeyUpCapture?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1206
+ onAbort?: React.ReactEventHandler<SVGPathElement> | undefined;
1207
+ onAbortCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1208
+ onCanPlay?: React.ReactEventHandler<SVGPathElement> | undefined;
1209
+ onCanPlayCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1210
+ onCanPlayThrough?: React.ReactEventHandler<SVGPathElement> | undefined;
1211
+ onCanPlayThroughCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1212
+ onDurationChange?: React.ReactEventHandler<SVGPathElement> | undefined;
1213
+ onDurationChangeCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1214
+ onEmptied?: React.ReactEventHandler<SVGPathElement> | undefined;
1215
+ onEmptiedCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1216
+ onEncrypted?: React.ReactEventHandler<SVGPathElement> | undefined;
1217
+ onEncryptedCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1218
+ onEnded?: React.ReactEventHandler<SVGPathElement> | undefined;
1219
+ onEndedCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1220
+ onLoadedData?: React.ReactEventHandler<SVGPathElement> | undefined;
1221
+ onLoadedDataCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1222
+ onLoadedMetadata?: React.ReactEventHandler<SVGPathElement> | undefined;
1223
+ onLoadedMetadataCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1224
+ onLoadStart?: React.ReactEventHandler<SVGPathElement> | undefined;
1225
+ onLoadStartCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1226
+ onPause?: React.ReactEventHandler<SVGPathElement> | undefined;
1227
+ onPauseCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1228
+ onPlay?: React.ReactEventHandler<SVGPathElement> | undefined;
1229
+ onPlayCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1230
+ onPlaying?: React.ReactEventHandler<SVGPathElement> | undefined;
1231
+ onPlayingCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1232
+ onProgress?: React.ReactEventHandler<SVGPathElement> | undefined;
1233
+ onProgressCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1234
+ onRateChange?: React.ReactEventHandler<SVGPathElement> | undefined;
1235
+ onRateChangeCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1236
+ onResize?: React.ReactEventHandler<SVGPathElement> | undefined;
1237
+ onResizeCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1238
+ onSeeked?: React.ReactEventHandler<SVGPathElement> | undefined;
1239
+ onSeekedCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1240
+ onSeeking?: React.ReactEventHandler<SVGPathElement> | undefined;
1241
+ onSeekingCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1242
+ onStalled?: React.ReactEventHandler<SVGPathElement> | undefined;
1243
+ onStalledCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1244
+ onSuspend?: React.ReactEventHandler<SVGPathElement> | undefined;
1245
+ onSuspendCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1246
+ onTimeUpdate?: React.ReactEventHandler<SVGPathElement> | undefined;
1247
+ onTimeUpdateCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1248
+ onVolumeChange?: React.ReactEventHandler<SVGPathElement> | undefined;
1249
+ onVolumeChangeCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1250
+ onWaiting?: React.ReactEventHandler<SVGPathElement> | undefined;
1251
+ onWaitingCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1252
+ onAuxClick?: React.MouseEventHandler<SVGPathElement> | undefined;
1253
+ onAuxClickCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1254
+ onClick?: React.MouseEventHandler<SVGPathElement> | undefined;
1255
+ onClickCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1256
+ onContextMenu?: React.MouseEventHandler<SVGPathElement> | undefined;
1257
+ onContextMenuCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1258
+ onDoubleClick?: React.MouseEventHandler<SVGPathElement> | undefined;
1259
+ onDoubleClickCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1260
+ onDrag?: React.DragEventHandler<SVGPathElement> | undefined;
1261
+ onDragCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1262
+ onDragEnd?: React.DragEventHandler<SVGPathElement> | undefined;
1263
+ onDragEndCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1264
+ onDragEnter?: React.DragEventHandler<SVGPathElement> | undefined;
1265
+ onDragEnterCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1266
+ onDragExit?: React.DragEventHandler<SVGPathElement> | undefined;
1267
+ onDragExitCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1268
+ onDragLeave?: React.DragEventHandler<SVGPathElement> | undefined;
1269
+ onDragLeaveCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1270
+ onDragOver?: React.DragEventHandler<SVGPathElement> | undefined;
1271
+ onDragOverCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1272
+ onDragStart?: React.DragEventHandler<SVGPathElement> | undefined;
1273
+ onDragStartCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1274
+ onDrop?: React.DragEventHandler<SVGPathElement> | undefined;
1275
+ onDropCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1276
+ onMouseDown?: React.MouseEventHandler<SVGPathElement> | undefined;
1277
+ onMouseDownCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1278
+ onMouseEnter?: React.MouseEventHandler<SVGPathElement> | undefined;
1279
+ onMouseLeave?: React.MouseEventHandler<SVGPathElement> | undefined;
1280
+ onMouseMove?: React.MouseEventHandler<SVGPathElement> | undefined;
1281
+ onMouseMoveCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1282
+ onMouseOut?: React.MouseEventHandler<SVGPathElement> | undefined;
1283
+ onMouseOutCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1284
+ onMouseOver?: React.MouseEventHandler<SVGPathElement> | undefined;
1285
+ onMouseOverCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1286
+ onMouseUp?: React.MouseEventHandler<SVGPathElement> | undefined;
1287
+ onMouseUpCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1288
+ onSelect?: React.ReactEventHandler<SVGPathElement> | undefined;
1289
+ onSelectCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1290
+ onTouchCancel?: React.TouchEventHandler<SVGPathElement> | undefined;
1291
+ onTouchCancelCapture?: React.TouchEventHandler<SVGPathElement> | undefined;
1292
+ onTouchEnd?: React.TouchEventHandler<SVGPathElement> | undefined;
1293
+ onTouchEndCapture?: React.TouchEventHandler<SVGPathElement> | undefined;
1294
+ onTouchMove?: React.TouchEventHandler<SVGPathElement> | undefined;
1295
+ onTouchMoveCapture?: React.TouchEventHandler<SVGPathElement> | undefined;
1296
+ onTouchStart?: React.TouchEventHandler<SVGPathElement> | undefined;
1297
+ onTouchStartCapture?: React.TouchEventHandler<SVGPathElement> | undefined;
1298
+ onPointerDown?: React.PointerEventHandler<SVGPathElement> | undefined;
1299
+ onPointerDownCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1300
+ onPointerMove?: React.PointerEventHandler<SVGPathElement> | undefined;
1301
+ onPointerMoveCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1302
+ onPointerUp?: React.PointerEventHandler<SVGPathElement> | undefined;
1303
+ onPointerUpCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1304
+ onPointerCancel?: React.PointerEventHandler<SVGPathElement> | undefined;
1305
+ onPointerCancelCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1306
+ onPointerEnter?: React.PointerEventHandler<SVGPathElement> | undefined;
1307
+ onPointerEnterCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1308
+ onPointerLeave?: React.PointerEventHandler<SVGPathElement> | undefined;
1309
+ onPointerLeaveCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1310
+ onPointerOver?: React.PointerEventHandler<SVGPathElement> | undefined;
1311
+ onPointerOverCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1312
+ onPointerOut?: React.PointerEventHandler<SVGPathElement> | undefined;
1313
+ onPointerOutCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1314
+ onGotPointerCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1315
+ onGotPointerCaptureCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1316
+ onLostPointerCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1317
+ onLostPointerCaptureCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1318
+ onScroll?: React.UIEventHandler<SVGPathElement> | undefined;
1319
+ onScrollCapture?: React.UIEventHandler<SVGPathElement> | undefined;
1320
+ onWheel?: React.WheelEventHandler<SVGPathElement> | undefined;
1321
+ onWheelCapture?: React.WheelEventHandler<SVGPathElement> | undefined;
1322
+ onAnimationStart?: React.AnimationEventHandler<SVGPathElement> | undefined;
1323
+ onAnimationStartCapture?: React.AnimationEventHandler<SVGPathElement> | undefined;
1324
+ onAnimationEnd?: React.AnimationEventHandler<SVGPathElement> | undefined;
1325
+ onAnimationEndCapture?: React.AnimationEventHandler<SVGPathElement> | undefined;
1326
+ onAnimationIteration?: React.AnimationEventHandler<SVGPathElement> | undefined;
1327
+ onAnimationIterationCapture?: React.AnimationEventHandler<SVGPathElement> | undefined;
1328
+ onTransitionEnd?: React.TransitionEventHandler<SVGPathElement> | undefined;
1329
+ onTransitionEndCapture?: React.TransitionEventHandler<SVGPathElement> | undefined;
1330
+ ref?: ((instance: SVGPathElement | null) => void) | React.RefObject<SVGPathElement> | null | undefined;
1331
+ }> & {
1332
+ scrollTop?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
1333
+ scrollLeft?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
1334
+ viewBox?: string | import("@react-spring/shared").FluidValue<string, any> | undefined;
1335
+ }, "string" | "end" | "accumulate" | "local" | "color" | "clip" | "style" | "unicode" | "fill" | "stroke" | "x" | "y" | "clipPath" | "cursor" | "direction" | "display" | "filter" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "mask" | "offset" | "overflow" | "textDecoration" | "azimuth" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "additive" | "path" | "ref" | "key" | "crossOrigin" | "href" | "max" | "media" | "method" | "min" | "name" | "target" | "type" | "suppressHydrationWarning" | "className" | "id" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accentHeight" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "scrollTop" | "scrollLeft"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
1336
+ ownerState: AreaElementOwnerState;
1337
+ }, {}, {}>;
1338
+ export interface AnimatedAreaProps extends React.ComponentPropsWithoutRef<'path'> {
1339
+ ownerState: AreaElementOwnerState;
1340
+ d: string;
1341
+ /**
1342
+ * If `true`, animations are skipped.
1343
+ * @default false
1344
+ */
1345
+ skipAnimation?: boolean;
1346
+ }
1347
+ /**
1348
+ * Demos:
1349
+ *
1350
+ * - [Lines](https://mui.com/x/react-charts/lines/)
1351
+ * - [Areas demonstration](https://mui.com/x/react-charts/areas-demo/)
1352
+ *
1353
+ * API:
1354
+ *
1355
+ * - [AreaElement API](https://mui.com/x/api/charts/animated-area/)
1356
+ */
1357
+ declare function AnimatedArea(props: AnimatedAreaProps): React.JSX.Element;
1358
+ declare namespace AnimatedArea {
1359
+ var propTypes: any;
1360
+ }
1361
+ export { AnimatedArea };