@qwickapps/react-framework 1.5.7 → 1.5.9

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 (211) hide show
  1. package/dist/components/AccessibilityChecker.d.ts.map +1 -1
  2. package/dist/components/Html.d.ts +1 -1
  3. package/dist/components/Html.d.ts.map +1 -1
  4. package/dist/components/Logo.d.ts.map +1 -1
  5. package/dist/components/Markdown.d.ts +2 -2
  6. package/dist/components/Markdown.d.ts.map +1 -1
  7. package/dist/components/SafeSpan.d.ts +1 -1
  8. package/dist/components/SafeSpan.d.ts.map +1 -1
  9. package/dist/components/base/ModelView.d.ts +1 -1
  10. package/dist/components/base/ModelView.d.ts.map +1 -1
  11. package/dist/components/blocks/Article.d.ts +1 -1
  12. package/dist/components/blocks/Article.d.ts.map +1 -1
  13. package/dist/components/blocks/CardListGrid.d.ts.map +1 -1
  14. package/dist/components/blocks/Code.d.ts.map +1 -1
  15. package/dist/components/blocks/Content.d.ts.map +1 -1
  16. package/dist/components/blocks/CoverImageHeader.d.ts.map +1 -1
  17. package/dist/components/blocks/FeatureCard.d.ts.map +1 -1
  18. package/dist/components/blocks/FeatureGrid.d.ts.map +1 -1
  19. package/dist/components/blocks/Footer.d.ts.map +1 -1
  20. package/dist/components/blocks/Image.d.ts.map +1 -1
  21. package/dist/components/blocks/PageBannerHeader.d.ts.map +1 -1
  22. package/dist/components/blocks/ProductCard.d.ts.map +1 -1
  23. package/dist/components/blocks/Section.d.ts.map +1 -1
  24. package/dist/components/blocks/Text.d.ts +8 -1
  25. package/dist/components/blocks/Text.d.ts.map +1 -1
  26. package/dist/components/buttons/Button.d.ts.map +1 -1
  27. package/dist/components/buttons/PaletteSwitcher.d.ts.map +1 -1
  28. package/dist/components/buttons/ThemeSwitcher.d.ts.map +1 -1
  29. package/dist/components/forms/FormBlock.d.ts +1 -1
  30. package/dist/components/forms/FormBlock.d.ts.map +1 -1
  31. package/dist/components/forms/SchemaFormRenderer.d.ts +28 -0
  32. package/dist/components/forms/SchemaFormRenderer.d.ts.map +1 -0
  33. package/dist/components/forms/index.d.ts +2 -0
  34. package/dist/components/forms/index.d.ts.map +1 -1
  35. package/dist/components/index.d.ts +1 -0
  36. package/dist/components/index.d.ts.map +1 -1
  37. package/dist/components/input/ChoiceInputField.d.ts.map +1 -1
  38. package/dist/components/input/HtmlInputField.d.ts.map +1 -1
  39. package/dist/components/layout/CollapsibleLayout/CollapsibleLayout.d.ts.map +1 -1
  40. package/dist/components/layout/GridLayout.d.ts +5 -0
  41. package/dist/components/layout/GridLayout.d.ts.map +1 -1
  42. package/dist/components/plugins/DataTable.d.ts +57 -0
  43. package/dist/components/plugins/DataTable.d.ts.map +1 -0
  44. package/dist/components/plugins/StatCard.d.ts +44 -0
  45. package/dist/components/plugins/StatCard.d.ts.map +1 -0
  46. package/dist/components/plugins/index.d.ts +13 -0
  47. package/dist/components/plugins/index.d.ts.map +1 -0
  48. package/dist/components/shared/createSerializableView.d.ts.map +1 -1
  49. package/dist/hooks/useBaseProps.d.ts +1161 -12
  50. package/dist/hooks/useBaseProps.d.ts.map +1 -1
  51. package/dist/index.esm.js +5468 -5216
  52. package/dist/index.js +5572 -5317
  53. package/dist/palettes/manifest.json +19 -19
  54. package/dist/schemas/transformers/ReactNodeTransformer.d.ts.map +1 -1
  55. package/dist/utils/iconMap.d.ts.map +1 -1
  56. package/package.json +6 -5
  57. package/src/components/AccessibilityChecker.tsx +10 -7
  58. package/src/components/ErrorBoundary.tsx +3 -3
  59. package/src/components/Html.tsx +17 -12
  60. package/src/components/Logo.tsx +1 -8
  61. package/src/components/Markdown.tsx +12 -12
  62. package/src/components/ResponsiveMenu.tsx +1 -1
  63. package/src/components/SafeSpan.tsx +10 -10
  64. package/src/components/Scaffold.tsx +4 -4
  65. package/src/components/base/ModelView.tsx +2 -2
  66. package/src/components/blocks/Article.tsx +8 -8
  67. package/src/components/blocks/CardListGrid.tsx +1 -3
  68. package/src/components/blocks/Code.tsx +10 -8
  69. package/src/components/blocks/Content.tsx +2 -4
  70. package/src/components/blocks/CoverImageHeader.tsx +3 -4
  71. package/src/components/blocks/FeatureCard.tsx +2 -4
  72. package/src/components/blocks/FeatureGrid.tsx +2 -4
  73. package/src/components/blocks/Footer.tsx +2 -4
  74. package/src/components/blocks/Image.tsx +10 -7
  75. package/src/components/blocks/PageBannerHeader.tsx +3 -4
  76. package/src/components/blocks/ProductCard.tsx +8 -5
  77. package/src/components/blocks/Section.tsx +8 -6
  78. package/src/components/blocks/Text.tsx +22 -14
  79. package/src/components/buttons/Button.tsx +11 -9
  80. package/src/components/buttons/PaletteSwitcher.tsx +6 -8
  81. package/src/components/buttons/ThemeSwitcher.tsx +8 -9
  82. package/src/components/forms/Captcha.tsx +1 -1
  83. package/src/components/forms/FormBlock.tsx +3 -5
  84. package/src/components/forms/FormCheckbox.tsx +1 -1
  85. package/src/components/forms/FormField.tsx +1 -1
  86. package/src/components/forms/FormSelect.tsx +1 -1
  87. package/src/components/forms/SchemaFormRenderer.tsx +268 -0
  88. package/src/components/forms/__tests__/SchemaFormRenderer.test.tsx +212 -0
  89. package/src/components/forms/index.ts +3 -0
  90. package/src/components/index.ts +1 -0
  91. package/src/components/input/ChoiceInputField.tsx +2 -1
  92. package/src/components/input/HtmlInputField.tsx +14 -9
  93. package/src/components/input/TextField.tsx +1 -1
  94. package/src/components/layout/CollapsibleLayout/CollapsibleLayout.tsx +6 -8
  95. package/src/components/layout/GridLayout.tsx +4 -0
  96. package/src/components/plugins/DataTable.tsx +259 -0
  97. package/src/components/plugins/StatCard.tsx +122 -0
  98. package/src/components/plugins/__tests__/DataTable.test.tsx +158 -0
  99. package/src/components/plugins/index.ts +14 -0
  100. package/src/components/shared/createSerializableView.tsx +8 -6
  101. package/src/hooks/useBaseProps.ts +1 -1
  102. package/src/schemas/transformers/ReactNodeTransformer.ts +13 -10
  103. package/src/utils/iconMap.tsx +143 -83
  104. package/dist/palettes/palette-autumn.1.4.9.css +0 -172
  105. package/dist/palettes/palette-autumn.1.4.9.min.css +0 -1
  106. package/dist/palettes/palette-autumn.1.5.0.css +0 -172
  107. package/dist/palettes/palette-autumn.1.5.0.min.css +0 -1
  108. package/dist/palettes/palette-autumn.1.5.1.css +0 -172
  109. package/dist/palettes/palette-autumn.1.5.1.min.css +0 -1
  110. package/dist/palettes/palette-autumn.1.5.2.css +0 -172
  111. package/dist/palettes/palette-autumn.1.5.2.min.css +0 -1
  112. package/dist/palettes/palette-autumn.1.5.4.css +0 -172
  113. package/dist/palettes/palette-autumn.1.5.4.min.css +0 -1
  114. package/dist/palettes/palette-autumn.1.5.5.css +0 -172
  115. package/dist/palettes/palette-autumn.1.5.5.min.css +0 -1
  116. package/dist/palettes/palette-autumn.1.5.6.css +0 -172
  117. package/dist/palettes/palette-autumn.1.5.6.min.css +0 -1
  118. package/dist/palettes/palette-autumn.1.5.7.css +0 -172
  119. package/dist/palettes/palette-autumn.1.5.7.min.css +0 -1
  120. package/dist/palettes/palette-cosmic.1.4.9.css +0 -172
  121. package/dist/palettes/palette-cosmic.1.4.9.min.css +0 -1
  122. package/dist/palettes/palette-cosmic.1.5.0.css +0 -172
  123. package/dist/palettes/palette-cosmic.1.5.0.min.css +0 -1
  124. package/dist/palettes/palette-cosmic.1.5.1.css +0 -172
  125. package/dist/palettes/palette-cosmic.1.5.1.min.css +0 -1
  126. package/dist/palettes/palette-cosmic.1.5.2.css +0 -172
  127. package/dist/palettes/palette-cosmic.1.5.2.min.css +0 -1
  128. package/dist/palettes/palette-cosmic.1.5.4.css +0 -172
  129. package/dist/palettes/palette-cosmic.1.5.4.min.css +0 -1
  130. package/dist/palettes/palette-cosmic.1.5.5.css +0 -172
  131. package/dist/palettes/palette-cosmic.1.5.5.min.css +0 -1
  132. package/dist/palettes/palette-cosmic.1.5.6.css +0 -172
  133. package/dist/palettes/palette-cosmic.1.5.6.min.css +0 -1
  134. package/dist/palettes/palette-cosmic.1.5.7.css +0 -172
  135. package/dist/palettes/palette-cosmic.1.5.7.min.css +0 -1
  136. package/dist/palettes/palette-default.1.4.9.css +0 -178
  137. package/dist/palettes/palette-default.1.4.9.min.css +0 -1
  138. package/dist/palettes/palette-default.1.5.0.css +0 -178
  139. package/dist/palettes/palette-default.1.5.0.min.css +0 -1
  140. package/dist/palettes/palette-default.1.5.1.css +0 -178
  141. package/dist/palettes/palette-default.1.5.1.min.css +0 -1
  142. package/dist/palettes/palette-default.1.5.2.css +0 -178
  143. package/dist/palettes/palette-default.1.5.2.min.css +0 -1
  144. package/dist/palettes/palette-default.1.5.4.css +0 -178
  145. package/dist/palettes/palette-default.1.5.4.min.css +0 -1
  146. package/dist/palettes/palette-default.1.5.5.css +0 -178
  147. package/dist/palettes/palette-default.1.5.5.min.css +0 -1
  148. package/dist/palettes/palette-default.1.5.6.css +0 -178
  149. package/dist/palettes/palette-default.1.5.6.min.css +0 -1
  150. package/dist/palettes/palette-default.1.5.7.css +0 -178
  151. package/dist/palettes/palette-default.1.5.7.min.css +0 -1
  152. package/dist/palettes/palette-ocean.1.4.9.css +0 -172
  153. package/dist/palettes/palette-ocean.1.4.9.min.css +0 -1
  154. package/dist/palettes/palette-ocean.1.5.0.css +0 -172
  155. package/dist/palettes/palette-ocean.1.5.0.min.css +0 -1
  156. package/dist/palettes/palette-ocean.1.5.1.css +0 -172
  157. package/dist/palettes/palette-ocean.1.5.1.min.css +0 -1
  158. package/dist/palettes/palette-ocean.1.5.2.css +0 -172
  159. package/dist/palettes/palette-ocean.1.5.2.min.css +0 -1
  160. package/dist/palettes/palette-ocean.1.5.4.css +0 -172
  161. package/dist/palettes/palette-ocean.1.5.4.min.css +0 -1
  162. package/dist/palettes/palette-ocean.1.5.5.css +0 -172
  163. package/dist/palettes/palette-ocean.1.5.5.min.css +0 -1
  164. package/dist/palettes/palette-ocean.1.5.6.css +0 -172
  165. package/dist/palettes/palette-ocean.1.5.6.min.css +0 -1
  166. package/dist/palettes/palette-ocean.1.5.7.css +0 -172
  167. package/dist/palettes/palette-ocean.1.5.7.min.css +0 -1
  168. package/dist/palettes/palette-spring.1.4.9.css +0 -160
  169. package/dist/palettes/palette-spring.1.4.9.min.css +0 -1
  170. package/dist/palettes/palette-spring.1.5.0.css +0 -160
  171. package/dist/palettes/palette-spring.1.5.0.min.css +0 -1
  172. package/dist/palettes/palette-spring.1.5.1.css +0 -160
  173. package/dist/palettes/palette-spring.1.5.1.min.css +0 -1
  174. package/dist/palettes/palette-spring.1.5.2.css +0 -160
  175. package/dist/palettes/palette-spring.1.5.2.min.css +0 -1
  176. package/dist/palettes/palette-spring.1.5.4.css +0 -166
  177. package/dist/palettes/palette-spring.1.5.4.min.css +0 -1
  178. package/dist/palettes/palette-spring.1.5.5.css +0 -166
  179. package/dist/palettes/palette-spring.1.5.5.min.css +0 -1
  180. package/dist/palettes/palette-spring.1.5.6.css +0 -166
  181. package/dist/palettes/palette-spring.1.5.6.min.css +0 -1
  182. package/dist/palettes/palette-spring.1.5.7.css +0 -166
  183. package/dist/palettes/palette-spring.1.5.7.min.css +0 -1
  184. package/dist/palettes/palette-winter.1.4.9.css +0 -172
  185. package/dist/palettes/palette-winter.1.4.9.min.css +0 -1
  186. package/dist/palettes/palette-winter.1.5.0.css +0 -172
  187. package/dist/palettes/palette-winter.1.5.0.min.css +0 -1
  188. package/dist/palettes/palette-winter.1.5.1.css +0 -172
  189. package/dist/palettes/palette-winter.1.5.1.min.css +0 -1
  190. package/dist/palettes/palette-winter.1.5.2.css +0 -172
  191. package/dist/palettes/palette-winter.1.5.2.min.css +0 -1
  192. package/dist/palettes/palette-winter.1.5.4.css +0 -172
  193. package/dist/palettes/palette-winter.1.5.4.min.css +0 -1
  194. package/dist/palettes/palette-winter.1.5.5.css +0 -172
  195. package/dist/palettes/palette-winter.1.5.5.min.css +0 -1
  196. package/dist/palettes/palette-winter.1.5.6.css +0 -172
  197. package/dist/palettes/palette-winter.1.5.6.min.css +0 -1
  198. package/dist/palettes/palette-winter.1.5.7.css +0 -172
  199. package/dist/palettes/palette-winter.1.5.7.min.css +0 -1
  200. /package/dist/palettes/{palette-autumn.1.5.3.css → palette-autumn.1.5.9.css} +0 -0
  201. /package/dist/palettes/{palette-autumn.1.5.3.min.css → palette-autumn.1.5.9.min.css} +0 -0
  202. /package/dist/palettes/{palette-cosmic.1.5.3.css → palette-cosmic.1.5.9.css} +0 -0
  203. /package/dist/palettes/{palette-cosmic.1.5.3.min.css → palette-cosmic.1.5.9.min.css} +0 -0
  204. /package/dist/palettes/{palette-default.1.5.3.css → palette-default.1.5.9.css} +0 -0
  205. /package/dist/palettes/{palette-default.1.5.3.min.css → palette-default.1.5.9.min.css} +0 -0
  206. /package/dist/palettes/{palette-ocean.1.5.3.css → palette-ocean.1.5.9.css} +0 -0
  207. /package/dist/palettes/{palette-ocean.1.5.3.min.css → palette-ocean.1.5.9.min.css} +0 -0
  208. /package/dist/palettes/{palette-spring.1.5.3.css → palette-spring.1.5.9.css} +0 -0
  209. /package/dist/palettes/{palette-spring.1.5.3.min.css → palette-spring.1.5.9.min.css} +0 -0
  210. /package/dist/palettes/{palette-winter.1.5.3.css → palette-winter.1.5.9.css} +0 -0
  211. /package/dist/palettes/{palette-winter.1.5.3.min.css → palette-winter.1.5.9.min.css} +0 -0
@@ -52,11 +52,11 @@ export interface BaseComponentProps {
52
52
  'aria-labelledby'?: string;
53
53
  'aria-describedby'?: string;
54
54
  'data-testid'?: string;
55
- onClick?: React.MouseEventHandler<any>;
56
- onMouseEnter?: React.MouseEventHandler<any>;
57
- onMouseLeave?: React.MouseEventHandler<any>;
58
- onFocus?: React.FocusEventHandler<any>;
59
- onBlur?: React.FocusEventHandler<any>;
55
+ onClick?: React.MouseEventHandler<unknown>;
56
+ onMouseEnter?: React.MouseEventHandler<unknown>;
57
+ onMouseLeave?: React.MouseEventHandler<unknown>;
58
+ onFocus?: React.FocusEventHandler<unknown>;
59
+ onBlur?: React.FocusEventHandler<unknown>;
60
60
  }
61
61
  /**
62
62
  * Marker to identify QwickApps components
@@ -76,7 +76,1156 @@ export declare function useBaseProps<T extends BaseComponentProps>(props: T): {
76
76
  } | null;
77
77
  styleProps: {
78
78
  className: string | undefined;
79
- sx: any;
79
+ sx: {
80
+ width: string | number | undefined;
81
+ height: string | number | undefined;
82
+ minWidth: string | number | undefined;
83
+ minHeight: string | number | undefined;
84
+ maxWidth: string | number | undefined;
85
+ maxHeight: string | number | undefined;
86
+ } | {
87
+ width: string | number | undefined;
88
+ height: string | number | undefined;
89
+ minWidth: string | number | undefined;
90
+ minHeight: string | number | undefined;
91
+ maxWidth: string | number | undefined;
92
+ maxHeight: string | number | undefined;
93
+ } | {
94
+ backgroundColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | readonly string[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | readonly string[] | undefined>) | null;
95
+ display?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>) | null;
96
+ accentColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AccentColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AccentColor | undefined>) | null;
97
+ alignContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignContent | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignContent | undefined>) | null;
98
+ alignItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems | undefined>) | null;
99
+ alignSelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf | undefined>) | null;
100
+ alignTracks?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignTracks | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignTracks | undefined>) | null;
101
+ alignmentBaseline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | undefined>) | null;
102
+ anchorName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnchorName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnchorName | undefined>) | null;
103
+ anchorScope?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnchorScope | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnchorScope | undefined>) | null;
104
+ animationComposition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationComposition | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationComposition | undefined>) | null;
105
+ animationDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | undefined>) | null;
106
+ animationDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection | undefined>) | null;
107
+ animationDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | undefined>) | null;
108
+ animationFillMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationFillMode | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationFillMode | undefined>) | null;
109
+ animationIterationCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | undefined>) | null;
110
+ animationName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationName | undefined>) | null;
111
+ animationPlayState?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState | undefined>) | null;
112
+ animationRangeEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined>) | null;
113
+ animationRangeStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined>) | null;
114
+ animationTimeline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimeline | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimeline | undefined>) | null;
115
+ animationTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction | undefined>) | null;
116
+ appearance?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | undefined>) | null;
117
+ aspectRatio?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | undefined>) | null;
118
+ backdropFilter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackdropFilter | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackdropFilter | undefined>) | null;
119
+ backfaceVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | undefined>) | null;
120
+ backgroundAttachment?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundAttachment | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundAttachment | undefined>) | null;
121
+ backgroundBlendMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundBlendMode | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundBlendMode | undefined>) | null;
122
+ backgroundClip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip | undefined>) | null;
123
+ backgroundImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundImage | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundImage | undefined>) | null;
124
+ backgroundOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin | undefined>) | null;
125
+ backgroundPositionX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined>) | null;
126
+ backgroundPositionY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined>) | null;
127
+ backgroundRepeat?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundRepeat | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundRepeat | undefined>) | null;
128
+ backgroundSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined>) | null;
129
+ baselineShift?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined>) | null;
130
+ blockSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined>) | null;
131
+ borderBlockEndColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockEndColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockEndColor | undefined>) | null;
132
+ borderBlockEndStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | undefined>) | null;
133
+ borderBlockEndWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined>) | null;
134
+ borderBlockStartColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockStartColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockStartColor | undefined>) | null;
135
+ borderBlockStartStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | undefined>) | null;
136
+ borderBlockStartWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined>) | null;
137
+ borderBottomColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBottomColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBottomColor | undefined>) | null;
138
+ borderBottomLeftRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined>) | null;
139
+ borderBottomRightRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined>) | null;
140
+ borderBottomStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | undefined>) | null;
141
+ borderBottomWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined>) | null;
142
+ borderCollapse?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | undefined>) | null;
143
+ borderEndEndRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined>) | null;
144
+ borderEndStartRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined>) | null;
145
+ borderImageOutset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined>) | null;
146
+ borderImageRepeat?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderImageRepeat | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderImageRepeat | undefined>) | null;
147
+ borderImageSlice?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined>) | null;
148
+ borderImageSource?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderImageSource | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderImageSource | undefined>) | null;
149
+ borderImageWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined>) | null;
150
+ borderInlineEndColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineEndColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineEndColor | undefined>) | null;
151
+ borderInlineEndStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | undefined>) | null;
152
+ borderInlineEndWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined>) | null;
153
+ borderInlineStartColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStartColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStartColor | undefined>) | null;
154
+ borderInlineStartStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | undefined>) | null;
155
+ borderInlineStartWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined>) | null;
156
+ borderLeftColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderLeftColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderLeftColor | undefined>) | null;
157
+ borderLeftStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | undefined>) | null;
158
+ borderLeftWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined>) | null;
159
+ borderRightColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderRightColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderRightColor | undefined>) | null;
160
+ borderRightStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | undefined>) | null;
161
+ borderRightWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined>) | null;
162
+ borderSpacing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined>) | null;
163
+ borderStartEndRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined>) | null;
164
+ borderStartStartRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined>) | null;
165
+ borderTopColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderTopColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderTopColor | undefined>) | null;
166
+ borderTopLeftRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined>) | null;
167
+ borderTopRightRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined>) | null;
168
+ borderTopStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | undefined>) | null;
169
+ borderTopWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined>) | null;
170
+ bottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined>) | null;
171
+ boxDecorationBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | undefined>) | null;
172
+ boxSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined>) | null;
173
+ breakAfter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | undefined>) | null;
174
+ breakBefore?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | undefined>) | null;
175
+ breakInside?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | undefined>) | null;
176
+ captionSide?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | undefined>) | null;
177
+ caretColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CaretColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CaretColor | undefined>) | null;
178
+ caretShape?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | undefined>) | null;
179
+ clear?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | undefined>) | null;
180
+ clipPath?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ClipPath | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ClipPath | undefined>) | null;
181
+ clipRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | undefined>) | null;
182
+ color?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined>) | null;
183
+ colorAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | undefined>) | null;
184
+ colorInterpolationFilters?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorInterpolationFilters | readonly NonNullable<import("csstype").Property.ColorInterpolationFilters | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorInterpolationFilters | readonly NonNullable<import("csstype").Property.ColorInterpolationFilters | undefined>[] | undefined>) | null;
185
+ colorScheme?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColorScheme | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColorScheme | undefined>) | null;
186
+ columnCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined>) | null;
187
+ columnFill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | undefined>) | null;
188
+ columnGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined>) | null;
189
+ columnRuleColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleColor | undefined>) | null;
190
+ columnRuleStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleStyle | undefined>) | null;
191
+ columnRuleWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined>) | null;
192
+ columnSpan?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | undefined>) | null;
193
+ columnWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined>) | null;
194
+ contain?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Contain | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Contain | undefined>) | null;
195
+ containIntrinsicBlockSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined>) | null;
196
+ containIntrinsicHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined>) | null;
197
+ containIntrinsicInlineSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined>) | null;
198
+ containIntrinsicWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined>) | null;
199
+ containerName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ContainerName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ContainerName | undefined>) | null;
200
+ containerType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ContainerType | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ContainerType | undefined>) | null;
201
+ content?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Content | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Content | undefined>) | null;
202
+ contentVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | undefined>) | null;
203
+ counterIncrement?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterIncrement | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterIncrement | undefined>) | null;
204
+ counterReset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterReset | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterReset | undefined>) | null;
205
+ counterSet?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterSet | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterSet | undefined>) | null;
206
+ cursor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Cursor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Cursor | undefined>) | null;
207
+ cx?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Cx<string | number> | readonly NonNullable<import("csstype").Property.Cx<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Cx<string | number> | readonly NonNullable<import("csstype").Property.Cx<string | number> | undefined>[] | undefined>) | null;
208
+ cy?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Cy<string | number> | readonly NonNullable<import("csstype").Property.Cy<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Cy<string | number> | readonly NonNullable<import("csstype").Property.Cy<string | number> | undefined>[] | undefined>) | null;
209
+ d?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.D | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.D | undefined>) | null;
210
+ direction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | undefined>) | null;
211
+ dominantBaseline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | undefined>) | null;
212
+ emptyCells?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | undefined>) | null;
213
+ fieldSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FieldSizing | readonly NonNullable<import("csstype").Property.FieldSizing | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FieldSizing | readonly NonNullable<import("csstype").Property.FieldSizing | undefined>[] | undefined>) | null;
214
+ fill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Fill | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Fill | undefined>) | null;
215
+ fillOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined>) | null;
216
+ fillRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | undefined>) | null;
217
+ filter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Filter | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Filter | undefined>) | null;
218
+ flexBasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined>) | null;
219
+ flexDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined>) | null;
220
+ flexGrow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined>) | null;
221
+ flexShrink?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined>) | null;
222
+ flexWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | undefined>) | null;
223
+ float?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | undefined>) | null;
224
+ floodColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FloodColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FloodColor | undefined>) | null;
225
+ floodOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined>) | null;
226
+ fontFamily?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFamily | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFamily | undefined>) | null;
227
+ fontFeatureSettings?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings | undefined>) | null;
228
+ fontKerning?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | undefined>) | null;
229
+ fontLanguageOverride?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontLanguageOverride | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontLanguageOverride | undefined>) | null;
230
+ fontOpticalSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | undefined>) | null;
231
+ fontPalette?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontPalette | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontPalette | undefined>) | null;
232
+ fontSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined>) | null;
233
+ fontSizeAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | undefined>) | null;
234
+ fontSmooth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined>) | null;
235
+ fontStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStyle | undefined>) | null;
236
+ fontSynthesis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontSynthesis | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontSynthesis | undefined>) | null;
237
+ fontSynthesisPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | undefined>) | null;
238
+ fontSynthesisSmallCaps?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | undefined>) | null;
239
+ fontSynthesisStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | undefined>) | null;
240
+ fontSynthesisWeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | undefined>) | null;
241
+ fontVariant?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariant | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariant | undefined>) | null;
242
+ fontVariantAlternates?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantAlternates | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantAlternates | undefined>) | null;
243
+ fontVariantCaps?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | undefined>) | null;
244
+ fontVariantEastAsian?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantEastAsian | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantEastAsian | undefined>) | null;
245
+ fontVariantEmoji?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | undefined>) | null;
246
+ fontVariantLigatures?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantLigatures | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantLigatures | undefined>) | null;
247
+ fontVariantNumeric?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantNumeric | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantNumeric | undefined>) | null;
248
+ fontVariantPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | undefined>) | null;
249
+ fontVariationSettings?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariationSettings | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariationSettings | undefined>) | null;
250
+ fontWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontWidth | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontWidth | undefined>) | null;
251
+ forcedColorAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | undefined>) | null;
252
+ gridAutoColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined>) | null;
253
+ gridAutoFlow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridAutoFlow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridAutoFlow | undefined>) | null;
254
+ gridAutoRows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined>) | null;
255
+ gridColumnEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumnEnd | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumnEnd | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined>) | null;
256
+ gridColumnStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumnStart | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumnStart | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined>) | null;
257
+ gridRowEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRowEnd | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRowEnd | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined>) | null;
258
+ gridRowStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRowStart | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRowStart | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined>) | null;
259
+ gridTemplateAreas?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridTemplateAreas | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridTemplateAreas | undefined>) | null;
260
+ gridTemplateColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined>) | null;
261
+ gridTemplateRows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined>) | null;
262
+ hangingPunctuation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.HangingPunctuation | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.HangingPunctuation | undefined>) | null;
263
+ height: string | number | readonly (import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | null | undefined)[] | {
264
+ [key: string]: import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | null | undefined;
265
+ } | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined>) | null | undefined;
266
+ hyphenateCharacter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.HyphenateCharacter | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.HyphenateCharacter | undefined>) | null;
267
+ hyphenateLimitChars?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.HyphenateLimitChars | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.HyphenateLimitChars | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined>) | null;
268
+ hyphens?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | undefined>) | null;
269
+ imageOrientation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ImageOrientation | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ImageOrientation | undefined>) | null;
270
+ imageRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | undefined>) | null;
271
+ imageResolution?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ImageResolution | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ImageResolution | undefined>) | null;
272
+ initialLetter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | undefined>) | null;
273
+ initialLetterAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetterAlign | readonly NonNullable<import("csstype").Property.InitialLetterAlign | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetterAlign | readonly NonNullable<import("csstype").Property.InitialLetterAlign | undefined>[] | undefined>) | null;
274
+ inlineSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined>) | null;
275
+ insetBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined>) | null;
276
+ insetBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined>) | null;
277
+ insetInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined>) | null;
278
+ insetInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined>) | null;
279
+ interpolateSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InterpolateSize | readonly NonNullable<import("csstype").Property.InterpolateSize | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InterpolateSize | readonly NonNullable<import("csstype").Property.InterpolateSize | undefined>[] | undefined>) | null;
280
+ isolation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | undefined>) | null;
281
+ justifyContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent | undefined>) | null;
282
+ justifyItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyItems | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyItems | undefined>) | null;
283
+ justifySelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifySelf | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifySelf | undefined>) | null;
284
+ justifyTracks?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyTracks | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyTracks | undefined>) | null;
285
+ left?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined>) | null;
286
+ letterSpacing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined>) | null;
287
+ lightingColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.LightingColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.LightingColor | undefined>) | null;
288
+ lineBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | undefined>) | null;
289
+ lineHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined>) | null;
290
+ lineHeightStep?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined>) | null;
291
+ listStyleImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ListStyleImage | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ListStyleImage | undefined>) | null;
292
+ listStylePosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | undefined>) | null;
293
+ listStyleType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ListStyleType | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ListStyleType | undefined>) | null;
294
+ marginBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined>) | null;
295
+ marginBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined>) | null;
296
+ marginBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined>) | null;
297
+ marginInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined>) | null;
298
+ marginInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined>) | null;
299
+ marginLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>) | null;
300
+ marginRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined>) | null;
301
+ marginTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>) | null;
302
+ marginTrim?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | undefined>) | null;
303
+ marker?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Marker | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Marker | undefined>) | null;
304
+ markerEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerEnd | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerEnd | undefined>) | null;
305
+ markerMid?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerMid | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerMid | undefined>) | null;
306
+ markerStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerStart | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerStart | undefined>) | null;
307
+ maskBorderMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | undefined>) | null;
308
+ maskBorderOutset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined>) | null;
309
+ maskBorderRepeat?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderRepeat | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderRepeat | undefined>) | null;
310
+ maskBorderSlice?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined>) | null;
311
+ maskBorderSource?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderSource | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderSource | undefined>) | null;
312
+ maskBorderWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined>) | null;
313
+ maskClip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskClip | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskClip | undefined>) | null;
314
+ maskComposite?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskComposite | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskComposite | undefined>) | null;
315
+ maskImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskImage | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskImage | undefined>) | null;
316
+ maskMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskMode | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskMode | undefined>) | null;
317
+ maskOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskOrigin | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskOrigin | undefined>) | null;
318
+ maskPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined>) | null;
319
+ maskRepeat?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskRepeat | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskRepeat | undefined>) | null;
320
+ maskSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined>) | null;
321
+ maskType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | undefined>) | null;
322
+ masonryAutoFlow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MasonryAutoFlow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MasonryAutoFlow | undefined>) | null;
323
+ mathDepth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | undefined>) | null;
324
+ mathShift?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | undefined>) | null;
325
+ mathStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | undefined>) | null;
326
+ maxBlockSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined>) | null;
327
+ maxHeight: string | number | readonly (import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | null | undefined)[] | {
328
+ [key: string]: import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | null | undefined;
329
+ } | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined>) | null | undefined;
330
+ maxInlineSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined>) | null;
331
+ maxLines?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | undefined>) | null;
332
+ maxWidth: string | number | readonly (import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | null | undefined)[] | {
333
+ [key: string]: import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | null | undefined;
334
+ } | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined>) | null | undefined;
335
+ minBlockSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined>) | null;
336
+ minHeight: string | number | readonly (import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | null | undefined)[] | {
337
+ [key: string]: import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | null | undefined;
338
+ } | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined>) | null | undefined;
339
+ minInlineSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined>) | null;
340
+ minWidth: string | number | readonly (import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | null | undefined)[] | {
341
+ [key: string]: import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | null | undefined;
342
+ } | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined>) | null | undefined;
343
+ mixBlendMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | undefined>) | null;
344
+ motionDistance?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined>) | null;
345
+ motionPath?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetPath | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetPath | undefined>) | null;
346
+ motionRotation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetRotate | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetRotate | undefined>) | null;
347
+ objectFit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | undefined>) | null;
348
+ objectPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined>) | null;
349
+ objectViewBox?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ObjectViewBox | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ObjectViewBox | undefined>) | null;
350
+ offsetAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined>) | null;
351
+ offsetDistance?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined>) | null;
352
+ offsetPath?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetPath | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetPath | undefined>) | null;
353
+ offsetPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined>) | null;
354
+ offsetRotate?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetRotate | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetRotate | undefined>) | null;
355
+ offsetRotation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetRotate | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetRotate | undefined>) | null;
356
+ opacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined>) | null;
357
+ order?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined>) | null;
358
+ orphans?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined>) | null;
359
+ outlineColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OutlineColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OutlineColor | undefined>) | null;
360
+ outlineOffset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined>) | null;
361
+ outlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle | undefined>[] | undefined>) | null;
362
+ outlineWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined>) | null;
363
+ overflowAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | undefined>) | null;
364
+ overflowBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | undefined>) | null;
365
+ overflowClipBox?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | undefined>) | null;
366
+ overflowClipMargin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined>) | null;
367
+ overflowInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | undefined>) | null;
368
+ overflowWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | undefined>) | null;
369
+ overflowX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | undefined>) | null;
370
+ overflowY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | undefined>) | null;
371
+ overlay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | undefined>) | null;
372
+ overscrollBehaviorBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | undefined>) | null;
373
+ overscrollBehaviorInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | undefined>) | null;
374
+ overscrollBehaviorX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | undefined>) | null;
375
+ overscrollBehaviorY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | undefined>) | null;
376
+ paddingBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined>) | null;
377
+ paddingBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined>) | null;
378
+ paddingBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined>) | null;
379
+ paddingInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined>) | null;
380
+ paddingInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined>) | null;
381
+ paddingLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>) | null;
382
+ paddingRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined>) | null;
383
+ paddingTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>) | null;
384
+ page?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Page | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Page | undefined>) | null;
385
+ paintOrder?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PaintOrder | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PaintOrder | undefined>) | null;
386
+ perspective?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined>) | null;
387
+ perspectiveOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined>) | null;
388
+ pointerEvents?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | undefined>) | null;
389
+ position?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | undefined>) | null;
390
+ positionAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionAnchor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionAnchor | undefined>) | null;
391
+ positionArea?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionArea | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionArea | undefined>) | null;
392
+ positionTryFallbacks?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTryFallbacks | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTryFallbacks | undefined>) | null;
393
+ positionTryOrder?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PositionTryOrder | readonly NonNullable<import("csstype").Property.PositionTryOrder | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PositionTryOrder | readonly NonNullable<import("csstype").Property.PositionTryOrder | undefined>[] | undefined>) | null;
394
+ positionVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionVisibility | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionVisibility | undefined>) | null;
395
+ printColorAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | undefined>) | null;
396
+ quotes?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Quotes | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Quotes | undefined>) | null;
397
+ r?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.R<string | number> | readonly NonNullable<import("csstype").Property.R<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.R<string | number> | readonly NonNullable<import("csstype").Property.R<string | number> | undefined>[] | undefined>) | null;
398
+ resize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | undefined>) | null;
399
+ right?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined>) | null;
400
+ rotate?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Rotate | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Rotate | undefined>) | null;
401
+ rowGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined>) | null;
402
+ rubyAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | undefined>) | null;
403
+ rubyMerge?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | undefined>) | null;
404
+ rubyOverhang?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyOverhang | readonly NonNullable<import("csstype").Property.RubyOverhang | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyOverhang | readonly NonNullable<import("csstype").Property.RubyOverhang | undefined>[] | undefined>) | null;
405
+ rubyPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.RubyPosition | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.RubyPosition | undefined>) | null;
406
+ rx?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Rx<string | number> | readonly NonNullable<import("csstype").Property.Rx<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Rx<string | number> | readonly NonNullable<import("csstype").Property.Rx<string | number> | undefined>[] | undefined>) | null;
407
+ ry?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Ry<string | number> | readonly NonNullable<import("csstype").Property.Ry<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Ry<string | number> | readonly NonNullable<import("csstype").Property.Ry<string | number> | undefined>[] | undefined>) | null;
408
+ scale?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined>) | null;
409
+ scrollBehavior?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | undefined>) | null;
410
+ scrollInitialTarget?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollInitialTarget | readonly NonNullable<import("csstype").Property.ScrollInitialTarget | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollInitialTarget | readonly NonNullable<import("csstype").Property.ScrollInitialTarget | undefined>[] | undefined>) | null;
411
+ scrollMarginBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined>) | null;
412
+ scrollMarginBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined>) | null;
413
+ scrollMarginBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined>) | null;
414
+ scrollMarginInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined>) | null;
415
+ scrollMarginInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined>) | null;
416
+ scrollMarginLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined>) | null;
417
+ scrollMarginRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined>) | null;
418
+ scrollMarginTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined>) | null;
419
+ scrollPaddingBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined>) | null;
420
+ scrollPaddingBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined>) | null;
421
+ scrollPaddingBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined>) | null;
422
+ scrollPaddingInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined>) | null;
423
+ scrollPaddingInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined>) | null;
424
+ scrollPaddingLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined>) | null;
425
+ scrollPaddingRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined>) | null;
426
+ scrollPaddingTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined>) | null;
427
+ scrollSnapAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapAlign | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapAlign | undefined>) | null;
428
+ scrollSnapMarginBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined>) | null;
429
+ scrollSnapMarginLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined>) | null;
430
+ scrollSnapMarginRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined>) | null;
431
+ scrollSnapMarginTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined>) | null;
432
+ scrollSnapStop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | undefined>) | null;
433
+ scrollSnapType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapType | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapType | undefined>) | null;
434
+ scrollTimelineAxis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollTimelineAxis | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollTimelineAxis | undefined>) | null;
435
+ scrollTimelineName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollTimelineName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollTimelineName | undefined>) | null;
436
+ scrollbarColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollbarColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollbarColor | undefined>) | null;
437
+ scrollbarGutter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollbarGutter | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollbarGutter | undefined>) | null;
438
+ scrollbarWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | undefined>) | null;
439
+ shapeImageThreshold?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined>) | null;
440
+ shapeMargin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined>) | null;
441
+ shapeOutside?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ShapeOutside | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ShapeOutside | undefined>) | null;
442
+ shapeRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | undefined>) | null;
443
+ speakAs?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.SpeakAs | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.SpeakAs | undefined>) | null;
444
+ stopColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StopColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StopColor | undefined>) | null;
445
+ stopOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined>) | null;
446
+ stroke?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Stroke | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Stroke | undefined>) | null;
447
+ strokeColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StrokeColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StrokeColor | undefined>) | null;
448
+ strokeDasharray?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined>) | null;
449
+ strokeDashoffset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined>) | null;
450
+ strokeLinecap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | undefined>) | null;
451
+ strokeLinejoin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | undefined>) | null;
452
+ strokeMiterlimit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined>) | null;
453
+ strokeOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined>) | null;
454
+ strokeWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined>) | null;
455
+ tabSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined>) | null;
456
+ tableLayout?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | undefined>) | null;
457
+ textAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | undefined>) | null;
458
+ textAlignLast?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | undefined>) | null;
459
+ textAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | undefined>) | null;
460
+ textAutospace?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextAutospace | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextAutospace | undefined>) | null;
461
+ textBox?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextBox | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextBox | undefined>) | null;
462
+ textBoxEdge?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextBoxEdge | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextBoxEdge | undefined>) | null;
463
+ textBoxTrim?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextBoxTrim | readonly NonNullable<import("csstype").Property.TextBoxTrim | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextBoxTrim | readonly NonNullable<import("csstype").Property.TextBoxTrim | undefined>[] | undefined>) | null;
464
+ textCombineUpright?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextCombineUpright | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextCombineUpright | undefined>) | null;
465
+ textDecorationColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor | undefined>) | null;
466
+ textDecorationLine?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine | undefined>) | null;
467
+ textDecorationSkip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationSkip | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationSkip | undefined>) | null;
468
+ textDecorationSkipInk?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | undefined>) | null;
469
+ textDecorationStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | undefined>) | null;
470
+ textDecorationThickness?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined>) | null;
471
+ textEmphasisColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisColor | undefined>) | null;
472
+ textEmphasisPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisPosition | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisPosition | undefined>) | null;
473
+ textEmphasisStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisStyle | undefined>) | null;
474
+ textIndent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined>) | null;
475
+ textJustify?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | undefined>) | null;
476
+ textOrientation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | undefined>) | null;
477
+ textOverflow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined>) | null;
478
+ textRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | undefined>) | null;
479
+ textShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextShadow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextShadow | undefined>) | null;
480
+ textSizeAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust | undefined>) | null;
481
+ textSpacingTrim?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextSpacingTrim | readonly NonNullable<import("csstype").Property.TextSpacingTrim | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextSpacingTrim | readonly NonNullable<import("csstype").Property.TextSpacingTrim | undefined>[] | undefined>) | null;
482
+ textTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextTransform | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextTransform | undefined>) | null;
483
+ textUnderlineOffset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined>) | null;
484
+ textUnderlinePosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextUnderlinePosition | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextUnderlinePosition | undefined>) | null;
485
+ textWrapMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextWrapMode | readonly NonNullable<import("csstype").Property.TextWrapMode | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextWrapMode | readonly NonNullable<import("csstype").Property.TextWrapMode | undefined>[] | undefined>) | null;
486
+ textWrapStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextWrapStyle | readonly NonNullable<import("csstype").Property.TextWrapStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextWrapStyle | readonly NonNullable<import("csstype").Property.TextWrapStyle | undefined>[] | undefined>) | null;
487
+ timelineScope?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TimelineScope | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TimelineScope | undefined>) | null;
488
+ top?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined>) | null;
489
+ touchAction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TouchAction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TouchAction | undefined>) | null;
490
+ transform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined>) | null;
491
+ transformBox?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | undefined>) | null;
492
+ transformOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined>) | null;
493
+ transformStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | undefined>) | null;
494
+ transitionBehavior?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionBehavior | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionBehavior | undefined>) | null;
495
+ transitionDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined>) | null;
496
+ transitionDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined>) | null;
497
+ transitionProperty?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined>) | null;
498
+ transitionTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined>) | null;
499
+ translate?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined>) | null;
500
+ unicodeBidi?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | undefined>) | null;
501
+ userSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | undefined>) | null;
502
+ vectorEffect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | undefined>) | null;
503
+ verticalAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined>) | null;
504
+ viewTimelineAxis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimelineAxis | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimelineAxis | undefined>) | null;
505
+ viewTimelineInset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined>) | null;
506
+ viewTimelineName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimelineName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimelineName | undefined>) | null;
507
+ viewTransitionClass?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTransitionClass | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTransitionClass | undefined>) | null;
508
+ viewTransitionName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTransitionName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTransitionName | undefined>) | null;
509
+ visibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | undefined>) | null;
510
+ whiteSpace?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpace | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpace | undefined>) | null;
511
+ whiteSpaceCollapse?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | undefined>) | null;
512
+ widows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined>) | null;
513
+ width: string | number | readonly (import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | null | undefined)[] | {
514
+ [key: string]: import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | null | undefined;
515
+ } | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined>) | null | undefined;
516
+ willChange?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WillChange | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WillChange | undefined>) | null;
517
+ wordBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | undefined>) | null;
518
+ wordSpacing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined>) | null;
519
+ wordWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | undefined>) | null;
520
+ writingMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | undefined>) | null;
521
+ x?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.X<string | number> | readonly NonNullable<import("csstype").Property.X<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.X<string | number> | readonly NonNullable<import("csstype").Property.X<string | number> | undefined>[] | undefined>) | null;
522
+ y?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Y<string | number> | readonly NonNullable<import("csstype").Property.Y<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Y<string | number> | readonly NonNullable<import("csstype").Property.Y<string | number> | undefined>[] | undefined>) | null;
523
+ zoom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | undefined>) | null;
524
+ all?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Globals | readonly NonNullable<import("csstype").Globals | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Globals | readonly NonNullable<import("csstype").Globals | undefined>[] | undefined>) | null;
525
+ animation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | undefined>) | null;
526
+ animationRange?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined>) | null;
527
+ background?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined>) | null;
528
+ backgroundPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined>) | null;
529
+ borderBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined>) | null;
530
+ borderBlockColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockColor | undefined>) | null;
531
+ borderBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined>) | null;
532
+ borderBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined>) | null;
533
+ borderBlockStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockStyle | undefined>) | null;
534
+ borderBlockWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined>) | null;
535
+ borderBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined>) | null;
536
+ borderColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderColor | undefined>) | null;
537
+ borderImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | undefined>) | null;
538
+ borderInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined>) | null;
539
+ borderInlineColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineColor | undefined>) | null;
540
+ borderInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined>) | null;
541
+ borderInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined>) | null;
542
+ borderInlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStyle | undefined>) | null;
543
+ borderInlineWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined>) | null;
544
+ borderLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined>) | null;
545
+ borderRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined>) | null;
546
+ borderRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined>) | null;
547
+ borderStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderStyle | undefined>) | null;
548
+ borderTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined>) | null;
549
+ borderWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined>) | null;
550
+ caret?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Caret | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Caret | undefined>) | null;
551
+ columnRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined>) | null;
552
+ columns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined>) | null;
553
+ containIntrinsicSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined>) | null;
554
+ container?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Container | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Container | undefined>) | null;
555
+ flex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined>) | null;
556
+ flexFlow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FlexFlow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FlexFlow | undefined>) | null;
557
+ font?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Font | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Font | undefined>) | null;
558
+ gap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined>) | null;
559
+ grid?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Grid | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Grid | undefined>) | null;
560
+ gridArea?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined>) | null;
561
+ gridColumn?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined>) | null;
562
+ gridRow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined>) | null;
563
+ gridTemplate?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridTemplate | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridTemplate | undefined>) | null;
564
+ inset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined>) | null;
565
+ insetBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined>) | null;
566
+ insetInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined>) | null;
567
+ lineClamp?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineClamp | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineClamp | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined>) | null;
568
+ listStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ListStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ListStyle | undefined>) | null;
569
+ margin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined>) | null;
570
+ marginBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined>) | null;
571
+ marginInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined>) | null;
572
+ mask?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined>) | null;
573
+ maskBorder?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | undefined>) | null;
574
+ motion?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined>) | null;
575
+ offset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined>) | null;
576
+ outline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined>) | null;
577
+ overflow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Overflow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Overflow | undefined>) | null;
578
+ overscrollBehavior?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OverscrollBehavior | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OverscrollBehavior | undefined>) | null;
579
+ padding?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined>) | null;
580
+ paddingBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined>) | null;
581
+ paddingInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined>) | null;
582
+ placeContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceContent | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceContent | undefined>) | null;
583
+ placeItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceItems | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceItems | undefined>) | null;
584
+ placeSelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceSelf | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceSelf | undefined>) | null;
585
+ positionTry?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTry | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTry | undefined>) | null;
586
+ scrollMargin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined>) | null;
587
+ scrollMarginBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined>) | null;
588
+ scrollMarginInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined>) | null;
589
+ scrollPadding?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined>) | null;
590
+ scrollPaddingBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined>) | null;
591
+ scrollPaddingInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined>) | null;
592
+ scrollSnapMargin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined>) | null;
593
+ scrollTimeline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollTimeline | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollTimeline | undefined>) | null;
594
+ textDecoration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined>) | null;
595
+ textEmphasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasis | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasis | undefined>) | null;
596
+ textWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextWrap | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextWrap | undefined>) | null;
597
+ transition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined>) | null;
598
+ viewTimeline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimeline | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimeline | undefined>) | null;
599
+ MozAnimationDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | undefined>) | null;
600
+ MozAnimationDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection | undefined>) | null;
601
+ MozAnimationDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | undefined>) | null;
602
+ MozAnimationFillMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationFillMode | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationFillMode | undefined>) | null;
603
+ MozAnimationIterationCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | undefined>) | null;
604
+ MozAnimationName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationName | undefined>) | null;
605
+ MozAnimationPlayState?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState | undefined>) | null;
606
+ MozAnimationTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction | undefined>) | null;
607
+ MozAppearance?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | undefined>) | null;
608
+ MozBackfaceVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | undefined>) | null;
609
+ MozBinding?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBinding | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBinding | undefined>) | null;
610
+ MozBorderBottomColors?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderBottomColors | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderBottomColors | undefined>) | null;
611
+ MozBorderEndColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineEndColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineEndColor | undefined>) | null;
612
+ MozBorderEndStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | undefined>) | null;
613
+ MozBorderEndWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined>) | null;
614
+ MozBorderLeftColors?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderLeftColors | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderLeftColors | undefined>) | null;
615
+ MozBorderRightColors?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderRightColors | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderRightColors | undefined>) | null;
616
+ MozBorderStartColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStartColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStartColor | undefined>) | null;
617
+ MozBorderStartStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | undefined>) | null;
618
+ MozBorderTopColors?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderTopColors | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderTopColors | undefined>) | null;
619
+ MozBoxSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined>) | null;
620
+ MozColumnRuleColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleColor | undefined>) | null;
621
+ MozColumnRuleStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleStyle | undefined>) | null;
622
+ MozColumnRuleWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined>) | null;
623
+ MozColumnWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined>) | null;
624
+ MozContextProperties?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozContextProperties | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozContextProperties | undefined>) | null;
625
+ MozFontFeatureSettings?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings | undefined>) | null;
626
+ MozFontLanguageOverride?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontLanguageOverride | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontLanguageOverride | undefined>) | null;
627
+ MozHyphens?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | undefined>) | null;
628
+ MozMarginEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined>) | null;
629
+ MozMarginStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined>) | null;
630
+ MozOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | undefined>) | null;
631
+ MozOsxFontSmoothing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined>) | null;
632
+ MozOutlineRadiusBottomleft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined>) | null;
633
+ MozOutlineRadiusBottomright?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined>) | null;
634
+ MozOutlineRadiusTopleft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined>) | null;
635
+ MozOutlineRadiusTopright?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined>) | null;
636
+ MozPaddingEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined>) | null;
637
+ MozPaddingStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined>) | null;
638
+ MozPerspective?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined>) | null;
639
+ MozPerspectiveOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined>) | null;
640
+ MozStackSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | undefined>) | null;
641
+ MozTabSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined>) | null;
642
+ MozTextBlink?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | undefined>) | null;
643
+ MozTextSizeAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust | undefined>) | null;
644
+ MozTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined>) | null;
645
+ MozTransformOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined>) | null;
646
+ MozTransformStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | undefined>) | null;
647
+ MozUserModify?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | undefined>) | null;
648
+ MozUserSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | undefined>) | null;
649
+ MozWindowDragging?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | undefined>) | null;
650
+ MozWindowShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | undefined>) | null;
651
+ msAccelerator?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | undefined>) | null;
652
+ msBlockProgression?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | undefined>) | null;
653
+ msContentZoomChaining?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | undefined>) | null;
654
+ msContentZoomLimitMax?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomLimitMax | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomLimitMax | undefined>) | null;
655
+ msContentZoomLimitMin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomLimitMin | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomLimitMin | undefined>) | null;
656
+ msContentZoomSnapPoints?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | undefined>) | null;
657
+ msContentZoomSnapType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | undefined>) | null;
658
+ msContentZooming?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | undefined>) | null;
659
+ msFilter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsFilter | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsFilter | undefined>) | null;
660
+ msFlexDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined>) | null;
661
+ msFlexPositive?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined>) | null;
662
+ msFlowFrom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsFlowFrom | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsFlowFrom | undefined>) | null;
663
+ msFlowInto?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsFlowInto | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsFlowInto | undefined>) | null;
664
+ msGridColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined>) | null;
665
+ msGridRows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined>) | null;
666
+ msHighContrastAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | undefined>) | null;
667
+ msHyphenateLimitChars?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitChars | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitChars | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined>) | null;
668
+ msHyphenateLimitLines?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | undefined>) | null;
669
+ msHyphenateLimitZone?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined>) | null;
670
+ msHyphens?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | undefined>) | null;
671
+ msImeAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | undefined>) | null;
672
+ msLineBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | undefined>) | null;
673
+ msOrder?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined>) | null;
674
+ msOverflowStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | undefined>) | null;
675
+ msOverflowX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | undefined>) | null;
676
+ msOverflowY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | undefined>) | null;
677
+ msScrollChaining?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | undefined>) | null;
678
+ msScrollLimitXMax?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined>) | null;
679
+ msScrollLimitXMin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined>) | null;
680
+ msScrollLimitYMax?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined>) | null;
681
+ msScrollLimitYMin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined>) | null;
682
+ msScrollRails?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | undefined>) | null;
683
+ msScrollSnapPointsX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollSnapPointsX | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollSnapPointsX | undefined>) | null;
684
+ msScrollSnapPointsY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollSnapPointsY | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollSnapPointsY | undefined>) | null;
685
+ msScrollSnapType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | undefined>) | null;
686
+ msScrollTranslation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | undefined>) | null;
687
+ msScrollbar3dlightColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | undefined>) | null;
688
+ msScrollbarArrowColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarArrowColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarArrowColor | undefined>) | null;
689
+ msScrollbarBaseColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarBaseColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarBaseColor | undefined>) | null;
690
+ msScrollbarDarkshadowColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | undefined>) | null;
691
+ msScrollbarFaceColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarFaceColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarFaceColor | undefined>) | null;
692
+ msScrollbarHighlightColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | undefined>) | null;
693
+ msScrollbarShadowColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarShadowColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarShadowColor | undefined>) | null;
694
+ msScrollbarTrackColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarTrackColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollbarTrackColor | undefined>) | null;
695
+ msTextAutospace?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | undefined>) | null;
696
+ msTextCombineHorizontal?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextCombineUpright | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextCombineUpright | undefined>) | null;
697
+ msTextOverflow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined>) | null;
698
+ msTouchAction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TouchAction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TouchAction | undefined>) | null;
699
+ msTouchSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | undefined>) | null;
700
+ msTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined>) | null;
701
+ msTransformOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined>) | null;
702
+ msTransitionDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined>) | null;
703
+ msTransitionDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined>) | null;
704
+ msTransitionProperty?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined>) | null;
705
+ msTransitionTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined>) | null;
706
+ msUserSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | undefined>) | null;
707
+ msWordBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | undefined>) | null;
708
+ msWrapFlow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | undefined>) | null;
709
+ msWrapMargin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined>) | null;
710
+ msWrapThrough?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | undefined>) | null;
711
+ msWritingMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | undefined>) | null;
712
+ WebkitAlignContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignContent | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignContent | undefined>) | null;
713
+ WebkitAlignItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems | undefined>) | null;
714
+ WebkitAlignSelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf | undefined>) | null;
715
+ WebkitAnimationDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | undefined>) | null;
716
+ WebkitAnimationDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection | undefined>) | null;
717
+ WebkitAnimationDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | undefined>) | null;
718
+ WebkitAnimationFillMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationFillMode | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationFillMode | undefined>) | null;
719
+ WebkitAnimationIterationCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | undefined>) | null;
720
+ WebkitAnimationName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationName | undefined>) | null;
721
+ WebkitAnimationPlayState?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState | undefined>) | null;
722
+ WebkitAnimationTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction | undefined>) | null;
723
+ WebkitAppearance?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | undefined>) | null;
724
+ WebkitBackdropFilter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackdropFilter | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackdropFilter | undefined>) | null;
725
+ WebkitBackfaceVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | undefined>) | null;
726
+ WebkitBackgroundClip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip | undefined>) | null;
727
+ WebkitBackgroundOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin | undefined>) | null;
728
+ WebkitBackgroundSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined>) | null;
729
+ WebkitBorderBeforeColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | undefined>) | null;
730
+ WebkitBorderBeforeStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | undefined>) | null;
731
+ WebkitBorderBeforeWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined>) | null;
732
+ WebkitBorderBottomLeftRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined>) | null;
733
+ WebkitBorderBottomRightRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined>) | null;
734
+ WebkitBorderImageSlice?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined>) | null;
735
+ WebkitBorderTopLeftRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined>) | null;
736
+ WebkitBorderTopRightRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined>) | null;
737
+ WebkitBoxDecorationBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | undefined>) | null;
738
+ WebkitBoxReflect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined>) | null;
739
+ WebkitBoxShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BoxShadow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BoxShadow | undefined>) | null;
740
+ WebkitBoxSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined>) | null;
741
+ WebkitClipPath?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ClipPath | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ClipPath | undefined>) | null;
742
+ WebkitColumnCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined>) | null;
743
+ WebkitColumnFill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | undefined>) | null;
744
+ WebkitColumnRuleColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleColor | undefined>) | null;
745
+ WebkitColumnRuleStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleStyle | undefined>) | null;
746
+ WebkitColumnRuleWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined>) | null;
747
+ WebkitColumnSpan?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | undefined>) | null;
748
+ WebkitColumnWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined>) | null;
749
+ WebkitFilter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Filter | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Filter | undefined>) | null;
750
+ WebkitFlexBasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined>) | null;
751
+ WebkitFlexDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined>) | null;
752
+ WebkitFlexGrow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined>) | null;
753
+ WebkitFlexShrink?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined>) | null;
754
+ WebkitFlexWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | undefined>) | null;
755
+ WebkitFontFeatureSettings?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings | undefined>) | null;
756
+ WebkitFontKerning?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | undefined>) | null;
757
+ WebkitFontSmoothing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined>) | null;
758
+ WebkitFontVariantLigatures?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantLigatures | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantLigatures | undefined>) | null;
759
+ WebkitHyphenateCharacter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.HyphenateCharacter | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.HyphenateCharacter | undefined>) | null;
760
+ WebkitHyphens?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | undefined>) | null;
761
+ WebkitInitialLetter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | undefined>) | null;
762
+ WebkitJustifyContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent | undefined>) | null;
763
+ WebkitLineBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | undefined>) | null;
764
+ WebkitLineClamp?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined>) | null;
765
+ WebkitLogicalHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined>) | null;
766
+ WebkitLogicalWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined>) | null;
767
+ WebkitMarginEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined>) | null;
768
+ WebkitMarginStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined>) | null;
769
+ WebkitMaskAttachment?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskAttachment | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskAttachment | undefined>) | null;
770
+ WebkitMaskBoxImageOutset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined>) | null;
771
+ WebkitMaskBoxImageRepeat?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderRepeat | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderRepeat | undefined>) | null;
772
+ WebkitMaskBoxImageSlice?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined>) | null;
773
+ WebkitMaskBoxImageSource?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderSource | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderSource | undefined>) | null;
774
+ WebkitMaskBoxImageWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined>) | null;
775
+ WebkitMaskClip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskClip | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskClip | undefined>) | null;
776
+ WebkitMaskComposite?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskComposite | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskComposite | undefined>) | null;
777
+ WebkitMaskImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskImage | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskImage | undefined>) | null;
778
+ WebkitMaskOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskOrigin | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskOrigin | undefined>) | null;
779
+ WebkitMaskPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined>) | null;
780
+ WebkitMaskPositionX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined>) | null;
781
+ WebkitMaskPositionY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined>) | null;
782
+ WebkitMaskRepeat?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskRepeat | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskRepeat | undefined>) | null;
783
+ WebkitMaskRepeatX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | undefined>) | null;
784
+ WebkitMaskRepeatY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | undefined>) | null;
785
+ WebkitMaskSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined>) | null;
786
+ WebkitMaxInlineSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined>) | null;
787
+ WebkitOrder?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined>) | null;
788
+ WebkitOverflowScrolling?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | undefined>) | null;
789
+ WebkitPaddingEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined>) | null;
790
+ WebkitPaddingStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined>) | null;
791
+ WebkitPerspective?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined>) | null;
792
+ WebkitPerspectiveOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined>) | null;
793
+ WebkitPrintColorAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | undefined>) | null;
794
+ WebkitRubyPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.RubyPosition | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.RubyPosition | undefined>) | null;
795
+ WebkitScrollSnapType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapType | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapType | undefined>) | null;
796
+ WebkitShapeMargin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined>) | null;
797
+ WebkitTapHighlightColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitTapHighlightColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitTapHighlightColor | undefined>) | null;
798
+ WebkitTextCombine?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextCombineUpright | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextCombineUpright | undefined>) | null;
799
+ WebkitTextDecorationColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor | undefined>) | null;
800
+ WebkitTextDecorationLine?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine | undefined>) | null;
801
+ WebkitTextDecorationSkip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationSkip | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationSkip | undefined>) | null;
802
+ WebkitTextDecorationStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | undefined>) | null;
803
+ WebkitTextEmphasisColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisColor | undefined>) | null;
804
+ WebkitTextEmphasisPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisPosition | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisPosition | undefined>) | null;
805
+ WebkitTextEmphasisStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisStyle | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasisStyle | undefined>) | null;
806
+ WebkitTextFillColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitTextFillColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitTextFillColor | undefined>) | null;
807
+ WebkitTextOrientation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | undefined>) | null;
808
+ WebkitTextSizeAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust | undefined>) | null;
809
+ WebkitTextStrokeColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitTextStrokeColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitTextStrokeColor | undefined>) | null;
810
+ WebkitTextStrokeWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined>) | null;
811
+ WebkitTextUnderlinePosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextUnderlinePosition | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextUnderlinePosition | undefined>) | null;
812
+ WebkitTouchCallout?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | undefined>) | null;
813
+ WebkitTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined>) | null;
814
+ WebkitTransformOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined>) | null;
815
+ WebkitTransformStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | undefined>) | null;
816
+ WebkitTransitionDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined>) | null;
817
+ WebkitTransitionDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined>) | null;
818
+ WebkitTransitionProperty?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined>) | null;
819
+ WebkitTransitionTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined>) | null;
820
+ WebkitUserModify?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | undefined>) | null;
821
+ WebkitUserSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | undefined>) | null;
822
+ WebkitWritingMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | undefined>) | null;
823
+ MozAnimation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | undefined>) | null;
824
+ MozBorderImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | undefined>) | null;
825
+ MozColumnRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined>) | null;
826
+ MozColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined>) | null;
827
+ MozOutlineRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined>) | null;
828
+ MozTransition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined>) | null;
829
+ msContentZoomLimit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomLimit | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomLimit | undefined>) | null;
830
+ msContentZoomSnap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomSnap | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomSnap | undefined>) | null;
831
+ msFlex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined>) | null;
832
+ msScrollLimit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollLimit | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollLimit | undefined>) | null;
833
+ msScrollSnapX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollSnapX | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollSnapX | undefined>) | null;
834
+ msScrollSnapY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollSnapY | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsScrollSnapY | undefined>) | null;
835
+ msTransition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined>) | null;
836
+ WebkitAnimation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | undefined>) | null;
837
+ WebkitBorderBefore?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined>) | null;
838
+ WebkitBorderImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | undefined>) | null;
839
+ WebkitBorderRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined>) | null;
840
+ WebkitColumnRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined>) | null;
841
+ WebkitColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined>) | null;
842
+ WebkitFlex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined>) | null;
843
+ WebkitFlexFlow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FlexFlow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FlexFlow | undefined>) | null;
844
+ WebkitMask?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined>) | null;
845
+ WebkitMaskBoxImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | undefined>) | null;
846
+ WebkitTextEmphasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasis | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasis | undefined>) | null;
847
+ WebkitTextStroke?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined>) | null;
848
+ WebkitTransition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined>) | null;
849
+ boxAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | undefined>) | null;
850
+ boxDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | undefined>) | null;
851
+ boxFlex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined>) | null;
852
+ boxFlexGroup?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined>) | null;
853
+ boxLines?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | undefined>) | null;
854
+ boxOrdinalGroup?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined>) | null;
855
+ boxOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | undefined>) | null;
856
+ boxPack?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | undefined>) | null;
857
+ clip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Clip | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Clip | undefined>) | null;
858
+ fontStretch?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStretch | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStretch | undefined>) | null;
859
+ gridColumnGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined>) | null;
860
+ gridGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined>) | null;
861
+ gridRowGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined>) | null;
862
+ imeMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | undefined>) | null;
863
+ insetArea?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionArea | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionArea | undefined>) | null;
864
+ offsetBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined>) | null;
865
+ offsetBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined>) | null;
866
+ offsetBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined>) | null;
867
+ offsetInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined>) | null;
868
+ offsetInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined>) | null;
869
+ offsetInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined>) | null;
870
+ pageBreakAfter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | undefined>) | null;
871
+ pageBreakBefore?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | undefined>) | null;
872
+ pageBreakInside?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | undefined>) | null;
873
+ positionTryOptions?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTryFallbacks | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTryFallbacks | undefined>) | null;
874
+ scrollSnapCoordinate?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined>) | null;
875
+ scrollSnapDestination?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined>) | null;
876
+ scrollSnapPointsX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapPointsX | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapPointsX | undefined>) | null;
877
+ scrollSnapPointsY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapPointsY | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapPointsY | undefined>) | null;
878
+ scrollSnapTypeX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | undefined>) | null;
879
+ scrollSnapTypeY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | undefined>) | null;
880
+ KhtmlBoxAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | undefined>) | null;
881
+ KhtmlBoxDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | undefined>) | null;
882
+ KhtmlBoxFlex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined>) | null;
883
+ KhtmlBoxFlexGroup?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined>) | null;
884
+ KhtmlBoxLines?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | undefined>) | null;
885
+ KhtmlBoxOrdinalGroup?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined>) | null;
886
+ KhtmlBoxOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | undefined>) | null;
887
+ KhtmlBoxPack?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | undefined>) | null;
888
+ KhtmlLineBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | undefined>) | null;
889
+ KhtmlOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined>) | null;
890
+ KhtmlUserSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | undefined>) | null;
891
+ MozBackgroundClip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip | undefined>) | null;
892
+ MozBackgroundOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin | undefined>) | null;
893
+ MozBackgroundSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined>) | null;
894
+ MozBorderRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined>) | null;
895
+ MozBorderRadiusBottomleft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined>) | null;
896
+ MozBorderRadiusBottomright?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined>) | null;
897
+ MozBorderRadiusTopleft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined>) | null;
898
+ MozBorderRadiusTopright?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined>) | null;
899
+ MozBoxAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | undefined>) | null;
900
+ MozBoxDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | undefined>) | null;
901
+ MozBoxFlex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined>) | null;
902
+ MozBoxOrdinalGroup?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined>) | null;
903
+ MozBoxOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | undefined>) | null;
904
+ MozBoxPack?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | undefined>) | null;
905
+ MozBoxShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BoxShadow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BoxShadow | undefined>) | null;
906
+ MozColumnCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined>) | null;
907
+ MozColumnFill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | undefined>) | null;
908
+ MozFloatEdge?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | undefined>) | null;
909
+ MozForceBrokenImageIcon?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined>) | null;
910
+ MozOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined>) | null;
911
+ MozOutline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined>) | null;
912
+ MozOutlineColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OutlineColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OutlineColor | undefined>) | null;
913
+ MozOutlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle | undefined>[] | undefined>) | null;
914
+ MozOutlineWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined>) | null;
915
+ MozTextAlignLast?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | undefined>) | null;
916
+ MozTextDecorationColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor | undefined>) | null;
917
+ MozTextDecorationLine?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine | undefined>) | null;
918
+ MozTextDecorationStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | undefined>) | null;
919
+ MozTransitionDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined>) | null;
920
+ MozTransitionDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined>) | null;
921
+ MozTransitionProperty?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined>) | null;
922
+ MozTransitionTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined>) | null;
923
+ MozUserFocus?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | undefined>) | null;
924
+ MozUserInput?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | undefined>) | null;
925
+ msImeMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | undefined>) | null;
926
+ OAnimation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | undefined>) | null;
927
+ OAnimationDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | undefined>) | null;
928
+ OAnimationDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection | undefined>) | null;
929
+ OAnimationDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | undefined>) | null;
930
+ OAnimationFillMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationFillMode | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationFillMode | undefined>) | null;
931
+ OAnimationIterationCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | undefined>) | null;
932
+ OAnimationName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationName | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationName | undefined>) | null;
933
+ OAnimationPlayState?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState | undefined>) | null;
934
+ OAnimationTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction | undefined>) | null;
935
+ OBackgroundSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined>) | null;
936
+ OBorderImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | undefined>) | null;
937
+ OObjectFit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | undefined>) | null;
938
+ OObjectPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined>) | null;
939
+ OTabSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined>) | null;
940
+ OTextOverflow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined>) | null;
941
+ OTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform | undefined>) | null;
942
+ OTransformOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined>) | null;
943
+ OTransition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}> | undefined>) | null;
944
+ OTransitionDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | undefined>) | null;
945
+ OTransitionDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | undefined>) | null;
946
+ OTransitionProperty?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty | undefined>) | null;
947
+ OTransitionTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction | undefined>) | null;
948
+ WebkitBoxAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | undefined>) | null;
949
+ WebkitBoxDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | undefined>) | null;
950
+ WebkitBoxFlex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined>) | null;
951
+ WebkitBoxFlexGroup?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined>) | null;
952
+ WebkitBoxLines?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | undefined>) | null;
953
+ WebkitBoxOrdinalGroup?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined>) | null;
954
+ WebkitBoxOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | undefined>) | null;
955
+ WebkitBoxPack?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | undefined>) | null;
956
+ colorInterpolation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | undefined>) | null;
957
+ colorRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | undefined>) | null;
958
+ glyphOrientationVertical?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined>) | null;
959
+ border?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | (string & {}) | "inset" | "none" | "medium" | "Background" | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "transparent" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | "hidden" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "thick" | "thin" | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | (string & {}) | "inset" | "none" | "medium" | "Background" | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "transparent" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | "hidden" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "thick" | "thin" | undefined>) | null;
960
+ boxShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | import("csstype").Property.BoxShadow | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | import("csstype").Property.BoxShadow | undefined>) | null;
961
+ fontWeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>) | null;
962
+ zIndex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>) | null;
963
+ bgcolor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | readonly string[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | readonly string[] | undefined>) | null;
964
+ m?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined>) | null;
965
+ mt?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>) | null;
966
+ mr?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined>) | null;
967
+ mb?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined>) | null;
968
+ ml?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>) | null;
969
+ mx?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>) | null;
970
+ marginX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>) | null;
971
+ my?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>) | null;
972
+ marginY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>) | null;
973
+ p?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined>) | null;
974
+ pt?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>) | null;
975
+ pr?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined>) | null;
976
+ pb?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined>) | null;
977
+ pl?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>) | null;
978
+ px?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>) | null;
979
+ paddingX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>) | null;
980
+ py?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>) | null;
981
+ paddingY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>) | null;
982
+ typography?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined>) | null;
983
+ displayPrint?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>) | null;
984
+ } | {
985
+ ":-moz-any()"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
986
+ ":-moz-dir"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
987
+ ":-webkit-any()"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
988
+ "::cue"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
989
+ "::cue-region"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
990
+ "::highlight"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
991
+ "::part"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
992
+ "::picker"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
993
+ "::slotted"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
994
+ "::view-transition-group"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
995
+ "::view-transition-image-pair"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
996
+ "::view-transition-new"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
997
+ "::view-transition-old"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
998
+ ":active-view-transition-type"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
999
+ ":dir"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1000
+ ":has"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1001
+ ":host"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1002
+ ":host-context"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1003
+ ":is"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1004
+ ":lang"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1005
+ ":matches()"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1006
+ ":not"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1007
+ ":nth-child"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1008
+ ":nth-last-child"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1009
+ ":nth-last-of-type"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1010
+ ":nth-of-type"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1011
+ ":state"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1012
+ ":where"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1013
+ ":-khtml-any-link"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1014
+ ":-moz-any-link"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1015
+ ":-moz-focusring"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1016
+ ":-moz-full-screen"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1017
+ ":-moz-placeholder"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1018
+ ":-moz-read-only"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1019
+ ":-moz-read-write"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1020
+ ":-moz-ui-invalid"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1021
+ ":-moz-ui-valid"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1022
+ ":-ms-fullscreen"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1023
+ ":-ms-input-placeholder"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1024
+ ":-webkit-any-link"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1025
+ ":-webkit-autofill"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1026
+ ":-webkit-full-screen"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1027
+ "::-moz-placeholder"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1028
+ "::-moz-progress-bar"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1029
+ "::-moz-range-progress"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1030
+ "::-moz-range-thumb"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1031
+ "::-moz-range-track"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1032
+ "::-moz-selection"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1033
+ "::-ms-backdrop"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1034
+ "::-ms-browse"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1035
+ "::-ms-check"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1036
+ "::-ms-clear"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1037
+ "::-ms-expand"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1038
+ "::-ms-fill"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1039
+ "::-ms-fill-lower"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1040
+ "::-ms-fill-upper"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1041
+ "::-ms-input-placeholder"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1042
+ "::-ms-reveal"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1043
+ "::-ms-thumb"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1044
+ "::-ms-ticks-after"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1045
+ "::-ms-ticks-before"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1046
+ "::-ms-tooltip"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1047
+ "::-ms-track"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1048
+ "::-ms-value"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1049
+ "::-webkit-backdrop"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1050
+ "::-webkit-file-upload-button"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1051
+ "::-webkit-input-placeholder"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1052
+ "::-webkit-progress-bar"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1053
+ "::-webkit-progress-inner-value"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1054
+ "::-webkit-progress-value"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1055
+ "::-webkit-slider-runnable-track"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1056
+ "::-webkit-slider-thumb"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1057
+ "::after"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1058
+ "::backdrop"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1059
+ "::before"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1060
+ "::checkmark"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1061
+ "::details-content"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1062
+ "::file-selector-button"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1063
+ "::first-letter"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1064
+ "::first-line"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1065
+ "::grammar-error"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1066
+ "::marker"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1067
+ "::picker-icon"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1068
+ "::placeholder"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1069
+ "::scroll-marker"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1070
+ "::scroll-marker-group"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1071
+ "::selection"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1072
+ "::spelling-error"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1073
+ "::target-text"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1074
+ "::view-transition"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1075
+ ":active"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1076
+ ":active-view-transition"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1077
+ ":after"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1078
+ ":any-link"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1079
+ ":autofill"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1080
+ ":before"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1081
+ ":blank"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1082
+ ":buffering"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1083
+ ":checked"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1084
+ ":current"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1085
+ ":default"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1086
+ ":defined"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1087
+ ":disabled"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1088
+ ":empty"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1089
+ ":enabled"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1090
+ ":first"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1091
+ ":first-child"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1092
+ ":first-letter"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1093
+ ":first-line"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1094
+ ":first-of-type"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1095
+ ":focus"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1096
+ ":focus-visible"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1097
+ ":focus-within"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1098
+ ":fullscreen"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1099
+ ":future"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1100
+ ":has-slotted"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1101
+ ":hover"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1102
+ ":in-range"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1103
+ ":indeterminate"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1104
+ ":invalid"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1105
+ ":last-child"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1106
+ ":last-of-type"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1107
+ ":left"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1108
+ ":link"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1109
+ ":local-link"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1110
+ ":modal"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1111
+ ":muted"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1112
+ ":only-child"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1113
+ ":only-of-type"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1114
+ ":open"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1115
+ ":optional"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1116
+ ":out-of-range"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1117
+ ":past"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1118
+ ":paused"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1119
+ ":picture-in-picture"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1120
+ ":placeholder-shown"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1121
+ ":playing"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1122
+ ":popover-open"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1123
+ ":read-only"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1124
+ ":read-write"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1125
+ ":required"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1126
+ ":right"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1127
+ ":root"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1128
+ ":scope"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1129
+ ":seeking"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1130
+ ":stalled"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1131
+ ":target"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1132
+ ":target-current"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1133
+ ":target-within"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1134
+ ":user-invalid"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1135
+ ":user-valid"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1136
+ ":valid"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1137
+ ":visited"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1138
+ ":volume-locked"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1139
+ ":xr-overlay"?: import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1140
+ width: string | number | undefined;
1141
+ height: string | number | undefined;
1142
+ minWidth: string | number | undefined;
1143
+ minHeight: string | number | undefined;
1144
+ maxWidth: string | number | undefined;
1145
+ maxHeight: string | number | undefined;
1146
+ } | {
1147
+ width: string | number | undefined;
1148
+ height: string | number | undefined;
1149
+ minWidth: string | number | undefined;
1150
+ minHeight: string | number | undefined;
1151
+ maxWidth: string | number | undefined;
1152
+ maxHeight: string | number | undefined;
1153
+ } | {
1154
+ width: string | number | undefined;
1155
+ height: string | number | undefined;
1156
+ minWidth: string | number | undefined;
1157
+ minHeight: string | number | undefined;
1158
+ maxWidth: string | number | undefined;
1159
+ maxHeight: string | number | undefined;
1160
+ } | {
1161
+ length: number;
1162
+ toString(): string;
1163
+ toLocaleString(): string;
1164
+ toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
1165
+ concat(...items: ConcatArray<boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)>[]): (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[];
1166
+ concat(...items: (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | ConcatArray<boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)>)[]): (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[];
1167
+ join(separator?: string): string;
1168
+ slice(start?: number, end?: number): (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[];
1169
+ indexOf(searchElement: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), fromIndex?: number): number;
1170
+ lastIndexOf(searchElement: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), fromIndex?: number): number;
1171
+ every<S extends boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)>(predicate: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => value is S, thisArg?: any): this is readonly S[];
1172
+ every(predicate: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => unknown, thisArg?: any): boolean;
1173
+ some(predicate: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => unknown, thisArg?: any): boolean;
1174
+ forEach(callbackfn: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => void, thisArg?: any): void;
1175
+ map<U>(callbackfn: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => U, thisArg?: any): U[];
1176
+ filter<S extends boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)>(predicate: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => value is S, thisArg?: any): S[];
1177
+ filter(predicate: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => unknown, thisArg?: any): (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[];
1178
+ reduce(callbackfn: (previousValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentIndex: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)): boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>);
1179
+ reduce(callbackfn: (previousValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentIndex: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), initialValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)): boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>);
1180
+ reduce<U>(callbackfn: (previousValue: U, currentValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentIndex: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => U, initialValue: U): U;
1181
+ reduceRight(callbackfn: (previousValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentIndex: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)): boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>);
1182
+ reduceRight(callbackfn: (previousValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentIndex: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), initialValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)): boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>);
1183
+ reduceRight<U>(callbackfn: (previousValue: U, currentValue: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), currentIndex: number, array: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => U, initialValue: U): U;
1184
+ find<S extends boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)>(predicate: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, obj: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => value is S, thisArg?: any): S | undefined;
1185
+ find(predicate: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, obj: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => unknown, thisArg?: any): boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>) | undefined;
1186
+ findIndex(predicate: (value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, obj: readonly (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => unknown, thisArg?: any): number;
1187
+ entries(): ArrayIterator<[number, boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)]>;
1188
+ keys(): ArrayIterator<number>;
1189
+ values(): ArrayIterator<boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)>;
1190
+ includes(searchElement: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), fromIndex?: number): boolean;
1191
+ flatMap<U, This = undefined>(callback: (this: This, value: boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>), index: number, array: (boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>))[]) => U | readonly U[], thisArg?: This | undefined): U[];
1192
+ flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
1193
+ [Symbol.iterator](): ArrayIterator<boolean | import("@mui/system").SystemStyleObject<Theme> | ((theme: Theme) => import("@mui/system").SystemStyleObject<Theme>)>;
1194
+ [Symbol.unscopables]: {
1195
+ readonly [x: number]: boolean | undefined;
1196
+ readonly length?: boolean | undefined;
1197
+ toString?: boolean | undefined;
1198
+ toLocaleString?: boolean | undefined;
1199
+ concat?: boolean | undefined;
1200
+ join?: boolean | undefined;
1201
+ slice?: boolean | undefined;
1202
+ indexOf?: boolean | undefined;
1203
+ lastIndexOf?: boolean | undefined;
1204
+ every?: boolean | undefined;
1205
+ some?: boolean | undefined;
1206
+ forEach?: boolean | undefined;
1207
+ map?: boolean | undefined;
1208
+ filter?: boolean | undefined;
1209
+ reduce?: boolean | undefined;
1210
+ reduceRight?: boolean | undefined;
1211
+ find?: boolean | undefined;
1212
+ findIndex?: boolean | undefined;
1213
+ entries?: boolean | undefined;
1214
+ keys?: boolean | undefined;
1215
+ values?: boolean | undefined;
1216
+ includes?: boolean | undefined;
1217
+ flatMap?: boolean | undefined;
1218
+ flat?: boolean | undefined;
1219
+ [Symbol.iterator]?: boolean | undefined;
1220
+ readonly [Symbol.unscopables]?: boolean | undefined;
1221
+ };
1222
+ width: string | number | undefined;
1223
+ height: string | number | undefined;
1224
+ minWidth: string | number | undefined;
1225
+ minHeight: string | number | undefined;
1226
+ maxWidth: string | number | undefined;
1227
+ maxHeight: string | number | undefined;
1228
+ };
80
1229
  style: import("react").CSSProperties | undefined;
81
1230
  };
82
1231
  htmlProps: {
@@ -86,16 +1235,16 @@ export declare function useBaseProps<T extends BaseComponentProps>(props: T): {
86
1235
  'aria-labelledby': string | undefined;
87
1236
  'aria-describedby': string | undefined;
88
1237
  'data-testid': string | undefined;
89
- onClick: import("react").MouseEventHandler<any> | undefined;
90
- onMouseEnter: import("react").MouseEventHandler<any> | undefined;
91
- onMouseLeave: import("react").MouseEventHandler<any> | undefined;
92
- onFocus: import("react").FocusEventHandler<any> | undefined;
93
- onBlur: import("react").FocusEventHandler<any> | undefined;
1238
+ onClick: import("react").MouseEventHandler<unknown> | undefined;
1239
+ onMouseEnter: import("react").MouseEventHandler<unknown> | undefined;
1240
+ onMouseLeave: import("react").MouseEventHandler<unknown> | undefined;
1241
+ onFocus: import("react").FocusEventHandler<unknown> | undefined;
1242
+ onBlur: import("react").FocusEventHandler<unknown> | undefined;
94
1243
  };
95
1244
  restProps: Omit<T, keyof BaseComponentProps>;
96
1245
  };
97
1246
  /**
98
1247
  * Type helper for components using base props
99
1248
  */
100
- export type WithBaseProps<P = {}> = P & BaseComponentProps;
1249
+ export type WithBaseProps<P = object> = P & BaseComponentProps;
101
1250
  //# sourceMappingURL=useBaseProps.d.ts.map