eddev 0.2.65 → 0.2.67-beta1

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 (190) hide show
  1. package/admin/components/ImageWell.d.ts +2 -3
  2. package/admin/components/ImageWell.js +39 -51
  3. package/admin/defineField.d.ts +2 -2
  4. package/admin/defineWidget.d.ts +1 -1
  5. package/admin/defineWidget.js +2 -2
  6. package/admin/index.js +5 -1
  7. package/admin/installFieldTypes.js +26 -26
  8. package/admin/runWidgets.js +17 -28
  9. package/admin/selectMedia.d.ts +2 -2
  10. package/admin/selectMedia.js +1 -1
  11. package/blocks/ContentBlocks.d.ts +6 -6
  12. package/blocks/ContentBlocks.js +58 -66
  13. package/blocks/ErrorBoundaryEditor.d.ts +1 -1
  14. package/blocks/ErrorBoundaryEditor.js +16 -45
  15. package/blocks/ErrorBoundaryFrontend.d.ts +1 -1
  16. package/blocks/ErrorBoundaryFrontend.js +16 -45
  17. package/blocks/InspectorControls.d.ts +1 -1
  18. package/blocks/InspectorControls.js +3 -3
  19. package/blocks/blockAttributes.d.ts +2 -2
  20. package/blocks/blockAttributes.js +24 -44
  21. package/blocks/index.js +5 -1
  22. package/blocks/inlineEditing.d.ts +7 -7
  23. package/blocks/inlineEditing.js +36 -55
  24. package/blocks/installGutenbergHooks.js +48 -68
  25. package/build/babel/plugin-name-defined-components.js +15 -16
  26. package/build/build-favicon.js +11 -62
  27. package/build/clean.js +5 -52
  28. package/build/create-codegen-worker.js +78 -33
  29. package/build/create-serverless-dev-worker.js +61 -39
  30. package/build/create-webpack-worker.js +65 -33
  31. package/build/file-tree.d.ts +2 -2
  32. package/build/file-tree.js +12 -12
  33. package/build/get-webpack-config.js +341 -395
  34. package/build/graphql-codegen/graphql-codegen-files.js +31 -25
  35. package/build/graphql-codegen/graphql-codegen-no-duplicates.js +4 -4
  36. package/build/graphql-codegen/graphql-codegen-queries.js +102 -99
  37. package/build/manifests/manifest-blocks.d.ts +1 -1
  38. package/build/manifests/manifest-blocks.js +37 -29
  39. package/build/manifests/manifest-fields.d.ts +1 -1
  40. package/build/manifests/manifest-fields.js +23 -21
  41. package/build/manifests/manifest-views.d.ts +1 -1
  42. package/build/manifests/manifest-views.js +32 -25
  43. package/build/manifests/manifest-widgets.d.ts +1 -1
  44. package/build/manifests/manifest-widgets.js +22 -20
  45. package/build/manifests/manifest.d.ts +2 -2
  46. package/build/manifests/manifest.js +30 -90
  47. package/build/reporter.d.ts +1 -1
  48. package/build/reporter.js +29 -32
  49. package/build/serverless/create-next-app.d.ts +1 -1
  50. package/build/serverless/create-next-app.js +245 -467
  51. package/build/state/codegen-state.d.ts +4 -4
  52. package/build/state/compiler-state.d.ts +5 -5
  53. package/build/state/serverless-state.d.ts +3 -3
  54. package/build/workers/codegen-worker-script.js +392 -507
  55. package/build/workers/serverless-worker-dev-script.js +4 -4
  56. package/build/workers/webpack-worker-script.js +89 -150
  57. package/cli/build.dev.d.ts +1 -1
  58. package/cli/build.dev.js +79 -126
  59. package/cli/build.prod.d.ts +1 -1
  60. package/cli/build.prod.js +42 -98
  61. package/cli/cli.js +16 -55
  62. package/cli/display/components/BundleDisplay.d.ts +1 -2
  63. package/cli/display/components/BundleDisplay.js +13 -24
  64. package/cli/display/components/CodegenDisplay.d.ts +1 -2
  65. package/cli/display/components/CodegenDisplay.js +14 -25
  66. package/cli/display/components/DevCLIDisplay.d.ts +2 -3
  67. package/cli/display/components/DevCLIDisplay.js +14 -25
  68. package/cli/display/components/Fullscreen.js +9 -20
  69. package/cli/display/components/ServerlessDisplay.d.ts +2 -3
  70. package/cli/display/components/ServerlessDisplay.js +15 -26
  71. package/cli/display/components/StatusIcon.d.ts +2 -3
  72. package/cli/display/components/StatusIcon.js +3 -3
  73. package/cli/preinstall.js +4 -5
  74. package/cli/setup.js +25 -73
  75. package/components/AdminBar.d.ts +1 -2
  76. package/components/AdminBar.js +37 -3
  77. package/components/BrowserRouter.d.ts +2 -2
  78. package/components/BrowserRouter.js +41 -54
  79. package/components/InlinePage.d.ts +2 -2
  80. package/components/InlinePage.js +17 -29
  81. package/components/NextRouter.d.ts +2 -2
  82. package/components/NextRouter.js +20 -29
  83. package/components/index.js +5 -1
  84. package/config/config-schema.d.ts +1 -1
  85. package/config/config-schema.js +1 -1
  86. package/config/create-schema-file.js +6 -6
  87. package/config/get-config.js +10 -13
  88. package/config/index.js +5 -1
  89. package/config/parse-config.js +1 -1
  90. package/config/print-zod-errors.js +3 -3
  91. package/dev-ui/components/BreakpointColumnHeader.d.ts +2 -3
  92. package/dev-ui/components/BreakpointColumnHeader.js +7 -18
  93. package/dev-ui/components/BreakpointIndicator.d.ts +1 -2
  94. package/dev-ui/components/BreakpointIndicator.js +25 -32
  95. package/dev-ui/components/DevUI.d.ts +1 -2
  96. package/dev-ui/components/DevUI.js +13 -13
  97. package/dev-ui/components/Launcher.d.ts +2 -2
  98. package/dev-ui/components/Launcher.js +13 -25
  99. package/dev-ui/components/PanelWrapper.d.ts +2 -2
  100. package/dev-ui/components/PanelWrapper.js +8 -8
  101. package/dev-ui/components/ResponsiveLerpControl.d.ts +2 -3
  102. package/dev-ui/components/ResponsiveLerpControl.js +27 -38
  103. package/dev-ui/components/ResponsiveScaleEditor.d.ts +4 -5
  104. package/dev-ui/components/ResponsiveScaleEditor.js +64 -78
  105. package/dev-ui/components/atoms/Button.js +1 -1
  106. package/dev-ui/components/atoms/Dropdown.d.ts +3 -3
  107. package/dev-ui/components/atoms/Dropdown.js +8 -9
  108. package/dev-ui/components/atoms/NumberField.d.ts +2 -3
  109. package/dev-ui/components/atoms/NumberField.js +29 -42
  110. package/dev-ui/components/atoms/Spacer.js +1 -1
  111. package/dev-ui/components/atoms/Text.js +1 -1
  112. package/dev-ui/components/atoms/ToggleButton.d.ts +2 -2
  113. package/dev-ui/components/atoms/ToggleButton.js +5 -16
  114. package/dev-ui/components/atoms/Tooltip.d.ts +2 -2
  115. package/dev-ui/components/atoms/Tooltip.js +8 -20
  116. package/dev-ui/components/panels/AppDataDebugger.d.ts +1 -2
  117. package/dev-ui/components/panels/AppDataDebugger.js +8 -19
  118. package/dev-ui/components/panels/ColorEditor.d.ts +1 -2
  119. package/dev-ui/components/panels/ColorEditor.js +35 -42
  120. package/dev-ui/components/panels/PageDataDebugger.d.ts +1 -2
  121. package/dev-ui/components/panels/PageDataDebugger.js +8 -20
  122. package/dev-ui/components/panels/QueryDebugger.d.ts +1 -2
  123. package/dev-ui/components/panels/QueryDebugger.js +12 -24
  124. package/dev-ui/components/panels/SpacingEditor.d.ts +1 -2
  125. package/dev-ui/components/panels/SpacingEditor.js +34 -48
  126. package/dev-ui/components/panels/TypographyEditor.d.ts +1 -2
  127. package/dev-ui/components/panels/TypographyEditor.js +38 -46
  128. package/dev-ui/hooks/useBreakpoint.d.ts +1 -1
  129. package/dev-ui/hooks/useBreakpoint.js +13 -13
  130. package/dev-ui/hooks/usePersistState.js +6 -7
  131. package/dev-ui/hooks/useStylesheet.js +6 -6
  132. package/dev-ui/icons.d.ts +15 -16
  133. package/dev-ui/icons.js +16 -27
  134. package/dev-ui/index.js +5 -1
  135. package/dev-ui/loader.d.ts +1 -2
  136. package/dev-ui/loader.js +13 -9
  137. package/dev-ui/panels.d.ts +2 -2
  138. package/dev-ui/panels.js +7 -7
  139. package/dev-ui/theme.d.ts +96 -70
  140. package/dev-ui/theme.js +3 -3
  141. package/dynamic/dynamic-component.d.ts +1 -10
  142. package/dynamic/dynamic-component.js +1 -1
  143. package/dynamic/index.js +5 -1
  144. package/entry/Root.d.ts +2 -3
  145. package/entry/Root.js +16 -26
  146. package/entry/entry.admin.dev.js +4 -4
  147. package/entry/entry.admin.prod.js +4 -4
  148. package/entry/entry.monolith.dev.js +5 -5
  149. package/entry/entry.monolith.prod.js +5 -5
  150. package/gravityforms/gravity-forms.d.ts +2 -2
  151. package/gravityforms/index.js +5 -1
  152. package/gravityforms/useGravityForm.d.ts +2 -2
  153. package/gravityforms/useGravityForm.js +126 -130
  154. package/hooks/index.js +5 -1
  155. package/hooks/queryUtils.d.ts +14 -14
  156. package/hooks/queryUtils.js +101 -192
  157. package/hooks/useAppData.d.ts +2 -2
  158. package/hooks/useAppData.js +9 -9
  159. package/hooks/usePageLoad.js +4 -4
  160. package/hooks/useQueryDebug.d.ts +1 -1
  161. package/hooks/useQueryDebug.js +7 -7
  162. package/hooks/useRPC.d.ts +4 -4
  163. package/hooks/useRPC.js +3 -3
  164. package/package.json +7 -7
  165. package/routing/index.js +5 -1
  166. package/routing/remoteProps.d.ts +1 -1
  167. package/routing/remoteProps.js +31 -72
  168. package/routing/routing.d.ts +15 -15
  169. package/routing/routing.js +108 -170
  170. package/routing/updateEditLink.js +1 -1
  171. package/serverless/define-api.d.ts +1 -1
  172. package/serverless/define-rpc-router.js +8 -4
  173. package/serverless/index.js +6 -2
  174. package/serverless-template/_utils/fetch-wordpress-props.ts +0 -4
  175. package/serverless-template/_utils/fetch-wp.ts +0 -1
  176. package/style/createStitches.d.ts +375 -783
  177. package/style/createStitches.js +164 -142
  178. package/style/index.js +5 -1
  179. package/tsconfig.json +1 -1
  180. package/utils/Observable.d.ts +2 -2
  181. package/utils/Observable.js +12 -15
  182. package/utils/getRepoName.js +3 -3
  183. package/utils/promptIfRepoNameIncorrect.js +18 -64
  184. package/utils/refreshOverlayInterop.js +1 -1
  185. package/utils/reportErrorStack.d.ts +1 -1
  186. package/utils/reportErrorStack.js +1 -1
  187. package/utils/serverlessAppContext.js +1 -1
  188. package/utils/updateEnvFile.js +19 -69
  189. package/utils/useObservable.js +3 -3
  190. package/views/index.js +5 -1
@@ -1,13 +1,12 @@
1
- /// <reference types="react" />
2
1
  import { DefaultThemeMap } from "@stitches/react";
3
2
  import { ConfigType } from "@stitches/core/types/config";
4
3
  import { Properties as CSS } from "csstype";
5
- declare type UtilValue<Theme extends ConfigType.Theme<any>, Scale extends string, CSSValue> = Scale extends keyof Theme ? `$${Exclude<keyof Theme[Scale], symbol>}` | CSSValue : CSSValue;
6
- declare type AtMedias<T extends any> = T extends string ? `@${T}` : never;
7
- declare type ResponsiveValue<Media extends ConfigType.Media<any>, T> = T | {
4
+ type UtilValue<Theme extends ConfigType.Theme<any>, Scale extends string, CSSValue> = Scale extends keyof Theme ? `$${Exclude<keyof Theme[Scale], symbol>}` | CSSValue : CSSValue;
5
+ type AtMedias<T extends any> = T extends string ? `@${T}` : never;
6
+ type ResponsiveValue<Media extends ConfigType.Media<any>, T> = T | {
8
7
  [K in AtMedias<keyof Media>]?: T | [T];
9
8
  };
10
- declare type TypographyConfig<Theme extends ConfigType.Theme<{}>, Media extends ConfigType.Media<{}>, T extends Record<string, any>> = {
9
+ type TypographyConfig<Theme extends ConfigType.Theme<{}>, Media extends ConfigType.Media<{}>, T extends Record<string, any>> = {
11
10
  [Property in keyof T]: {
12
11
  fontFamily?: Theme["fonts"] extends {} ? `$${Extract<keyof Theme["fonts"], string>}` | CSS["fontFamily"] : CSS["fontFamily"];
13
12
  fontSize?: ResponsiveValue<Media, Theme["fontSizes"] extends {} ? `$${Extract<keyof Theme["fontSizes"], string>}` | CSS["fontSize"] : CSS["fontSize"]>;
@@ -18,7 +17,7 @@ declare type TypographyConfig<Theme extends ConfigType.Theme<{}>, Media extends
18
17
  lineHeight?: ResponsiveValue<Media, Theme["lineHeights"] extends {} ? `$${Extract<keyof Theme["lineHeights"], string>}` | CSS["lineHeight"] : CSS["lineHeight"]>;
19
18
  };
20
19
  };
21
- export declare type BreakpointArray = {
20
+ export type BreakpointArray = {
22
21
  key: string;
23
22
  min: string | null;
24
23
  max: string | null;
@@ -34,15 +33,17 @@ interface GridConfig<Theme extends ConfigType.Theme<{}>, Media extends ConfigTyp
34
33
  };
35
34
  };
36
35
  }
37
- declare type ResponsiveScale<Media extends ConfigType.Media<{}>, T extends {}> = {
36
+ type ResponsiveScale<Media extends ConfigType.Media<{}>, T extends {}> = {
38
37
  [K in keyof T]: {
39
38
  [M in AtMedias<keyof Media>]?: string | number | [string | number];
40
39
  } | string | number;
41
40
  };
42
- declare type ResponsiveConfig<Media extends ConfigType.Media<{}>, T extends {}> = {
41
+ type ResponsiveConfig<Media extends ConfigType.Media<{}>, T extends {
42
+ [key: string]: {};
43
+ }> = {
43
44
  [Scale in keyof T]: ResponsiveScale<Media, T[Scale]>;
44
45
  };
45
- declare type ResponsiveAtom = {
46
+ type ResponsiveAtom = {
46
47
  lerpStart: boolean;
47
48
  } & ({
48
49
  type: "multiplier";
@@ -62,7 +63,7 @@ declare type ResponsiveAtom = {
62
63
  } | {
63
64
  type: "undefined";
64
65
  });
65
- export declare type ResponsiveAtomCalc = ResponsiveAtom & {
66
+ export type ResponsiveAtomCalc = ResponsiveAtom & {
66
67
  defined: boolean;
67
68
  breakpoint: string;
68
69
  baseBreakpoint: string;
@@ -143,115 +144,51 @@ export declare function createStitches<Prefix extends string = "", Media extends
143
144
  initial: string;
144
145
  editor: string;
145
146
  }, Typography>]: any; }[keyof Typography];
146
- m: (value: {
147
- readonly [$$ScaleValue]: "space";
148
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
149
- margin: {
150
- readonly [$$ScaleValue]: "space";
151
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
152
- };
153
- mt: (value: {
154
- readonly [$$ScaleValue]: "space";
155
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
156
- marginTop: {
157
- readonly [$$ScaleValue]: "space";
158
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
159
- };
160
- mr: (value: {
161
- readonly [$$ScaleValue]: "space";
162
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
163
- marginRight: {
164
- readonly [$$ScaleValue]: "space";
165
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
166
- };
167
- mb: (value: {
168
- readonly [$$ScaleValue]: "space";
169
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
170
- marginBottom: {
171
- readonly [$$ScaleValue]: "space";
172
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
173
- };
174
- ml: (value: {
175
- readonly [$$ScaleValue]: "space";
176
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
177
- marginLeft: {
178
- readonly [$$ScaleValue]: "space";
179
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
180
- };
181
- mx: (value: {
182
- readonly [$$ScaleValue]: "space";
183
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
184
- marginLeft: {
185
- readonly [$$ScaleValue]: "space";
186
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
187
- marginRight: {
188
- readonly [$$ScaleValue]: "space";
189
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
190
- };
191
- my: (value: {
192
- readonly [$$ScaleValue]: "space";
193
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
194
- marginTop: {
195
- readonly [$$ScaleValue]: "space";
196
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
197
- marginBottom: {
198
- readonly [$$ScaleValue]: "space";
199
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
200
- };
201
- p: (value: {
202
- readonly [$$ScaleValue]: "space";
203
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
204
- padding: {
205
- readonly [$$ScaleValue]: "space";
206
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
207
- };
208
- pt: (value: {
209
- readonly [$$ScaleValue]: "space";
210
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
211
- paddingTop: {
212
- readonly [$$ScaleValue]: "space";
213
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
214
- };
215
- pr: (value: {
216
- readonly [$$ScaleValue]: "space";
217
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
218
- paddingRight: {
219
- readonly [$$ScaleValue]: "space";
220
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
221
- };
222
- pb: (value: {
223
- readonly [$$ScaleValue]: "space";
224
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
225
- paddingBottom: {
226
- readonly [$$ScaleValue]: "space";
227
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
228
- };
229
- pl: (value: {
230
- readonly [$$ScaleValue]: "space";
231
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
232
- paddingLeft: {
233
- readonly [$$ScaleValue]: "space";
234
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
235
- };
236
- px: (value: {
237
- readonly [$$ScaleValue]: "space";
238
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
239
- paddingLeft: {
240
- readonly [$$ScaleValue]: "space";
241
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
242
- paddingRight: {
243
- readonly [$$ScaleValue]: "space";
244
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
245
- };
246
- py: (value: {
247
- readonly [$$ScaleValue]: "space";
248
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
249
- paddingTop: {
250
- readonly [$$ScaleValue]: "space";
251
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
252
- paddingBottom: {
253
- readonly [$$ScaleValue]: "space";
254
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
147
+ m: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
148
+ margin: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
149
+ };
150
+ mt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
151
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
152
+ };
153
+ mr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
154
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
155
+ };
156
+ mb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
157
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
158
+ };
159
+ ml: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
160
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
161
+ };
162
+ mx: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
163
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
164
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
165
+ };
166
+ my: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
167
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
168
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
169
+ };
170
+ p: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
171
+ padding: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
172
+ };
173
+ pt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
174
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
175
+ };
176
+ pr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
177
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
178
+ };
179
+ pb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
180
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
181
+ };
182
+ pl: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
183
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
184
+ };
185
+ px: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
186
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
187
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
188
+ };
189
+ py: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
190
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
191
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
255
192
  };
256
193
  cols: (value: number) => {
257
194
  gridColumn: string;
@@ -273,115 +210,51 @@ export declare function createStitches<Prefix extends string = "", Media extends
273
210
  initial: string;
274
211
  editor: string;
275
212
  }, Typography>]: any; }[keyof Typography];
276
- m: (value: {
277
- readonly [$$ScaleValue]: "space";
278
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
279
- margin: {
280
- readonly [$$ScaleValue]: "space";
281
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
282
- };
283
- mt: (value: {
284
- readonly [$$ScaleValue]: "space";
285
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
286
- marginTop: {
287
- readonly [$$ScaleValue]: "space";
288
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
289
- };
290
- mr: (value: {
291
- readonly [$$ScaleValue]: "space";
292
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
293
- marginRight: {
294
- readonly [$$ScaleValue]: "space";
295
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
296
- };
297
- mb: (value: {
298
- readonly [$$ScaleValue]: "space";
299
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
300
- marginBottom: {
301
- readonly [$$ScaleValue]: "space";
302
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
303
- };
304
- ml: (value: {
305
- readonly [$$ScaleValue]: "space";
306
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
307
- marginLeft: {
308
- readonly [$$ScaleValue]: "space";
309
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
310
- };
311
- mx: (value: {
312
- readonly [$$ScaleValue]: "space";
313
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
314
- marginLeft: {
315
- readonly [$$ScaleValue]: "space";
316
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
317
- marginRight: {
318
- readonly [$$ScaleValue]: "space";
319
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
320
- };
321
- my: (value: {
322
- readonly [$$ScaleValue]: "space";
323
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
324
- marginTop: {
325
- readonly [$$ScaleValue]: "space";
326
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
327
- marginBottom: {
328
- readonly [$$ScaleValue]: "space";
329
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
330
- };
331
- p: (value: {
332
- readonly [$$ScaleValue]: "space";
333
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
334
- padding: {
335
- readonly [$$ScaleValue]: "space";
336
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
337
- };
338
- pt: (value: {
339
- readonly [$$ScaleValue]: "space";
340
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
341
- paddingTop: {
342
- readonly [$$ScaleValue]: "space";
343
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
344
- };
345
- pr: (value: {
346
- readonly [$$ScaleValue]: "space";
347
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
348
- paddingRight: {
349
- readonly [$$ScaleValue]: "space";
350
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
351
- };
352
- pb: (value: {
353
- readonly [$$ScaleValue]: "space";
354
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
355
- paddingBottom: {
356
- readonly [$$ScaleValue]: "space";
357
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
358
- };
359
- pl: (value: {
360
- readonly [$$ScaleValue]: "space";
361
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
362
- paddingLeft: {
363
- readonly [$$ScaleValue]: "space";
364
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
365
- };
366
- px: (value: {
367
- readonly [$$ScaleValue]: "space";
368
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
369
- paddingLeft: {
370
- readonly [$$ScaleValue]: "space";
371
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
372
- paddingRight: {
373
- readonly [$$ScaleValue]: "space";
374
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
375
- };
376
- py: (value: {
377
- readonly [$$ScaleValue]: "space";
378
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
379
- paddingTop: {
380
- readonly [$$ScaleValue]: "space";
381
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
382
- paddingBottom: {
383
- readonly [$$ScaleValue]: "space";
384
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
213
+ m: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
214
+ margin: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
215
+ };
216
+ mt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
217
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
218
+ };
219
+ mr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
220
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
221
+ };
222
+ mb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
223
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
224
+ };
225
+ ml: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
226
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
227
+ };
228
+ mx: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
229
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
230
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
231
+ };
232
+ my: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
233
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
234
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
235
+ };
236
+ p: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
237
+ padding: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
238
+ };
239
+ pt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
240
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
241
+ };
242
+ pr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
243
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
244
+ };
245
+ pb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
246
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
247
+ };
248
+ pl: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
249
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
250
+ };
251
+ px: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
252
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
253
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
254
+ };
255
+ py: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
256
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
257
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
385
258
  };
386
259
  cols: (value: number) => {
387
260
  gridColumn: string;
@@ -395,115 +268,51 @@ export declare function createStitches<Prefix extends string = "", Media extends
395
268
  initial: string;
396
269
  editor: string;
397
270
  }, Typography>]: any; }[keyof Typography];
398
- m: (value: {
399
- readonly [$$ScaleValue]: "space";
400
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
401
- margin: {
402
- readonly [$$ScaleValue]: "space";
403
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
271
+ m: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
272
+ margin: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
404
273
  };
405
- mt: (value: {
406
- readonly [$$ScaleValue]: "space";
407
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
408
- marginTop: {
409
- readonly [$$ScaleValue]: "space";
410
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
274
+ mt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
275
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
411
276
  };
412
- mr: (value: {
413
- readonly [$$ScaleValue]: "space";
414
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
415
- marginRight: {
416
- readonly [$$ScaleValue]: "space";
417
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
277
+ mr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
278
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
418
279
  };
419
- mb: (value: {
420
- readonly [$$ScaleValue]: "space";
421
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
422
- marginBottom: {
423
- readonly [$$ScaleValue]: "space";
424
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
280
+ mb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
281
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
425
282
  };
426
- ml: (value: {
427
- readonly [$$ScaleValue]: "space";
428
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
429
- marginLeft: {
430
- readonly [$$ScaleValue]: "space";
431
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
283
+ ml: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
284
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
432
285
  };
433
- mx: (value: {
434
- readonly [$$ScaleValue]: "space";
435
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
436
- marginLeft: {
437
- readonly [$$ScaleValue]: "space";
438
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
439
- marginRight: {
440
- readonly [$$ScaleValue]: "space";
441
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
286
+ mx: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
287
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
288
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
442
289
  };
443
- my: (value: {
444
- readonly [$$ScaleValue]: "space";
445
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
446
- marginTop: {
447
- readonly [$$ScaleValue]: "space";
448
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
449
- marginBottom: {
450
- readonly [$$ScaleValue]: "space";
451
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
290
+ my: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
291
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
292
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
452
293
  };
453
- p: (value: {
454
- readonly [$$ScaleValue]: "space";
455
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
456
- padding: {
457
- readonly [$$ScaleValue]: "space";
458
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
294
+ p: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
295
+ padding: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
459
296
  };
460
- pt: (value: {
461
- readonly [$$ScaleValue]: "space";
462
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
463
- paddingTop: {
464
- readonly [$$ScaleValue]: "space";
465
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
297
+ pt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
298
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
466
299
  };
467
- pr: (value: {
468
- readonly [$$ScaleValue]: "space";
469
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
470
- paddingRight: {
471
- readonly [$$ScaleValue]: "space";
472
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
300
+ pr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
301
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
473
302
  };
474
- pb: (value: {
475
- readonly [$$ScaleValue]: "space";
476
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
477
- paddingBottom: {
478
- readonly [$$ScaleValue]: "space";
479
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
303
+ pb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
304
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
480
305
  };
481
- pl: (value: {
482
- readonly [$$ScaleValue]: "space";
483
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
484
- paddingLeft: {
485
- readonly [$$ScaleValue]: "space";
486
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
306
+ pl: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
307
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
487
308
  };
488
- px: (value: {
489
- readonly [$$ScaleValue]: "space";
490
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
491
- paddingLeft: {
492
- readonly [$$ScaleValue]: "space";
493
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
494
- paddingRight: {
495
- readonly [$$ScaleValue]: "space";
496
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
309
+ px: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
310
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
311
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
497
312
  };
498
- py: (value: {
499
- readonly [$$ScaleValue]: "space";
500
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
501
- paddingTop: {
502
- readonly [$$ScaleValue]: "space";
503
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
504
- paddingBottom: {
505
- readonly [$$ScaleValue]: "space";
506
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
313
+ py: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
314
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
315
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
507
316
  };
508
317
  cols: (value: number) => {
509
318
  gridColumn: string;
@@ -518,115 +327,51 @@ export declare function createStitches<Prefix extends string = "", Media extends
518
327
  initial: string;
519
328
  editor: string;
520
329
  }, Typography>]: any; }[keyof Typography];
521
- m: (value: {
522
- readonly [$$ScaleValue]: "space";
523
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
524
- margin: {
525
- readonly [$$ScaleValue]: "space";
526
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
527
- };
528
- mt: (value: {
529
- readonly [$$ScaleValue]: "space";
530
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
531
- marginTop: {
532
- readonly [$$ScaleValue]: "space";
533
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
534
- };
535
- mr: (value: {
536
- readonly [$$ScaleValue]: "space";
537
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
538
- marginRight: {
539
- readonly [$$ScaleValue]: "space";
540
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
541
- };
542
- mb: (value: {
543
- readonly [$$ScaleValue]: "space";
544
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
545
- marginBottom: {
546
- readonly [$$ScaleValue]: "space";
547
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
548
- };
549
- ml: (value: {
550
- readonly [$$ScaleValue]: "space";
551
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
552
- marginLeft: {
553
- readonly [$$ScaleValue]: "space";
554
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
555
- };
556
- mx: (value: {
557
- readonly [$$ScaleValue]: "space";
558
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
559
- marginLeft: {
560
- readonly [$$ScaleValue]: "space";
561
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
562
- marginRight: {
563
- readonly [$$ScaleValue]: "space";
564
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
565
- };
566
- my: (value: {
567
- readonly [$$ScaleValue]: "space";
568
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
569
- marginTop: {
570
- readonly [$$ScaleValue]: "space";
571
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
572
- marginBottom: {
573
- readonly [$$ScaleValue]: "space";
574
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
575
- };
576
- p: (value: {
577
- readonly [$$ScaleValue]: "space";
578
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
579
- padding: {
580
- readonly [$$ScaleValue]: "space";
581
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
582
- };
583
- pt: (value: {
584
- readonly [$$ScaleValue]: "space";
585
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
586
- paddingTop: {
587
- readonly [$$ScaleValue]: "space";
588
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
589
- };
590
- pr: (value: {
591
- readonly [$$ScaleValue]: "space";
592
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
593
- paddingRight: {
594
- readonly [$$ScaleValue]: "space";
595
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
596
- };
597
- pb: (value: {
598
- readonly [$$ScaleValue]: "space";
599
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
600
- paddingBottom: {
601
- readonly [$$ScaleValue]: "space";
602
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
603
- };
604
- pl: (value: {
605
- readonly [$$ScaleValue]: "space";
606
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
607
- paddingLeft: {
608
- readonly [$$ScaleValue]: "space";
609
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
610
- };
611
- px: (value: {
612
- readonly [$$ScaleValue]: "space";
613
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
614
- paddingLeft: {
615
- readonly [$$ScaleValue]: "space";
616
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
617
- paddingRight: {
618
- readonly [$$ScaleValue]: "space";
619
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
620
- };
621
- py: (value: {
622
- readonly [$$ScaleValue]: "space";
623
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
624
- paddingTop: {
625
- readonly [$$ScaleValue]: "space";
626
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
627
- paddingBottom: {
628
- readonly [$$ScaleValue]: "space";
629
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
330
+ m: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
331
+ margin: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
332
+ };
333
+ mt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
334
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
335
+ };
336
+ mr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
337
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
338
+ };
339
+ mb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
340
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
341
+ };
342
+ ml: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
343
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
344
+ };
345
+ mx: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
346
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
347
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
348
+ };
349
+ my: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
350
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
351
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
352
+ };
353
+ p: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
354
+ padding: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
355
+ };
356
+ pt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
357
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
358
+ };
359
+ pr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
360
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
361
+ };
362
+ pb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
363
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
364
+ };
365
+ pl: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
366
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
367
+ };
368
+ px: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
369
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
370
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
371
+ };
372
+ py: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
373
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
374
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
630
375
  };
631
376
  cols: (value: number) => {
632
377
  gridColumn: string;
@@ -637,12 +382,12 @@ export declare function createStitches<Prefix extends string = "", Media extends
637
382
  (): string;
638
383
  name: string;
639
384
  };
640
- createTheme: <Argument0 extends string | ({ [Scale_2 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })]?: { [Token in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_2]]?: string | number | boolean | undefined; } | undefined; } & {
385
+ createTheme: <Argument0 extends string | ((Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; } extends infer T_2 extends {} ? { [Scale_2 in keyof T_2]?: { [Token in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_2]]?: string | number | boolean | undefined; } | undefined; } : never) & {
641
386
  [x: string]: {
642
387
  [x: string]: string | number | boolean;
643
388
  [x: number]: string | number | boolean;
644
389
  };
645
- }), Argument1 extends string | ({ [Scale_3 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })]?: { [Token_1 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_3]]?: string | number | boolean | undefined; } | undefined; } & {
390
+ }), Argument1 extends string | ((Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; } extends infer T_3 extends {} ? { [Scale_3 in keyof T_3]?: { [Token_1 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_3]]?: string | number | boolean | undefined; } | undefined; } : never) & {
646
391
  [x: string]: {
647
392
  [x: string]: string | number | boolean;
648
393
  [x: number]: string | number | boolean;
@@ -654,403 +399,250 @@ export declare function createStitches<Prefix extends string = "", Media extends
654
399
  theme: string & {
655
400
  className: string;
656
401
  selector: string;
657
- } & { [Scale_4 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })]: { [Token_2 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_4]]: import("@stitches/react/types/theme").Token<Extract<Token_2, string | number>, string, Extract<Scale_4, string | void>, "">; }; };
402
+ } & (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; } extends infer T_4 extends {} ? { [Scale_4 in keyof T_4]: { [Token_2 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_4]]: import("@stitches/react/types/theme").Token<Extract<Token_2, string | number>, string, Extract<Scale_4, string | void>, "">; }; } : never);
658
403
  reset: () => void;
659
404
  getCssText: () => string;
660
- css: <Composers extends (string | import("react").JSXElementConstructor<any> | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | {
661
- [name: string]: unknown;
662
- })[], CSS_1 = import("@stitches/react/types/css-util").CSS<{
663
- initial: "";
664
- } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
665
- typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
666
- initial: string;
667
- editor: string;
668
- }, Typography>]: any; }[keyof Typography];
669
- m: (value: {
670
- readonly [$$ScaleValue]: "space";
671
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
672
- margin: {
673
- readonly [$$ScaleValue]: "space";
674
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
675
- };
676
- mt: (value: {
677
- readonly [$$ScaleValue]: "space";
678
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
679
- marginTop: {
680
- readonly [$$ScaleValue]: "space";
681
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
682
- };
683
- mr: (value: {
684
- readonly [$$ScaleValue]: "space";
685
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
686
- marginRight: {
687
- readonly [$$ScaleValue]: "space";
688
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
689
- };
690
- mb: (value: {
691
- readonly [$$ScaleValue]: "space";
692
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
693
- marginBottom: {
694
- readonly [$$ScaleValue]: "space";
695
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
696
- };
697
- ml: (value: {
698
- readonly [$$ScaleValue]: "space";
699
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
700
- marginLeft: {
701
- readonly [$$ScaleValue]: "space";
702
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
703
- };
704
- mx: (value: {
705
- readonly [$$ScaleValue]: "space";
706
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
707
- marginLeft: {
708
- readonly [$$ScaleValue]: "space";
709
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
710
- marginRight: {
711
- readonly [$$ScaleValue]: "space";
712
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
713
- };
714
- my: (value: {
715
- readonly [$$ScaleValue]: "space";
716
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
717
- marginTop: {
718
- readonly [$$ScaleValue]: "space";
719
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
720
- marginBottom: {
721
- readonly [$$ScaleValue]: "space";
722
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
723
- };
724
- p: (value: {
725
- readonly [$$ScaleValue]: "space";
726
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
727
- padding: {
728
- readonly [$$ScaleValue]: "space";
729
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
730
- };
731
- pt: (value: {
732
- readonly [$$ScaleValue]: "space";
733
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
734
- paddingTop: {
735
- readonly [$$ScaleValue]: "space";
736
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
737
- };
738
- pr: (value: {
739
- readonly [$$ScaleValue]: "space";
740
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
741
- paddingRight: {
742
- readonly [$$ScaleValue]: "space";
743
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
744
- };
745
- pb: (value: {
746
- readonly [$$ScaleValue]: "space";
747
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
748
- paddingBottom: {
749
- readonly [$$ScaleValue]: "space";
750
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
751
- };
752
- pl: (value: {
753
- readonly [$$ScaleValue]: "space";
754
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
755
- paddingLeft: {
756
- readonly [$$ScaleValue]: "space";
757
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
758
- };
759
- px: (value: {
760
- readonly [$$ScaleValue]: "space";
761
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
762
- paddingLeft: {
763
- readonly [$$ScaleValue]: "space";
764
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
765
- paddingRight: {
766
- readonly [$$ScaleValue]: "space";
767
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
768
- };
769
- py: (value: {
770
- readonly [$$ScaleValue]: "space";
771
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
772
- paddingTop: {
773
- readonly [$$ScaleValue]: "space";
774
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
775
- paddingBottom: {
776
- readonly [$$ScaleValue]: "space";
777
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
778
- };
779
- cols: (value: number) => {
780
- gridColumn: string;
781
- "--grid-columns": number;
782
- };
783
- }>>(...composers: { [K_1 in keyof Composers]: string extends Composers[K_1] ? Composers[K_1] : Composers[K_1] extends string | import("react").JSXElementConstructor<any> | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> ? Composers[K_1] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
784
- variants?: {
785
- [x: string]: {
786
- [x: string]: CSS_1;
787
- [x: number]: CSS_1;
788
- };
789
- } | undefined;
790
- compoundVariants?: (("variants" extends keyof Composers[K_1] ? { [Name in keyof Composers[K_1][keyof Composers[K_1] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers[K_1][keyof Composers[K_1] & "variants"][Name]> | undefined; } : import("@stitches/react/types/util").WideObject) & {
791
- css: CSS_1;
792
- })[] | undefined;
793
- defaultVariants?: ("variants" extends keyof Composers[K_1] ? { [Name_1 in keyof Composers[K_1][keyof Composers[K_1] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers[K_1][keyof Composers[K_1] & "variants"][Name_1]> | undefined; } : import("@stitches/react/types/util").WideObject) | undefined;
794
- } & CSS_1 & { [K2 in keyof Composers[K_1]]: K2 extends "compoundVariants" | "defaultVariants" | "variants" ? unknown : K2 extends keyof CSS_1 ? CSS_1[K2] : unknown; }; }) => import("@stitches/react/types/styled-component").CssComponent<import("@stitches/react/types/styled-component").StyledComponentType<Composers>, import("@stitches/react/types/styled-component").StyledComponentProps<Composers>, {
795
- initial: "";
796
- } & Media, CSS_1>;
797
- styled: <Type extends import("@stitches/react/types/util").Function | keyof JSX.IntrinsicElements | import("react").ComponentType<any>, Composers_1 extends (string | import("@stitches/react/types/util").Function | import("react").ComponentType<any> | {
798
- [name: string]: unknown;
799
- })[], CSS_2 = import("@stitches/react/types/css-util").CSS<{
405
+ css: {
406
+ withConfig: (config: {
407
+ componentId?: string | undefined;
408
+ displayName?: string | undefined;
409
+ shouldForwardStitchesProp?: ((prop: "css" | (string & {})) => boolean | void) | undefined;
410
+ }) => import("@stitches/react/types/stitches").CssFunctionType<{
411
+ initial: "";
412
+ } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
413
+ typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
414
+ initial: string;
415
+ editor: string;
416
+ }, Typography>]: any; }[keyof Typography];
417
+ m: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
418
+ margin: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
419
+ };
420
+ mt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
421
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
422
+ };
423
+ mr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
424
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
425
+ };
426
+ mb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
427
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
428
+ };
429
+ ml: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
430
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
431
+ };
432
+ mx: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
433
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
434
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
435
+ };
436
+ my: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
437
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
438
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
439
+ };
440
+ p: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
441
+ padding: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
442
+ };
443
+ pt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
444
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
445
+ };
446
+ pr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
447
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
448
+ };
449
+ pb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
450
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
451
+ };
452
+ pl: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
453
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
454
+ };
455
+ px: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
456
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
457
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
458
+ };
459
+ py: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
460
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
461
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
462
+ };
463
+ cols: (value: number) => {
464
+ gridColumn: string;
465
+ "--grid-columns": number;
466
+ };
467
+ }>;
468
+ } & import("@stitches/react/types/stitches").CssFunctionType<{
800
469
  initial: "";
801
470
  } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
802
471
  typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
803
472
  initial: string;
804
473
  editor: string;
805
474
  }, Typography>]: any; }[keyof Typography];
806
- m: (value: {
807
- readonly [$$ScaleValue]: "space";
808
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
809
- margin: {
810
- readonly [$$ScaleValue]: "space";
811
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
475
+ m: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
476
+ margin: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
812
477
  };
813
- mt: (value: {
814
- readonly [$$ScaleValue]: "space";
815
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
816
- marginTop: {
817
- readonly [$$ScaleValue]: "space";
818
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
478
+ mt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
479
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
819
480
  };
820
- mr: (value: {
821
- readonly [$$ScaleValue]: "space";
822
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
823
- marginRight: {
824
- readonly [$$ScaleValue]: "space";
825
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
481
+ mr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
482
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
826
483
  };
827
- mb: (value: {
828
- readonly [$$ScaleValue]: "space";
829
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
830
- marginBottom: {
831
- readonly [$$ScaleValue]: "space";
832
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
484
+ mb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
485
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
833
486
  };
834
- ml: (value: {
835
- readonly [$$ScaleValue]: "space";
836
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
837
- marginLeft: {
838
- readonly [$$ScaleValue]: "space";
839
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
487
+ ml: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
488
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
840
489
  };
841
- mx: (value: {
842
- readonly [$$ScaleValue]: "space";
843
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
844
- marginLeft: {
845
- readonly [$$ScaleValue]: "space";
846
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
847
- marginRight: {
848
- readonly [$$ScaleValue]: "space";
849
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
490
+ mx: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
491
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
492
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
850
493
  };
851
- my: (value: {
852
- readonly [$$ScaleValue]: "space";
853
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
854
- marginTop: {
855
- readonly [$$ScaleValue]: "space";
856
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
857
- marginBottom: {
858
- readonly [$$ScaleValue]: "space";
859
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
494
+ my: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
495
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
496
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
860
497
  };
861
- p: (value: {
862
- readonly [$$ScaleValue]: "space";
863
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
864
- padding: {
865
- readonly [$$ScaleValue]: "space";
866
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
498
+ p: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
499
+ padding: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
867
500
  };
868
- pt: (value: {
869
- readonly [$$ScaleValue]: "space";
870
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
871
- paddingTop: {
872
- readonly [$$ScaleValue]: "space";
873
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
501
+ pt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
502
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
874
503
  };
875
- pr: (value: {
876
- readonly [$$ScaleValue]: "space";
877
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
878
- paddingRight: {
879
- readonly [$$ScaleValue]: "space";
880
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
504
+ pr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
505
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
881
506
  };
882
- pb: (value: {
883
- readonly [$$ScaleValue]: "space";
884
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
885
- paddingBottom: {
886
- readonly [$$ScaleValue]: "space";
887
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
507
+ pb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
508
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
888
509
  };
889
- pl: (value: {
890
- readonly [$$ScaleValue]: "space";
891
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
892
- paddingLeft: {
893
- readonly [$$ScaleValue]: "space";
894
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
510
+ pl: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
511
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
895
512
  };
896
- px: (value: {
897
- readonly [$$ScaleValue]: "space";
898
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
899
- paddingLeft: {
900
- readonly [$$ScaleValue]: "space";
901
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
902
- paddingRight: {
903
- readonly [$$ScaleValue]: "space";
904
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
513
+ px: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
514
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
515
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
905
516
  };
906
- py: (value: {
907
- readonly [$$ScaleValue]: "space";
908
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
909
- paddingTop: {
910
- readonly [$$ScaleValue]: "space";
911
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
912
- paddingBottom: {
913
- readonly [$$ScaleValue]: "space";
914
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
517
+ py: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
518
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
519
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
915
520
  };
916
521
  cols: (value: number) => {
917
522
  gridColumn: string;
918
523
  "--grid-columns": number;
919
524
  };
920
- }>>(type: Type, ...composers: { [K_2 in keyof Composers_1]: string extends Composers_1[K_2] ? Composers_1[K_2] : Composers_1[K_2] extends string | import("@stitches/react/types/util").Function | import("react").ComponentType<any> ? Composers_1[K_2] : import("@stitches/react/types/stitches").RemoveIndex<CSS_2> & {
921
- variants?: {
922
- [x: string]: {
923
- [x: string]: CSS_2;
924
- [x: number]: CSS_2;
925
- };
926
- } | undefined;
927
- compoundVariants?: (("variants" extends keyof Composers_1[K_2] ? { [Name_2 in keyof Composers_1[K_2][keyof Composers_1[K_2] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers_1[K_2][keyof Composers_1[K_2] & "variants"][Name_2]> | undefined; } : import("@stitches/react/types/util").WideObject) & {
928
- css: CSS_2;
929
- })[] | undefined;
930
- defaultVariants?: ("variants" extends keyof Composers_1[K_2] ? { [Name_3 in keyof Composers_1[K_2][keyof Composers_1[K_2] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers_1[K_2][keyof Composers_1[K_2] & "variants"][Name_3]> | undefined; } : import("@stitches/react/types/util").WideObject) | undefined;
931
- } & CSS_2 & { [K2_1 in keyof Composers_1[K_2]]: K2_1 extends "compoundVariants" | "defaultVariants" | "variants" ? unknown : K2_1 extends keyof CSS_2 ? CSS_2[K2_1] : unknown; }; }) => import("@stitches/react/types/styled-component").StyledComponent<Type, import("@stitches/react/types/styled-component").StyledComponentProps<Composers_1>, {
932
- initial: "";
933
- } & Media, import("@stitches/react/types/css-util").CSS<{
525
+ }>;
526
+ styled: {
527
+ withConfig: (config: {
528
+ componentId?: string | undefined;
529
+ displayName?: string | undefined;
530
+ shouldForwardStitchesProp?: ((prop: "css" | (string & {})) => boolean | void) | undefined;
531
+ }) => import("@stitches/react/types/stitches").StyledFunctionType<{
532
+ initial: "";
533
+ } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
534
+ typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
535
+ initial: string;
536
+ editor: string;
537
+ }, Typography>]: any; }[keyof Typography];
538
+ m: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
539
+ margin: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
540
+ };
541
+ mt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
542
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
543
+ };
544
+ mr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
545
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
546
+ };
547
+ mb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
548
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
549
+ };
550
+ ml: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
551
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
552
+ };
553
+ mx: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
554
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
555
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
556
+ };
557
+ my: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
558
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
559
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
560
+ };
561
+ p: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
562
+ padding: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
563
+ };
564
+ pt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
565
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
566
+ };
567
+ pr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
568
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
569
+ };
570
+ pb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
571
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
572
+ };
573
+ pl: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
574
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
575
+ };
576
+ px: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
577
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
578
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
579
+ };
580
+ py: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
581
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
582
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
583
+ };
584
+ cols: (value: number) => {
585
+ gridColumn: string;
586
+ "--grid-columns": number;
587
+ };
588
+ }>;
589
+ } & import("@stitches/react/types/stitches").StyledFunctionType<{
934
590
  initial: "";
935
591
  } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
936
592
  typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
937
593
  initial: string;
938
594
  editor: string;
939
595
  }, Typography>]: any; }[keyof Typography];
940
- m: (value: {
941
- readonly [$$ScaleValue]: "space";
942
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
943
- margin: {
944
- readonly [$$ScaleValue]: "space";
945
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
596
+ m: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
597
+ margin: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
946
598
  };
947
- mt: (value: {
948
- readonly [$$ScaleValue]: "space";
949
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
950
- marginTop: {
951
- readonly [$$ScaleValue]: "space";
952
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
599
+ mt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
600
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
953
601
  };
954
- mr: (value: {
955
- readonly [$$ScaleValue]: "space";
956
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
957
- marginRight: {
958
- readonly [$$ScaleValue]: "space";
959
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
602
+ mr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
603
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
960
604
  };
961
- mb: (value: {
962
- readonly [$$ScaleValue]: "space";
963
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
964
- marginBottom: {
965
- readonly [$$ScaleValue]: "space";
966
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
605
+ mb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
606
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
967
607
  };
968
- ml: (value: {
969
- readonly [$$ScaleValue]: "space";
970
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
971
- marginLeft: {
972
- readonly [$$ScaleValue]: "space";
973
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
608
+ ml: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
609
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
974
610
  };
975
- mx: (value: {
976
- readonly [$$ScaleValue]: "space";
977
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
978
- marginLeft: {
979
- readonly [$$ScaleValue]: "space";
980
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
981
- marginRight: {
982
- readonly [$$ScaleValue]: "space";
983
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
611
+ mx: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
612
+ marginLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
613
+ marginRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
984
614
  };
985
- my: (value: {
986
- readonly [$$ScaleValue]: "space";
987
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
988
- marginTop: {
989
- readonly [$$ScaleValue]: "space";
990
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
991
- marginBottom: {
992
- readonly [$$ScaleValue]: "space";
993
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
615
+ my: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
616
+ marginTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
617
+ marginBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
994
618
  };
995
- p: (value: {
996
- readonly [$$ScaleValue]: "space";
997
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
998
- padding: {
999
- readonly [$$ScaleValue]: "space";
1000
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
619
+ p: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
620
+ padding: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1001
621
  };
1002
- pt: (value: {
1003
- readonly [$$ScaleValue]: "space";
1004
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1005
- paddingTop: {
1006
- readonly [$$ScaleValue]: "space";
1007
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
622
+ pt: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
623
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1008
624
  };
1009
- pr: (value: {
1010
- readonly [$$ScaleValue]: "space";
1011
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1012
- paddingRight: {
1013
- readonly [$$ScaleValue]: "space";
1014
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
625
+ pr: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
626
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1015
627
  };
1016
- pb: (value: {
1017
- readonly [$$ScaleValue]: "space";
1018
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1019
- paddingBottom: {
1020
- readonly [$$ScaleValue]: "space";
1021
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
628
+ pb: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
629
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1022
630
  };
1023
- pl: (value: {
1024
- readonly [$$ScaleValue]: "space";
1025
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1026
- paddingLeft: {
1027
- readonly [$$ScaleValue]: "space";
1028
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
631
+ pl: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
632
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1029
633
  };
1030
- px: (value: {
1031
- readonly [$$ScaleValue]: "space";
1032
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1033
- paddingLeft: {
1034
- readonly [$$ScaleValue]: "space";
1035
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1036
- paddingRight: {
1037
- readonly [$$ScaleValue]: "space";
1038
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
634
+ px: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
635
+ paddingLeft: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
636
+ paddingRight: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1039
637
  };
1040
- py: (value: {
1041
- readonly [$$ScaleValue]: "space";
1042
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1043
- paddingTop: {
1044
- readonly [$$ScaleValue]: "space";
1045
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1046
- paddingBottom: {
1047
- readonly [$$ScaleValue]: "space";
1048
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
638
+ py: (value: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
639
+ paddingTop: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
640
+ paddingBottom: import("@stitches/react/types/css-util").WithScaleValue<"space"> | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1049
641
  };
1050
642
  cols: (value: number) => {
1051
643
  gridColumn: string;
1052
644
  "--grid-columns": number;
1053
645
  };
1054
- }>>;
646
+ }>;
1055
647
  };
1056
648
  export {};