@nextui-org/react 1.0.2-alpha.1 → 1.0.2-beta.3

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 (114) hide show
  1. package/README.md +18 -4
  2. package/cjs/avatar/avatar-group.styles.d.ts +66 -0
  3. package/cjs/avatar/avatar.styles.d.ts +33 -0
  4. package/cjs/backdrop/backdrop.d.ts +1 -1
  5. package/cjs/backdrop/backdrop.styles.d.ts +99 -0
  6. package/cjs/button/button-group.styles.d.ts +33 -0
  7. package/cjs/button/button-icon.d.ts +33 -0
  8. package/cjs/button/button.styles.d.ts +34 -1
  9. package/cjs/button/button.styles.js +36 -5
  10. package/cjs/card/card.styles.d.ts +132 -0
  11. package/cjs/card/card.styles.js +3 -3
  12. package/cjs/checkbox/checkbox.js +1 -1
  13. package/cjs/checkbox/checkbox.styles.d.ts +297 -0
  14. package/cjs/code/code.styles.d.ts +66 -0
  15. package/cjs/col/col.styles.d.ts +33 -0
  16. package/cjs/collapse/collapse.d.ts +5 -3
  17. package/cjs/collapse/collapse.js +10 -4
  18. package/cjs/collapse/collapse.styles.d.ts +165 -0
  19. package/cjs/collapse/collapse.styles.js +4 -2
  20. package/cjs/container/container.styles.d.ts +33 -0
  21. package/cjs/divider/divider.styles.d.ts +66 -0
  22. package/cjs/grid/grid.styles.d.ts +66 -0
  23. package/cjs/image/image.styles.d.ts +99 -0
  24. package/cjs/input/input.js +1 -0
  25. package/cjs/input/input.styles.d.ts +363 -0
  26. package/cjs/link/link.styles.d.ts +66 -0
  27. package/cjs/loading/loading.styles.d.ts +198 -0
  28. package/cjs/modal/modal.styles.d.ts +198 -0
  29. package/cjs/pagination/pagination.styles.d.ts +198 -0
  30. package/cjs/progress/progress.styles.d.ts +66 -0
  31. package/cjs/radio/radio.styles.d.ts +198 -0
  32. package/cjs/row/row.styles.d.ts +33 -0
  33. package/cjs/snippet/snippet.styles.d.ts +132 -0
  34. package/cjs/spacer/spacer.styles.d.ts +33 -0
  35. package/cjs/switch/index.d.ts +1 -1
  36. package/cjs/switch/switch.styles.d.ts +132 -0
  37. package/cjs/text/child.d.ts +2 -0
  38. package/cjs/text/text.d.ts +3 -3
  39. package/cjs/text/text.js +1 -1
  40. package/cjs/text/text.styles.d.ts +33 -0
  41. package/cjs/theme/common.d.ts +60 -0
  42. package/cjs/theme/common.js +13 -0
  43. package/cjs/theme/stitches.config.d.ts +1345 -1041
  44. package/cjs/theme/stitches.config.js +17 -17
  45. package/cjs/theme/theme-provider.js +16 -13
  46. package/cjs/theme/types.d.ts +1 -0
  47. package/cjs/theme/utils.d.ts +1 -0
  48. package/cjs/theme/utils.js +12 -2
  49. package/cjs/tooltip/tooltip.d.ts +4 -1
  50. package/cjs/tooltip/tooltip.js +4 -2
  51. package/cjs/tooltip/tooltip.styles.d.ts +132 -0
  52. package/cjs/tooltip/tooltip.styles.js +2 -8
  53. package/cjs/user/user.styles.d.ts +165 -0
  54. package/cjs/utils/drip.d.ts +33 -0
  55. package/esm/avatar/avatar-group.styles.d.ts +66 -0
  56. package/esm/avatar/avatar.styles.d.ts +33 -0
  57. package/esm/backdrop/backdrop.d.ts +1 -1
  58. package/esm/backdrop/backdrop.styles.d.ts +99 -0
  59. package/esm/button/button-group.styles.d.ts +33 -0
  60. package/esm/button/button-icon.d.ts +33 -0
  61. package/esm/button/button.styles.d.ts +34 -1
  62. package/esm/button/button.styles.js +36 -5
  63. package/esm/card/card.styles.d.ts +132 -0
  64. package/esm/card/card.styles.js +3 -3
  65. package/esm/checkbox/checkbox.js +1 -1
  66. package/esm/checkbox/checkbox.styles.d.ts +297 -0
  67. package/esm/code/code.styles.d.ts +66 -0
  68. package/esm/col/col.styles.d.ts +33 -0
  69. package/esm/collapse/collapse.d.ts +5 -3
  70. package/esm/collapse/collapse.js +10 -4
  71. package/esm/collapse/collapse.styles.d.ts +165 -0
  72. package/esm/collapse/collapse.styles.js +4 -2
  73. package/esm/container/container.styles.d.ts +33 -0
  74. package/esm/divider/divider.styles.d.ts +66 -0
  75. package/esm/grid/grid.styles.d.ts +66 -0
  76. package/esm/image/image.styles.d.ts +99 -0
  77. package/esm/input/input.js +1 -0
  78. package/esm/input/input.styles.d.ts +363 -0
  79. package/esm/link/link.styles.d.ts +66 -0
  80. package/esm/loading/loading.styles.d.ts +198 -0
  81. package/esm/modal/modal.styles.d.ts +198 -0
  82. package/esm/pagination/pagination.styles.d.ts +198 -0
  83. package/esm/progress/progress.styles.d.ts +66 -0
  84. package/esm/radio/radio.styles.d.ts +198 -0
  85. package/esm/row/row.styles.d.ts +33 -0
  86. package/esm/snippet/snippet.styles.d.ts +132 -0
  87. package/esm/spacer/spacer.styles.d.ts +33 -0
  88. package/esm/switch/index.d.ts +1 -1
  89. package/esm/switch/switch.styles.d.ts +132 -0
  90. package/esm/text/child.d.ts +2 -0
  91. package/esm/text/text.d.ts +3 -3
  92. package/esm/text/text.js +1 -1
  93. package/esm/text/text.styles.d.ts +33 -0
  94. package/esm/theme/common.d.ts +60 -0
  95. package/esm/theme/common.js +13 -0
  96. package/esm/theme/stitches.config.d.ts +1345 -1041
  97. package/esm/theme/stitches.config.js +17 -17
  98. package/esm/theme/theme-provider.js +16 -13
  99. package/esm/theme/types.d.ts +1 -0
  100. package/esm/theme/utils.d.ts +1 -0
  101. package/esm/theme/utils.js +12 -2
  102. package/esm/tooltip/tooltip.d.ts +4 -1
  103. package/esm/tooltip/tooltip.js +4 -2
  104. package/esm/tooltip/tooltip.styles.d.ts +132 -0
  105. package/esm/tooltip/tooltip.styles.js +2 -8
  106. package/esm/user/user.styles.d.ts +165 -0
  107. package/esm/utils/drip.d.ts +33 -0
  108. package/package.json +3 -2
  109. package/umd/nextui.js +198 -188
  110. package/umd/nextui.min.js +1 -1
  111. package/cjs/theme/ssr-provider.d.ts +0 -7
  112. package/cjs/theme/ssr-provider.js +0 -51
  113. package/esm/theme/ssr-provider.d.ts +0 -7
  114. package/esm/theme/ssr-provider.js +0 -51
@@ -2,6 +2,490 @@
2
2
  import type * as Stitches from '@stitches/react';
3
3
  import { Theme, BaseTheme } from './types';
4
4
  export declare const getStitchesTheme: (targetTheme: BaseTheme) => BaseTheme;
5
+ export declare const createThemeBase: <Argument0 extends string | ({
6
+ shadows?: {
7
+ xs?: string | number | boolean | undefined;
8
+ sm?: string | number | boolean | undefined;
9
+ md?: string | number | boolean | undefined;
10
+ lg?: string | number | boolean | undefined;
11
+ xl?: string | number | boolean | undefined;
12
+ } | undefined;
13
+ colors?: {
14
+ accents1?: string | number | boolean | undefined;
15
+ accents2?: string | number | boolean | undefined;
16
+ accents3?: string | number | boolean | undefined;
17
+ accents4?: string | number | boolean | undefined;
18
+ accents5?: string | number | boolean | undefined;
19
+ accents6?: string | number | boolean | undefined;
20
+ accents7?: string | number | boolean | undefined;
21
+ accents8?: string | number | boolean | undefined;
22
+ accents9?: string | number | boolean | undefined;
23
+ text?: string | number | boolean | undefined;
24
+ background?: string | number | boolean | undefined;
25
+ foreground?: string | number | boolean | undefined;
26
+ codeLight?: string | number | boolean | undefined;
27
+ code?: string | number | boolean | undefined;
28
+ border?: string | number | boolean | undefined;
29
+ selection?: string | number | boolean | undefined;
30
+ white?: string | number | boolean | undefined;
31
+ black?: string | number | boolean | undefined;
32
+ blue100?: string | number | boolean | undefined;
33
+ blue200?: string | number | boolean | undefined;
34
+ blue300?: string | number | boolean | undefined;
35
+ blue400?: string | number | boolean | undefined;
36
+ blue500?: string | number | boolean | undefined;
37
+ blue600?: string | number | boolean | undefined;
38
+ blue700?: string | number | boolean | undefined;
39
+ blue800?: string | number | boolean | undefined;
40
+ blue900?: string | number | boolean | undefined;
41
+ purple100?: string | number | boolean | undefined;
42
+ purple200?: string | number | boolean | undefined;
43
+ purple300?: string | number | boolean | undefined;
44
+ purple400?: string | number | boolean | undefined;
45
+ purple500?: string | number | boolean | undefined;
46
+ purple600?: string | number | boolean | undefined;
47
+ purple700?: string | number | boolean | undefined;
48
+ purple800?: string | number | boolean | undefined;
49
+ purple900?: string | number | boolean | undefined;
50
+ green100?: string | number | boolean | undefined;
51
+ green200?: string | number | boolean | undefined;
52
+ green300?: string | number | boolean | undefined;
53
+ green400?: string | number | boolean | undefined;
54
+ green500?: string | number | boolean | undefined;
55
+ green600?: string | number | boolean | undefined;
56
+ green700?: string | number | boolean | undefined;
57
+ green800?: string | number | boolean | undefined;
58
+ green900?: string | number | boolean | undefined;
59
+ yellow100?: string | number | boolean | undefined;
60
+ yellow200?: string | number | boolean | undefined;
61
+ yellow300?: string | number | boolean | undefined;
62
+ yellow400?: string | number | boolean | undefined;
63
+ yellow500?: string | number | boolean | undefined;
64
+ yellow600?: string | number | boolean | undefined;
65
+ yellow700?: string | number | boolean | undefined;
66
+ yellow800?: string | number | boolean | undefined;
67
+ yellow900?: string | number | boolean | undefined;
68
+ red100?: string | number | boolean | undefined;
69
+ red200?: string | number | boolean | undefined;
70
+ red300?: string | number | boolean | undefined;
71
+ red400?: string | number | boolean | undefined;
72
+ red500?: string | number | boolean | undefined;
73
+ red600?: string | number | boolean | undefined;
74
+ red700?: string | number | boolean | undefined;
75
+ red800?: string | number | boolean | undefined;
76
+ red900?: string | number | boolean | undefined;
77
+ cyan100?: string | number | boolean | undefined;
78
+ cyan200?: string | number | boolean | undefined;
79
+ cyan300?: string | number | boolean | undefined;
80
+ cyan400?: string | number | boolean | undefined;
81
+ cyan500?: string | number | boolean | undefined;
82
+ cyan600?: string | number | boolean | undefined;
83
+ cyan700?: string | number | boolean | undefined;
84
+ cyan800?: string | number | boolean | undefined;
85
+ cyan900?: string | number | boolean | undefined;
86
+ pink100?: string | number | boolean | undefined;
87
+ pink200?: string | number | boolean | undefined;
88
+ pink300?: string | number | boolean | undefined;
89
+ pink400?: string | number | boolean | undefined;
90
+ pink500?: string | number | boolean | undefined;
91
+ pink600?: string | number | boolean | undefined;
92
+ pink700?: string | number | boolean | undefined;
93
+ pink800?: string | number | boolean | undefined;
94
+ pink900?: string | number | boolean | undefined;
95
+ gray100?: string | number | boolean | undefined;
96
+ gray200?: string | number | boolean | undefined;
97
+ gray300?: string | number | boolean | undefined;
98
+ gray400?: string | number | boolean | undefined;
99
+ gray500?: string | number | boolean | undefined;
100
+ gray600?: string | number | boolean | undefined;
101
+ gray700?: string | number | boolean | undefined;
102
+ gray800?: string | number | boolean | undefined;
103
+ gray900?: string | number | boolean | undefined;
104
+ primaryLight?: string | number | boolean | undefined;
105
+ primary?: string | number | boolean | undefined;
106
+ primaryDark?: string | number | boolean | undefined;
107
+ secondaryLight?: string | number | boolean | undefined;
108
+ secondary?: string | number | boolean | undefined;
109
+ secondaryDark?: string | number | boolean | undefined;
110
+ successLight?: string | number | boolean | undefined;
111
+ success?: string | number | boolean | undefined;
112
+ successDark?: string | number | boolean | undefined;
113
+ warningLight?: string | number | boolean | undefined;
114
+ warning?: string | number | boolean | undefined;
115
+ warningDark?: string | number | boolean | undefined;
116
+ errorLight?: string | number | boolean | undefined;
117
+ error?: string | number | boolean | undefined;
118
+ errorDark?: string | number | boolean | undefined;
119
+ gradient?: string | number | boolean | undefined;
120
+ link?: string | number | boolean | undefined;
121
+ } | undefined;
122
+ fonts?: {
123
+ sans?: string | number | boolean | undefined;
124
+ mono?: string | number | boolean | undefined;
125
+ } | undefined;
126
+ fontSizes?: {
127
+ tiny?: string | number | boolean | undefined;
128
+ xs?: string | number | boolean | undefined;
129
+ base?: string | number | boolean | undefined;
130
+ sm?: string | number | boolean | undefined;
131
+ md?: string | number | boolean | undefined;
132
+ lg?: string | number | boolean | undefined;
133
+ xl?: string | number | boolean | undefined;
134
+ } | undefined;
135
+ fontWeights?: {
136
+ hairline?: string | number | boolean | undefined;
137
+ thin?: string | number | boolean | undefined;
138
+ light?: string | number | boolean | undefined;
139
+ normal?: string | number | boolean | undefined;
140
+ medium?: string | number | boolean | undefined;
141
+ semibold?: string | number | boolean | undefined;
142
+ bold?: string | number | boolean | undefined;
143
+ extrabold?: string | number | boolean | undefined;
144
+ black?: string | number | boolean | undefined;
145
+ } | undefined;
146
+ lineHeights?: {
147
+ xs?: string | number | boolean | undefined;
148
+ sm?: string | number | boolean | undefined;
149
+ md?: string | number | boolean | undefined;
150
+ lg?: string | number | boolean | undefined;
151
+ xl?: string | number | boolean | undefined;
152
+ } | undefined;
153
+ letterSpacings?: {
154
+ tighter?: string | number | boolean | undefined;
155
+ tight?: string | number | boolean | undefined;
156
+ normal?: string | number | boolean | undefined;
157
+ wide?: string | number | boolean | undefined;
158
+ wider?: string | number | boolean | undefined;
159
+ widest?: string | number | boolean | undefined;
160
+ } | undefined;
161
+ space?: {
162
+ 0?: string | number | boolean | undefined;
163
+ xs?: string | number | boolean | undefined;
164
+ sm?: string | number | boolean | undefined;
165
+ md?: string | number | boolean | undefined;
166
+ lg?: string | number | boolean | undefined;
167
+ xl?: string | number | boolean | undefined;
168
+ px?: string | number | boolean | undefined;
169
+ 1?: string | number | boolean | undefined;
170
+ 2?: string | number | boolean | undefined;
171
+ 3?: string | number | boolean | undefined;
172
+ 4?: string | number | boolean | undefined;
173
+ 5?: string | number | boolean | undefined;
174
+ 6?: string | number | boolean | undefined;
175
+ 7?: string | number | boolean | undefined;
176
+ 8?: string | number | boolean | undefined;
177
+ 9?: string | number | boolean | undefined;
178
+ 10?: string | number | boolean | undefined;
179
+ 11?: string | number | boolean | undefined;
180
+ 12?: string | number | boolean | undefined;
181
+ 13?: string | number | boolean | undefined;
182
+ 14?: string | number | boolean | undefined;
183
+ 15?: string | number | boolean | undefined;
184
+ 16?: string | number | boolean | undefined;
185
+ 17?: string | number | boolean | undefined;
186
+ 18?: string | number | boolean | undefined;
187
+ 20?: string | number | boolean | undefined;
188
+ 24?: string | number | boolean | undefined;
189
+ 28?: string | number | boolean | undefined;
190
+ 32?: string | number | boolean | undefined;
191
+ 36?: string | number | boolean | undefined;
192
+ 40?: string | number | boolean | undefined;
193
+ 44?: string | number | boolean | undefined;
194
+ 48?: string | number | boolean | undefined;
195
+ 52?: string | number | boolean | undefined;
196
+ 56?: string | number | boolean | undefined;
197
+ 60?: string | number | boolean | undefined;
198
+ 64?: string | number | boolean | undefined;
199
+ 72?: string | number | boolean | undefined;
200
+ 80?: string | number | boolean | undefined;
201
+ 96?: string | number | boolean | undefined;
202
+ } | undefined;
203
+ radii?: {
204
+ xs?: string | number | boolean | undefined;
205
+ sm?: string | number | boolean | undefined;
206
+ md?: string | number | boolean | undefined;
207
+ base?: string | number | boolean | undefined;
208
+ lg?: string | number | boolean | undefined;
209
+ xl?: string | number | boolean | undefined;
210
+ squared?: string | number | boolean | undefined;
211
+ rounded?: string | number | boolean | undefined;
212
+ pill?: string | number | boolean | undefined;
213
+ } | undefined;
214
+ zIndices?: {
215
+ 1?: string | number | boolean | undefined;
216
+ 2?: string | number | boolean | undefined;
217
+ 3?: string | number | boolean | undefined;
218
+ 4?: string | number | boolean | undefined;
219
+ 5?: string | number | boolean | undefined;
220
+ 10?: string | number | boolean | undefined;
221
+ max?: string | number | boolean | undefined;
222
+ } | undefined;
223
+ borderWeights?: {
224
+ light?: string | number | boolean | undefined;
225
+ normal?: string | number | boolean | undefined;
226
+ bold?: string | number | boolean | undefined;
227
+ extrabold?: string | number | boolean | undefined;
228
+ black?: string | number | boolean | undefined;
229
+ } | undefined;
230
+ transitions?: {
231
+ default?: string | number | boolean | undefined;
232
+ } | undefined;
233
+ breakpoints?: {
234
+ xs?: string | number | boolean | undefined;
235
+ sm?: string | number | boolean | undefined;
236
+ md?: string | number | boolean | undefined;
237
+ lg?: string | number | boolean | undefined;
238
+ xl?: string | number | boolean | undefined;
239
+ } | undefined;
240
+ } & {
241
+ [x: string]: {
242
+ [x: string]: string | number | boolean;
243
+ [x: number]: string | number | boolean;
244
+ };
245
+ }), Argument1 extends string | ({
246
+ shadows?: {
247
+ xs?: string | number | boolean | undefined;
248
+ sm?: string | number | boolean | undefined;
249
+ md?: string | number | boolean | undefined;
250
+ lg?: string | number | boolean | undefined;
251
+ xl?: string | number | boolean | undefined;
252
+ } | undefined;
253
+ colors?: {
254
+ accents1?: string | number | boolean | undefined;
255
+ accents2?: string | number | boolean | undefined;
256
+ accents3?: string | number | boolean | undefined;
257
+ accents4?: string | number | boolean | undefined;
258
+ accents5?: string | number | boolean | undefined;
259
+ accents6?: string | number | boolean | undefined;
260
+ accents7?: string | number | boolean | undefined;
261
+ accents8?: string | number | boolean | undefined;
262
+ accents9?: string | number | boolean | undefined;
263
+ text?: string | number | boolean | undefined;
264
+ background?: string | number | boolean | undefined;
265
+ foreground?: string | number | boolean | undefined;
266
+ codeLight?: string | number | boolean | undefined;
267
+ code?: string | number | boolean | undefined;
268
+ border?: string | number | boolean | undefined;
269
+ selection?: string | number | boolean | undefined;
270
+ white?: string | number | boolean | undefined;
271
+ black?: string | number | boolean | undefined;
272
+ blue100?: string | number | boolean | undefined;
273
+ blue200?: string | number | boolean | undefined;
274
+ blue300?: string | number | boolean | undefined;
275
+ blue400?: string | number | boolean | undefined;
276
+ blue500?: string | number | boolean | undefined;
277
+ blue600?: string | number | boolean | undefined;
278
+ blue700?: string | number | boolean | undefined;
279
+ blue800?: string | number | boolean | undefined;
280
+ blue900?: string | number | boolean | undefined;
281
+ purple100?: string | number | boolean | undefined;
282
+ purple200?: string | number | boolean | undefined;
283
+ purple300?: string | number | boolean | undefined;
284
+ purple400?: string | number | boolean | undefined;
285
+ purple500?: string | number | boolean | undefined;
286
+ purple600?: string | number | boolean | undefined;
287
+ purple700?: string | number | boolean | undefined;
288
+ purple800?: string | number | boolean | undefined;
289
+ purple900?: string | number | boolean | undefined;
290
+ green100?: string | number | boolean | undefined;
291
+ green200?: string | number | boolean | undefined;
292
+ green300?: string | number | boolean | undefined;
293
+ green400?: string | number | boolean | undefined;
294
+ green500?: string | number | boolean | undefined;
295
+ green600?: string | number | boolean | undefined;
296
+ green700?: string | number | boolean | undefined;
297
+ green800?: string | number | boolean | undefined;
298
+ green900?: string | number | boolean | undefined;
299
+ yellow100?: string | number | boolean | undefined;
300
+ yellow200?: string | number | boolean | undefined;
301
+ yellow300?: string | number | boolean | undefined;
302
+ yellow400?: string | number | boolean | undefined;
303
+ yellow500?: string | number | boolean | undefined;
304
+ yellow600?: string | number | boolean | undefined;
305
+ yellow700?: string | number | boolean | undefined;
306
+ yellow800?: string | number | boolean | undefined;
307
+ yellow900?: string | number | boolean | undefined;
308
+ red100?: string | number | boolean | undefined;
309
+ red200?: string | number | boolean | undefined;
310
+ red300?: string | number | boolean | undefined;
311
+ red400?: string | number | boolean | undefined;
312
+ red500?: string | number | boolean | undefined;
313
+ red600?: string | number | boolean | undefined;
314
+ red700?: string | number | boolean | undefined;
315
+ red800?: string | number | boolean | undefined;
316
+ red900?: string | number | boolean | undefined;
317
+ cyan100?: string | number | boolean | undefined;
318
+ cyan200?: string | number | boolean | undefined;
319
+ cyan300?: string | number | boolean | undefined;
320
+ cyan400?: string | number | boolean | undefined;
321
+ cyan500?: string | number | boolean | undefined;
322
+ cyan600?: string | number | boolean | undefined;
323
+ cyan700?: string | number | boolean | undefined;
324
+ cyan800?: string | number | boolean | undefined;
325
+ cyan900?: string | number | boolean | undefined;
326
+ pink100?: string | number | boolean | undefined;
327
+ pink200?: string | number | boolean | undefined;
328
+ pink300?: string | number | boolean | undefined;
329
+ pink400?: string | number | boolean | undefined;
330
+ pink500?: string | number | boolean | undefined;
331
+ pink600?: string | number | boolean | undefined;
332
+ pink700?: string | number | boolean | undefined;
333
+ pink800?: string | number | boolean | undefined;
334
+ pink900?: string | number | boolean | undefined;
335
+ gray100?: string | number | boolean | undefined;
336
+ gray200?: string | number | boolean | undefined;
337
+ gray300?: string | number | boolean | undefined;
338
+ gray400?: string | number | boolean | undefined;
339
+ gray500?: string | number | boolean | undefined;
340
+ gray600?: string | number | boolean | undefined;
341
+ gray700?: string | number | boolean | undefined;
342
+ gray800?: string | number | boolean | undefined;
343
+ gray900?: string | number | boolean | undefined;
344
+ primaryLight?: string | number | boolean | undefined;
345
+ primary?: string | number | boolean | undefined;
346
+ primaryDark?: string | number | boolean | undefined;
347
+ secondaryLight?: string | number | boolean | undefined;
348
+ secondary?: string | number | boolean | undefined;
349
+ secondaryDark?: string | number | boolean | undefined;
350
+ successLight?: string | number | boolean | undefined;
351
+ success?: string | number | boolean | undefined;
352
+ successDark?: string | number | boolean | undefined;
353
+ warningLight?: string | number | boolean | undefined;
354
+ warning?: string | number | boolean | undefined;
355
+ warningDark?: string | number | boolean | undefined;
356
+ errorLight?: string | number | boolean | undefined;
357
+ error?: string | number | boolean | undefined;
358
+ errorDark?: string | number | boolean | undefined;
359
+ gradient?: string | number | boolean | undefined;
360
+ link?: string | number | boolean | undefined;
361
+ } | undefined;
362
+ fonts?: {
363
+ sans?: string | number | boolean | undefined;
364
+ mono?: string | number | boolean | undefined;
365
+ } | undefined;
366
+ fontSizes?: {
367
+ tiny?: string | number | boolean | undefined;
368
+ xs?: string | number | boolean | undefined;
369
+ base?: string | number | boolean | undefined;
370
+ sm?: string | number | boolean | undefined;
371
+ md?: string | number | boolean | undefined;
372
+ lg?: string | number | boolean | undefined;
373
+ xl?: string | number | boolean | undefined;
374
+ } | undefined;
375
+ fontWeights?: {
376
+ hairline?: string | number | boolean | undefined;
377
+ thin?: string | number | boolean | undefined;
378
+ light?: string | number | boolean | undefined;
379
+ normal?: string | number | boolean | undefined;
380
+ medium?: string | number | boolean | undefined;
381
+ semibold?: string | number | boolean | undefined;
382
+ bold?: string | number | boolean | undefined;
383
+ extrabold?: string | number | boolean | undefined;
384
+ black?: string | number | boolean | undefined;
385
+ } | undefined;
386
+ lineHeights?: {
387
+ xs?: string | number | boolean | undefined;
388
+ sm?: string | number | boolean | undefined;
389
+ md?: string | number | boolean | undefined;
390
+ lg?: string | number | boolean | undefined;
391
+ xl?: string | number | boolean | undefined;
392
+ } | undefined;
393
+ letterSpacings?: {
394
+ tighter?: string | number | boolean | undefined;
395
+ tight?: string | number | boolean | undefined;
396
+ normal?: string | number | boolean | undefined;
397
+ wide?: string | number | boolean | undefined;
398
+ wider?: string | number | boolean | undefined;
399
+ widest?: string | number | boolean | undefined;
400
+ } | undefined;
401
+ space?: {
402
+ 0?: string | number | boolean | undefined;
403
+ xs?: string | number | boolean | undefined;
404
+ sm?: string | number | boolean | undefined;
405
+ md?: string | number | boolean | undefined;
406
+ lg?: string | number | boolean | undefined;
407
+ xl?: string | number | boolean | undefined;
408
+ px?: string | number | boolean | undefined;
409
+ 1?: string | number | boolean | undefined;
410
+ 2?: string | number | boolean | undefined;
411
+ 3?: string | number | boolean | undefined;
412
+ 4?: string | number | boolean | undefined;
413
+ 5?: string | number | boolean | undefined;
414
+ 6?: string | number | boolean | undefined;
415
+ 7?: string | number | boolean | undefined;
416
+ 8?: string | number | boolean | undefined;
417
+ 9?: string | number | boolean | undefined;
418
+ 10?: string | number | boolean | undefined;
419
+ 11?: string | number | boolean | undefined;
420
+ 12?: string | number | boolean | undefined;
421
+ 13?: string | number | boolean | undefined;
422
+ 14?: string | number | boolean | undefined;
423
+ 15?: string | number | boolean | undefined;
424
+ 16?: string | number | boolean | undefined;
425
+ 17?: string | number | boolean | undefined;
426
+ 18?: string | number | boolean | undefined;
427
+ 20?: string | number | boolean | undefined;
428
+ 24?: string | number | boolean | undefined;
429
+ 28?: string | number | boolean | undefined;
430
+ 32?: string | number | boolean | undefined;
431
+ 36?: string | number | boolean | undefined;
432
+ 40?: string | number | boolean | undefined;
433
+ 44?: string | number | boolean | undefined;
434
+ 48?: string | number | boolean | undefined;
435
+ 52?: string | number | boolean | undefined;
436
+ 56?: string | number | boolean | undefined;
437
+ 60?: string | number | boolean | undefined;
438
+ 64?: string | number | boolean | undefined;
439
+ 72?: string | number | boolean | undefined;
440
+ 80?: string | number | boolean | undefined;
441
+ 96?: string | number | boolean | undefined;
442
+ } | undefined;
443
+ radii?: {
444
+ xs?: string | number | boolean | undefined;
445
+ sm?: string | number | boolean | undefined;
446
+ md?: string | number | boolean | undefined;
447
+ base?: string | number | boolean | undefined;
448
+ lg?: string | number | boolean | undefined;
449
+ xl?: string | number | boolean | undefined;
450
+ squared?: string | number | boolean | undefined;
451
+ rounded?: string | number | boolean | undefined;
452
+ pill?: string | number | boolean | undefined;
453
+ } | undefined;
454
+ zIndices?: {
455
+ 1?: string | number | boolean | undefined;
456
+ 2?: string | number | boolean | undefined;
457
+ 3?: string | number | boolean | undefined;
458
+ 4?: string | number | boolean | undefined;
459
+ 5?: string | number | boolean | undefined;
460
+ 10?: string | number | boolean | undefined;
461
+ max?: string | number | boolean | undefined;
462
+ } | undefined;
463
+ borderWeights?: {
464
+ light?: string | number | boolean | undefined;
465
+ normal?: string | number | boolean | undefined;
466
+ bold?: string | number | boolean | undefined;
467
+ extrabold?: string | number | boolean | undefined;
468
+ black?: string | number | boolean | undefined;
469
+ } | undefined;
470
+ transitions?: {
471
+ default?: string | number | boolean | undefined;
472
+ } | undefined;
473
+ breakpoints?: {
474
+ xs?: string | number | boolean | undefined;
475
+ sm?: string | number | boolean | undefined;
476
+ md?: string | number | boolean | undefined;
477
+ lg?: string | number | boolean | undefined;
478
+ xl?: string | number | boolean | undefined;
479
+ } | undefined;
480
+ } & {
481
+ [x: string]: {
482
+ [x: string]: string | number | boolean;
483
+ [x: number]: string | number | boolean;
484
+ };
485
+ })>(nameOrScalesArg0: Argument0, nameOrScalesArg1?: Argument1 | undefined) => string & {
486
+ className: string;
487
+ selector: string;
488
+ } & (Argument0 extends string ? import("@stitches/react/types/stitches").ThemeTokens<Argument1, string> : import("@stitches/react/types/stitches").ThemeTokens<Argument0, string>);
5
489
  export declare const styled: <Type extends keyof JSX.IntrinsicElements | import("react").ComponentType<any> | import("@stitches/react/types/util").Function, Composers extends (string | import("react").ComponentType<any> | import("@stitches/react/types/util").Function | {
6
490
  [name: string]: unknown;
7
491
  })[], CSS_1 = import("@stitches/react/types/css-util").CSS<{
@@ -824,6 +1308,22 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
824
1308
  readonly [$$PropertyValue]: "width";
825
1309
  };
826
1310
  };
1311
+ minSize: (value: {
1312
+ readonly [$$PropertyValue]: "width";
1313
+ }) => {
1314
+ minWidth: {
1315
+ readonly [$$PropertyValue]: "width";
1316
+ };
1317
+ minHeight: {
1318
+ readonly [$$PropertyValue]: "width";
1319
+ };
1320
+ width: {
1321
+ readonly [$$PropertyValue]: "width";
1322
+ };
1323
+ height: {
1324
+ readonly [$$PropertyValue]: "width";
1325
+ };
1326
+ };
827
1327
  sizeMin: (value: {
828
1328
  readonly [$$PropertyValue]: "width";
829
1329
  }) => {
@@ -840,6 +1340,16 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
840
1340
  readonly [$$PropertyValue]: "width";
841
1341
  };
842
1342
  };
1343
+ maxSize: (value: {
1344
+ readonly [$$PropertyValue]: "width";
1345
+ }) => {
1346
+ maxWidth: {
1347
+ readonly [$$PropertyValue]: "width";
1348
+ };
1349
+ maxHeight: {
1350
+ readonly [$$PropertyValue]: "width";
1351
+ };
1352
+ };
843
1353
  sizeMax: (value: {
844
1354
  readonly [$$PropertyValue]: "width";
845
1355
  }) => {
@@ -870,6 +1380,13 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
870
1380
  }) => {
871
1381
  backgroundImage: string;
872
1382
  };
1383
+ tdl: (value: {
1384
+ readonly [$$PropertyValue]: "textDecorationLine";
1385
+ }) => {
1386
+ textDecorationLine: {
1387
+ readonly [$$PropertyValue]: "textDecorationLine";
1388
+ };
1389
+ };
873
1390
  textGradient: (value: {
874
1391
  readonly [$$PropertyValue]: "backgroundImage";
875
1392
  }) => {
@@ -1724,6 +2241,22 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
1724
2241
  readonly [$$PropertyValue]: "width";
1725
2242
  };
1726
2243
  };
2244
+ minSize: (value: {
2245
+ readonly [$$PropertyValue]: "width";
2246
+ }) => {
2247
+ minWidth: {
2248
+ readonly [$$PropertyValue]: "width";
2249
+ };
2250
+ minHeight: {
2251
+ readonly [$$PropertyValue]: "width";
2252
+ };
2253
+ width: {
2254
+ readonly [$$PropertyValue]: "width";
2255
+ };
2256
+ height: {
2257
+ readonly [$$PropertyValue]: "width";
2258
+ };
2259
+ };
1727
2260
  sizeMin: (value: {
1728
2261
  readonly [$$PropertyValue]: "width";
1729
2262
  }) => {
@@ -1740,6 +2273,16 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
1740
2273
  readonly [$$PropertyValue]: "width";
1741
2274
  };
1742
2275
  };
2276
+ maxSize: (value: {
2277
+ readonly [$$PropertyValue]: "width";
2278
+ }) => {
2279
+ maxWidth: {
2280
+ readonly [$$PropertyValue]: "width";
2281
+ };
2282
+ maxHeight: {
2283
+ readonly [$$PropertyValue]: "width";
2284
+ };
2285
+ };
1743
2286
  sizeMax: (value: {
1744
2287
  readonly [$$PropertyValue]: "width";
1745
2288
  }) => {
@@ -1770,6 +2313,13 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
1770
2313
  }) => {
1771
2314
  backgroundImage: string;
1772
2315
  };
2316
+ tdl: (value: {
2317
+ readonly [$$PropertyValue]: "textDecorationLine";
2318
+ }) => {
2319
+ textDecorationLine: {
2320
+ readonly [$$PropertyValue]: "textDecorationLine";
2321
+ };
2322
+ };
1773
2323
  textGradient: (value: {
1774
2324
  readonly [$$PropertyValue]: "backgroundImage";
1775
2325
  }) => {
@@ -1777,7 +2327,8 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
1777
2327
  WebkitBackgroundClip: string;
1778
2328
  WebkitTextFillColor: string;
1779
2329
  };
1780
- }>>, css: <Composers extends (string | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | import("react").JSXElementConstructor<any> | {
2330
+ }>>;
2331
+ export declare const css: <Composers extends (string | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | import("react").JSXElementConstructor<any> | {
1781
2332
  [name: string]: unknown;
1782
2333
  })[], CSS_1 = import("@stitches/react/types/css-util").CSS<{
1783
2334
  xs: string;
@@ -2318,1089 +2869,402 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
2318
2869
  };
2319
2870
  fw: (value: {
2320
2871
  readonly [$$PropertyValue]: "flexWrap";
2321
- }) => {
2322
- flexWrap: {
2323
- readonly [$$PropertyValue]: "flexWrap";
2324
- };
2325
- };
2326
- ai: (value: {
2327
- readonly [$$PropertyValue]: "alignItems";
2328
- }) => {
2329
- alignItems: {
2330
- readonly [$$PropertyValue]: "alignItems";
2331
- };
2332
- };
2333
- ac: (value: {
2334
- readonly [$$PropertyValue]: "alignContent";
2335
- }) => {
2336
- alignContent: {
2337
- readonly [$$PropertyValue]: "alignContent";
2338
- };
2339
- };
2340
- jc: (value: {
2341
- readonly [$$PropertyValue]: "justifyContent";
2342
- }) => {
2343
- justifyContent: {
2344
- readonly [$$PropertyValue]: "justifyContent";
2345
- };
2346
- };
2347
- as: (value: {
2348
- readonly [$$PropertyValue]: "alignSelf";
2349
- }) => {
2350
- alignSelf: {
2351
- readonly [$$PropertyValue]: "alignSelf";
2352
- };
2353
- };
2354
- fg: (value: {
2355
- readonly [$$PropertyValue]: "flexGrow";
2356
- }) => {
2357
- flexGrow: {
2358
- readonly [$$PropertyValue]: "flexGrow";
2359
- };
2360
- };
2361
- fs: (value: {
2362
- readonly [$$PropertyValue]: "fontSize";
2363
- }) => {
2364
- fontSize: {
2365
- readonly [$$PropertyValue]: "fontSize";
2366
- };
2367
- };
2368
- fb: (value: {
2369
- readonly [$$PropertyValue]: "flexBasis";
2370
- }) => {
2371
- flexBasis: {
2372
- readonly [$$PropertyValue]: "flexBasis";
2373
- };
2374
- };
2375
- bc: (value: {
2376
- readonly [$$PropertyValue]: "backgroundColor";
2377
- }) => {
2378
- backgroundColor: {
2379
- readonly [$$PropertyValue]: "backgroundColor";
2380
- };
2381
- };
2382
- bf: (value: {
2383
- readonly [$$PropertyValue]: "backdropFilter";
2384
- }) => {
2385
- backdropFilter: {
2386
- readonly [$$PropertyValue]: "backdropFilter";
2387
- };
2388
- };
2389
- bg: (value: {
2390
- readonly [$$PropertyValue]: "backgroundColor";
2391
- }) => {
2392
- background: {
2393
- readonly [$$PropertyValue]: "backgroundColor";
2394
- };
2395
- };
2396
- bgBlur: (value: {
2397
- readonly [$$PropertyValue]: "backgroundColor";
2398
- }) => {
2399
- bf: string;
2400
- bg: string;
2401
- };
2402
- bgColor: (value: {
2403
- readonly [$$PropertyValue]: "backgroundColor";
2404
- }) => {
2405
- backgroundColor: {
2406
- readonly [$$PropertyValue]: "backgroundColor";
2407
- };
2408
- };
2409
- backgroundClip: (value: {
2410
- readonly [$$PropertyValue]: "backgroundClip";
2411
- }) => {
2412
- WebkitBackgroundClip: {
2413
- readonly [$$PropertyValue]: "backgroundClip";
2414
- };
2415
- backgroundClip: {
2416
- readonly [$$PropertyValue]: "backgroundClip";
2417
- };
2418
- };
2419
- bgClip: (value: {
2420
- readonly [$$PropertyValue]: "backgroundClip";
2421
- }) => {
2422
- WebkitBackgroundClip: {
2423
- readonly [$$PropertyValue]: "backgroundClip";
2424
- };
2425
- backgroundClip: {
2426
- readonly [$$PropertyValue]: "backgroundClip";
2427
- };
2428
- };
2429
- br: (value: {
2430
- readonly [$$PropertyValue]: "borderRadius";
2431
- }) => {
2432
- borderRadius: {
2433
- readonly [$$PropertyValue]: "borderRadius";
2434
- };
2435
- };
2436
- bw: (value: {
2437
- readonly [$$PropertyValue]: "borderWidth";
2438
- }) => {
2439
- borderWidth: {
2440
- readonly [$$PropertyValue]: "borderWidth";
2441
- };
2442
- };
2443
- btrr: (value: {
2444
- readonly [$$PropertyValue]: "borderTopRightRadius";
2445
- }) => {
2446
- borderTopRightRadius: {
2447
- readonly [$$PropertyValue]: "borderTopRightRadius";
2448
- };
2449
- };
2450
- bbrr: (value: {
2451
- readonly [$$PropertyValue]: "borderBottomRightRadius";
2452
- }) => {
2453
- borderBottomRightRadius: {
2454
- readonly [$$PropertyValue]: "borderBottomRightRadius";
2455
- };
2456
- };
2457
- bblr: (value: {
2458
- readonly [$$PropertyValue]: "borderBottomLeftRadius";
2459
- }) => {
2460
- borderBottomLeftRadius: {
2461
- readonly [$$PropertyValue]: "borderBottomLeftRadius";
2462
- };
2463
- };
2464
- btlr: (value: {
2465
- readonly [$$PropertyValue]: "borderTopLeftRadius";
2466
- }) => {
2467
- borderTopLeftRadius: {
2468
- readonly [$$PropertyValue]: "borderTopLeftRadius";
2469
- };
2470
- };
2471
- bs: (value: {
2472
- readonly [$$PropertyValue]: "boxShadow";
2473
- }) => {
2474
- boxShadow: {
2475
- readonly [$$PropertyValue]: "boxShadow";
2476
- };
2477
- };
2478
- normalShadow: (value: {
2479
- readonly [$$PropertyValue]: "backgroundColor";
2480
- }) => {
2481
- boxShadow: string;
2482
- };
2483
- normalShadowVar: (value: {
2484
- readonly [$$PropertyValue]: "backgroundColor";
2485
- }) => {
2486
- boxShadow: string;
2487
- };
2488
- lh: (value: {
2489
- readonly [$$PropertyValue]: "lineHeight";
2490
- }) => {
2491
- lineHeight: {
2492
- readonly [$$PropertyValue]: "lineHeight";
2493
- };
2494
- };
2495
- ov: (value: {
2496
- readonly [$$PropertyValue]: "overflow";
2497
- }) => {
2498
- overflow: {
2499
- readonly [$$PropertyValue]: "overflow";
2500
- };
2501
- };
2502
- ox: (value: {
2503
- readonly [$$PropertyValue]: "overflowX";
2504
- }) => {
2505
- overflowX: {
2506
- readonly [$$PropertyValue]: "overflowX";
2507
- };
2508
- };
2509
- oy: (value: {
2510
- readonly [$$PropertyValue]: "overflowY";
2511
- }) => {
2512
- overflowY: {
2513
- readonly [$$PropertyValue]: "overflowY";
2514
- };
2515
- };
2516
- pe: (value: {
2517
- readonly [$$PropertyValue]: "pointerEvents";
2518
- }) => {
2519
- pointerEvents: {
2520
- readonly [$$PropertyValue]: "pointerEvents";
2521
- };
2522
- };
2523
- events: (value: {
2524
- readonly [$$PropertyValue]: "pointerEvents";
2525
- }) => {
2526
- pointerEvents: {
2527
- readonly [$$PropertyValue]: "pointerEvents";
2528
- };
2529
- };
2530
- us: (value: {
2531
- readonly [$$PropertyValue]: "userSelect";
2532
- }) => {
2533
- WebkitUserSelect: {
2534
- readonly [$$PropertyValue]: "userSelect";
2535
- };
2536
- userSelect: {
2537
- readonly [$$PropertyValue]: "userSelect";
2538
- };
2539
- };
2540
- userSelect: (value: {
2541
- readonly [$$PropertyValue]: "userSelect";
2542
- }) => {
2543
- WebkitUserSelect: {
2544
- readonly [$$PropertyValue]: "userSelect";
2545
- };
2546
- userSelect: {
2547
- readonly [$$PropertyValue]: "userSelect";
2548
- };
2549
- };
2550
- w: (value: {
2551
- readonly [$$PropertyValue]: "width";
2552
- }) => {
2553
- width: {
2554
- readonly [$$PropertyValue]: "width";
2555
- };
2556
- };
2557
- h: (value: {
2558
- readonly [$$PropertyValue]: "height";
2559
- }) => {
2560
- height: {
2561
- readonly [$$PropertyValue]: "height";
2872
+ }) => {
2873
+ flexWrap: {
2874
+ readonly [$$PropertyValue]: "flexWrap";
2562
2875
  };
2563
2876
  };
2564
- mw: (value: {
2565
- readonly [$$PropertyValue]: "maxWidth";
2877
+ ai: (value: {
2878
+ readonly [$$PropertyValue]: "alignItems";
2566
2879
  }) => {
2567
- maxWidth: {
2568
- readonly [$$PropertyValue]: "maxWidth";
2880
+ alignItems: {
2881
+ readonly [$$PropertyValue]: "alignItems";
2569
2882
  };
2570
2883
  };
2571
- maxW: (value: {
2572
- readonly [$$PropertyValue]: "maxWidth";
2884
+ ac: (value: {
2885
+ readonly [$$PropertyValue]: "alignContent";
2573
2886
  }) => {
2574
- maxWidth: {
2575
- readonly [$$PropertyValue]: "maxWidth";
2887
+ alignContent: {
2888
+ readonly [$$PropertyValue]: "alignContent";
2576
2889
  };
2577
2890
  };
2578
- mh: (value: {
2579
- readonly [$$PropertyValue]: "maxHeight";
2891
+ jc: (value: {
2892
+ readonly [$$PropertyValue]: "justifyContent";
2580
2893
  }) => {
2581
- maxHeight: {
2582
- readonly [$$PropertyValue]: "maxHeight";
2894
+ justifyContent: {
2895
+ readonly [$$PropertyValue]: "justifyContent";
2583
2896
  };
2584
2897
  };
2585
- maxH: (value: {
2586
- readonly [$$PropertyValue]: "maxHeight";
2898
+ as: (value: {
2899
+ readonly [$$PropertyValue]: "alignSelf";
2587
2900
  }) => {
2588
- maxHeight: {
2589
- readonly [$$PropertyValue]: "maxHeight";
2901
+ alignSelf: {
2902
+ readonly [$$PropertyValue]: "alignSelf";
2590
2903
  };
2591
2904
  };
2592
- size: (value: {
2593
- readonly [$$PropertyValue]: "width";
2905
+ fg: (value: {
2906
+ readonly [$$PropertyValue]: "flexGrow";
2594
2907
  }) => {
2595
- width: {
2596
- readonly [$$PropertyValue]: "width";
2597
- };
2598
- height: {
2599
- readonly [$$PropertyValue]: "width";
2908
+ flexGrow: {
2909
+ readonly [$$PropertyValue]: "flexGrow";
2600
2910
  };
2601
2911
  };
2602
- sizeMin: (value: {
2603
- readonly [$$PropertyValue]: "width";
2912
+ fs: (value: {
2913
+ readonly [$$PropertyValue]: "fontSize";
2604
2914
  }) => {
2605
- minWidth: {
2606
- readonly [$$PropertyValue]: "width";
2607
- };
2608
- minHeight: {
2609
- readonly [$$PropertyValue]: "width";
2610
- };
2611
- width: {
2612
- readonly [$$PropertyValue]: "width";
2613
- };
2614
- height: {
2615
- readonly [$$PropertyValue]: "width";
2915
+ fontSize: {
2916
+ readonly [$$PropertyValue]: "fontSize";
2616
2917
  };
2617
2918
  };
2618
- sizeMax: (value: {
2619
- readonly [$$PropertyValue]: "width";
2919
+ fb: (value: {
2920
+ readonly [$$PropertyValue]: "flexBasis";
2620
2921
  }) => {
2621
- maxWidth: {
2622
- readonly [$$PropertyValue]: "width";
2623
- };
2624
- maxHeight: {
2625
- readonly [$$PropertyValue]: "width";
2922
+ flexBasis: {
2923
+ readonly [$$PropertyValue]: "flexBasis";
2626
2924
  };
2627
2925
  };
2628
- appearance: (value: {
2629
- readonly [$$PropertyValue]: "appearance";
2926
+ bc: (value: {
2927
+ readonly [$$PropertyValue]: "backgroundColor";
2630
2928
  }) => {
2631
- WebkitAppearance: {
2632
- readonly [$$PropertyValue]: "appearance";
2633
- };
2634
- appearance: {
2635
- readonly [$$PropertyValue]: "appearance";
2929
+ backgroundColor: {
2930
+ readonly [$$PropertyValue]: "backgroundColor";
2636
2931
  };
2637
2932
  };
2638
- scale: (value: {
2639
- readonly [$$PropertyValue]: "scale";
2933
+ bf: (value: {
2934
+ readonly [$$PropertyValue]: "backdropFilter";
2640
2935
  }) => {
2641
- transform: string;
2936
+ backdropFilter: {
2937
+ readonly [$$PropertyValue]: "backdropFilter";
2938
+ };
2642
2939
  };
2643
- linearGradient: (value: {
2644
- readonly [$$PropertyValue]: "backgroundImage";
2940
+ bg: (value: {
2941
+ readonly [$$PropertyValue]: "backgroundColor";
2645
2942
  }) => {
2646
- backgroundImage: string;
2943
+ background: {
2944
+ readonly [$$PropertyValue]: "backgroundColor";
2945
+ };
2647
2946
  };
2648
- textGradient: (value: {
2649
- readonly [$$PropertyValue]: "backgroundImage";
2947
+ bgBlur: (value: {
2948
+ readonly [$$PropertyValue]: "backgroundColor";
2650
2949
  }) => {
2651
- backgroundImage: string;
2652
- WebkitBackgroundClip: string;
2653
- WebkitTextFillColor: string;
2654
- };
2655
- }>>(...composers: { [K in keyof Composers]: Composers[K] extends string | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | import("react").JSXElementConstructor<any> ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
2656
- variants?: {
2657
- [x: string]: {
2658
- [x: string]: CSS_1;
2659
- [x: number]: CSS_1;
2660
- };
2661
- } | undefined;
2662
- compoundVariants?: (("variants" extends keyof Composers[K] ? { [Name in keyof Composers[K][keyof Composers[K] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers[K][keyof Composers[K] & "variants"][Name]> | undefined; } : import("@stitches/react/types/util").WideObject) & {
2663
- css: CSS_1;
2664
- })[] | undefined;
2665
- defaultVariants?: ("variants" extends keyof Composers[K] ? { [Name_1 in keyof Composers[K][keyof Composers[K] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers[K][keyof Composers[K] & "variants"][Name_1]> | undefined; } : import("@stitches/react/types/util").WideObject) | undefined;
2666
- } & CSS_1 & { [K2 in keyof Composers[K]]: 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>, {
2667
- xs: string;
2668
- sm: string;
2669
- md: string;
2670
- lg: string;
2671
- xl: string;
2672
- xsMax: string;
2673
- smMax: string;
2674
- mdMax: string;
2675
- lgMax: string;
2676
- xlMax: string;
2677
- motion: string;
2678
- safari: string;
2679
- hover: string;
2680
- dark: string;
2681
- light: string;
2682
- }, CSS_1>, theme: string & {
2683
- className: string;
2684
- selector: string;
2685
- } & {
2686
- shadows: {
2687
- xs: import("@stitches/react/types/theme").Token<"xs", string, "shadows", string>;
2688
- sm: import("@stitches/react/types/theme").Token<"sm", string, "shadows", string>;
2689
- md: import("@stitches/react/types/theme").Token<"md", string, "shadows", string>;
2690
- lg: import("@stitches/react/types/theme").Token<"lg", string, "shadows", string>;
2691
- xl: import("@stitches/react/types/theme").Token<"xl", string, "shadows", string>;
2950
+ bf: string;
2951
+ bg: string;
2692
2952
  };
2693
- colors: {
2694
- accents1: import("@stitches/react/types/theme").Token<"accents1", string, "colors", string>;
2695
- accents2: import("@stitches/react/types/theme").Token<"accents2", string, "colors", string>;
2696
- accents3: import("@stitches/react/types/theme").Token<"accents3", string, "colors", string>;
2697
- accents4: import("@stitches/react/types/theme").Token<"accents4", string, "colors", string>;
2698
- accents5: import("@stitches/react/types/theme").Token<"accents5", string, "colors", string>;
2699
- accents6: import("@stitches/react/types/theme").Token<"accents6", string, "colors", string>;
2700
- accents7: import("@stitches/react/types/theme").Token<"accents7", string, "colors", string>;
2701
- accents8: import("@stitches/react/types/theme").Token<"accents8", string, "colors", string>;
2702
- accents9: import("@stitches/react/types/theme").Token<"accents9", string, "colors", string>;
2703
- text: import("@stitches/react/types/theme").Token<"text", string, "colors", string>;
2704
- background: import("@stitches/react/types/theme").Token<"background", string, "colors", string>;
2705
- foreground: import("@stitches/react/types/theme").Token<"foreground", string, "colors", string>;
2706
- codeLight: import("@stitches/react/types/theme").Token<"codeLight", string, "colors", string>;
2707
- code: import("@stitches/react/types/theme").Token<"code", string, "colors", string>;
2708
- border: import("@stitches/react/types/theme").Token<"border", string, "colors", string>;
2709
- selection: import("@stitches/react/types/theme").Token<"selection", string, "colors", string>;
2710
- white: import("@stitches/react/types/theme").Token<"white", string, "colors", string>;
2711
- black: import("@stitches/react/types/theme").Token<"black", string, "colors", string>;
2712
- blue100: import("@stitches/react/types/theme").Token<"blue100", string, "colors", string>;
2713
- blue200: import("@stitches/react/types/theme").Token<"blue200", string, "colors", string>;
2714
- blue300: import("@stitches/react/types/theme").Token<"blue300", string, "colors", string>;
2715
- blue400: import("@stitches/react/types/theme").Token<"blue400", string, "colors", string>;
2716
- blue500: import("@stitches/react/types/theme").Token<"blue500", string, "colors", string>;
2717
- blue600: import("@stitches/react/types/theme").Token<"blue600", string, "colors", string>;
2718
- blue700: import("@stitches/react/types/theme").Token<"blue700", string, "colors", string>;
2719
- blue800: import("@stitches/react/types/theme").Token<"blue800", string, "colors", string>;
2720
- blue900: import("@stitches/react/types/theme").Token<"blue900", string, "colors", string>;
2721
- purple100: import("@stitches/react/types/theme").Token<"purple100", string, "colors", string>;
2722
- purple200: import("@stitches/react/types/theme").Token<"purple200", string, "colors", string>;
2723
- purple300: import("@stitches/react/types/theme").Token<"purple300", string, "colors", string>;
2724
- purple400: import("@stitches/react/types/theme").Token<"purple400", string, "colors", string>;
2725
- purple500: import("@stitches/react/types/theme").Token<"purple500", string, "colors", string>;
2726
- purple600: import("@stitches/react/types/theme").Token<"purple600", string, "colors", string>;
2727
- purple700: import("@stitches/react/types/theme").Token<"purple700", string, "colors", string>;
2728
- purple800: import("@stitches/react/types/theme").Token<"purple800", string, "colors", string>;
2729
- purple900: import("@stitches/react/types/theme").Token<"purple900", string, "colors", string>;
2730
- green100: import("@stitches/react/types/theme").Token<"green100", string, "colors", string>;
2731
- green200: import("@stitches/react/types/theme").Token<"green200", string, "colors", string>;
2732
- green300: import("@stitches/react/types/theme").Token<"green300", string, "colors", string>;
2733
- green400: import("@stitches/react/types/theme").Token<"green400", string, "colors", string>;
2734
- green500: import("@stitches/react/types/theme").Token<"green500", string, "colors", string>;
2735
- green600: import("@stitches/react/types/theme").Token<"green600", string, "colors", string>;
2736
- green700: import("@stitches/react/types/theme").Token<"green700", string, "colors", string>;
2737
- green800: import("@stitches/react/types/theme").Token<"green800", string, "colors", string>;
2738
- green900: import("@stitches/react/types/theme").Token<"green900", string, "colors", string>;
2739
- yellow100: import("@stitches/react/types/theme").Token<"yellow100", string, "colors", string>;
2740
- yellow200: import("@stitches/react/types/theme").Token<"yellow200", string, "colors", string>;
2741
- yellow300: import("@stitches/react/types/theme").Token<"yellow300", string, "colors", string>;
2742
- yellow400: import("@stitches/react/types/theme").Token<"yellow400", string, "colors", string>;
2743
- yellow500: import("@stitches/react/types/theme").Token<"yellow500", string, "colors", string>;
2744
- yellow600: import("@stitches/react/types/theme").Token<"yellow600", string, "colors", string>;
2745
- yellow700: import("@stitches/react/types/theme").Token<"yellow700", string, "colors", string>;
2746
- yellow800: import("@stitches/react/types/theme").Token<"yellow800", string, "colors", string>;
2747
- yellow900: import("@stitches/react/types/theme").Token<"yellow900", string, "colors", string>;
2748
- red100: import("@stitches/react/types/theme").Token<"red100", string, "colors", string>;
2749
- red200: import("@stitches/react/types/theme").Token<"red200", string, "colors", string>;
2750
- red300: import("@stitches/react/types/theme").Token<"red300", string, "colors", string>;
2751
- red400: import("@stitches/react/types/theme").Token<"red400", string, "colors", string>;
2752
- red500: import("@stitches/react/types/theme").Token<"red500", string, "colors", string>;
2753
- red600: import("@stitches/react/types/theme").Token<"red600", string, "colors", string>;
2754
- red700: import("@stitches/react/types/theme").Token<"red700", string, "colors", string>;
2755
- red800: import("@stitches/react/types/theme").Token<"red800", string, "colors", string>;
2756
- red900: import("@stitches/react/types/theme").Token<"red900", string, "colors", string>;
2757
- cyan100: import("@stitches/react/types/theme").Token<"cyan100", string, "colors", string>;
2758
- cyan200: import("@stitches/react/types/theme").Token<"cyan200", string, "colors", string>;
2759
- cyan300: import("@stitches/react/types/theme").Token<"cyan300", string, "colors", string>;
2760
- cyan400: import("@stitches/react/types/theme").Token<"cyan400", string, "colors", string>;
2761
- cyan500: import("@stitches/react/types/theme").Token<"cyan500", string, "colors", string>;
2762
- cyan600: import("@stitches/react/types/theme").Token<"cyan600", string, "colors", string>;
2763
- cyan700: import("@stitches/react/types/theme").Token<"cyan700", string, "colors", string>;
2764
- cyan800: import("@stitches/react/types/theme").Token<"cyan800", string, "colors", string>;
2765
- cyan900: import("@stitches/react/types/theme").Token<"cyan900", string, "colors", string>;
2766
- pink100: import("@stitches/react/types/theme").Token<"pink100", string, "colors", string>;
2767
- pink200: import("@stitches/react/types/theme").Token<"pink200", string, "colors", string>;
2768
- pink300: import("@stitches/react/types/theme").Token<"pink300", string, "colors", string>;
2769
- pink400: import("@stitches/react/types/theme").Token<"pink400", string, "colors", string>;
2770
- pink500: import("@stitches/react/types/theme").Token<"pink500", string, "colors", string>;
2771
- pink600: import("@stitches/react/types/theme").Token<"pink600", string, "colors", string>;
2772
- pink700: import("@stitches/react/types/theme").Token<"pink700", string, "colors", string>;
2773
- pink800: import("@stitches/react/types/theme").Token<"pink800", string, "colors", string>;
2774
- pink900: import("@stitches/react/types/theme").Token<"pink900", string, "colors", string>;
2775
- gray100: import("@stitches/react/types/theme").Token<"gray100", string, "colors", string>;
2776
- gray200: import("@stitches/react/types/theme").Token<"gray200", string, "colors", string>;
2777
- gray300: import("@stitches/react/types/theme").Token<"gray300", string, "colors", string>;
2778
- gray400: import("@stitches/react/types/theme").Token<"gray400", string, "colors", string>;
2779
- gray500: import("@stitches/react/types/theme").Token<"gray500", string, "colors", string>;
2780
- gray600: import("@stitches/react/types/theme").Token<"gray600", string, "colors", string>;
2781
- gray700: import("@stitches/react/types/theme").Token<"gray700", string, "colors", string>;
2782
- gray800: import("@stitches/react/types/theme").Token<"gray800", string, "colors", string>;
2783
- gray900: import("@stitches/react/types/theme").Token<"gray900", string, "colors", string>;
2784
- primaryLight: import("@stitches/react/types/theme").Token<"primaryLight", string, "colors", string>;
2785
- primary: import("@stitches/react/types/theme").Token<"primary", string, "colors", string>;
2786
- primaryDark: import("@stitches/react/types/theme").Token<"primaryDark", string, "colors", string>;
2787
- secondaryLight: import("@stitches/react/types/theme").Token<"secondaryLight", string, "colors", string>;
2788
- secondary: import("@stitches/react/types/theme").Token<"secondary", string, "colors", string>;
2789
- secondaryDark: import("@stitches/react/types/theme").Token<"secondaryDark", string, "colors", string>;
2790
- successLight: import("@stitches/react/types/theme").Token<"successLight", string, "colors", string>;
2791
- success: import("@stitches/react/types/theme").Token<"success", string, "colors", string>;
2792
- successDark: import("@stitches/react/types/theme").Token<"successDark", string, "colors", string>;
2793
- warningLight: import("@stitches/react/types/theme").Token<"warningLight", string, "colors", string>;
2794
- warning: import("@stitches/react/types/theme").Token<"warning", string, "colors", string>;
2795
- warningDark: import("@stitches/react/types/theme").Token<"warningDark", string, "colors", string>;
2796
- errorLight: import("@stitches/react/types/theme").Token<"errorLight", string, "colors", string>;
2797
- error: import("@stitches/react/types/theme").Token<"error", string, "colors", string>;
2798
- errorDark: import("@stitches/react/types/theme").Token<"errorDark", string, "colors", string>;
2799
- gradient: import("@stitches/react/types/theme").Token<"gradient", string, "colors", string>;
2800
- link: import("@stitches/react/types/theme").Token<"link", string, "colors", string>;
2953
+ bgColor: (value: {
2954
+ readonly [$$PropertyValue]: "backgroundColor";
2955
+ }) => {
2956
+ backgroundColor: {
2957
+ readonly [$$PropertyValue]: "backgroundColor";
2958
+ };
2801
2959
  };
2802
- fonts: {
2803
- sans: import("@stitches/react/types/theme").Token<"sans", string, "fonts", string>;
2804
- mono: import("@stitches/react/types/theme").Token<"mono", string, "fonts", string>;
2960
+ backgroundClip: (value: {
2961
+ readonly [$$PropertyValue]: "backgroundClip";
2962
+ }) => {
2963
+ WebkitBackgroundClip: {
2964
+ readonly [$$PropertyValue]: "backgroundClip";
2965
+ };
2966
+ backgroundClip: {
2967
+ readonly [$$PropertyValue]: "backgroundClip";
2968
+ };
2805
2969
  };
2806
- fontSizes: {
2807
- tiny: import("@stitches/react/types/theme").Token<"tiny", string, "fontSizes", string>;
2808
- xs: import("@stitches/react/types/theme").Token<"xs", string, "fontSizes", string>;
2809
- base: import("@stitches/react/types/theme").Token<"base", string, "fontSizes", string>;
2810
- sm: import("@stitches/react/types/theme").Token<"sm", string, "fontSizes", string>;
2811
- md: import("@stitches/react/types/theme").Token<"md", string, "fontSizes", string>;
2812
- lg: import("@stitches/react/types/theme").Token<"lg", string, "fontSizes", string>;
2813
- xl: import("@stitches/react/types/theme").Token<"xl", string, "fontSizes", string>;
2970
+ bgClip: (value: {
2971
+ readonly [$$PropertyValue]: "backgroundClip";
2972
+ }) => {
2973
+ WebkitBackgroundClip: {
2974
+ readonly [$$PropertyValue]: "backgroundClip";
2975
+ };
2976
+ backgroundClip: {
2977
+ readonly [$$PropertyValue]: "backgroundClip";
2978
+ };
2814
2979
  };
2815
- fontWeights: {
2816
- hairline: import("@stitches/react/types/theme").Token<"hairline", string, "fontWeights", string>;
2817
- thin: import("@stitches/react/types/theme").Token<"thin", string, "fontWeights", string>;
2818
- light: import("@stitches/react/types/theme").Token<"light", string, "fontWeights", string>;
2819
- normal: import("@stitches/react/types/theme").Token<"normal", string, "fontWeights", string>;
2820
- medium: import("@stitches/react/types/theme").Token<"medium", string, "fontWeights", string>;
2821
- semibold: import("@stitches/react/types/theme").Token<"semibold", string, "fontWeights", string>;
2822
- bold: import("@stitches/react/types/theme").Token<"bold", string, "fontWeights", string>;
2823
- extrabold: import("@stitches/react/types/theme").Token<"extrabold", string, "fontWeights", string>;
2824
- black: import("@stitches/react/types/theme").Token<"black", string, "fontWeights", string>;
2980
+ br: (value: {
2981
+ readonly [$$PropertyValue]: "borderRadius";
2982
+ }) => {
2983
+ borderRadius: {
2984
+ readonly [$$PropertyValue]: "borderRadius";
2985
+ };
2825
2986
  };
2826
- lineHeights: {
2827
- xs: import("@stitches/react/types/theme").Token<"xs", string, "lineHeights", string>;
2828
- sm: import("@stitches/react/types/theme").Token<"sm", string, "lineHeights", string>;
2829
- md: import("@stitches/react/types/theme").Token<"md", string, "lineHeights", string>;
2830
- lg: import("@stitches/react/types/theme").Token<"lg", string, "lineHeights", string>;
2831
- xl: import("@stitches/react/types/theme").Token<"xl", string, "lineHeights", string>;
2987
+ bw: (value: {
2988
+ readonly [$$PropertyValue]: "borderWidth";
2989
+ }) => {
2990
+ borderWidth: {
2991
+ readonly [$$PropertyValue]: "borderWidth";
2992
+ };
2832
2993
  };
2833
- letterSpacings: {
2834
- tighter: import("@stitches/react/types/theme").Token<"tighter", string, "letterSpacings", string>;
2835
- tight: import("@stitches/react/types/theme").Token<"tight", string, "letterSpacings", string>;
2836
- normal: import("@stitches/react/types/theme").Token<"normal", string, "letterSpacings", string>;
2837
- wide: import("@stitches/react/types/theme").Token<"wide", string, "letterSpacings", string>;
2838
- wider: import("@stitches/react/types/theme").Token<"wider", string, "letterSpacings", string>;
2839
- widest: import("@stitches/react/types/theme").Token<"widest", string, "letterSpacings", string>;
2994
+ btrr: (value: {
2995
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2996
+ }) => {
2997
+ borderTopRightRadius: {
2998
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2999
+ };
2840
3000
  };
2841
- space: {
2842
- 0: import("@stitches/react/types/theme").Token<"0", string, "space", string>;
2843
- xs: import("@stitches/react/types/theme").Token<"xs", string, "space", string>;
2844
- sm: import("@stitches/react/types/theme").Token<"sm", string, "space", string>;
2845
- md: import("@stitches/react/types/theme").Token<"md", string, "space", string>;
2846
- lg: import("@stitches/react/types/theme").Token<"lg", string, "space", string>;
2847
- xl: import("@stitches/react/types/theme").Token<"xl", string, "space", string>;
2848
- px: import("@stitches/react/types/theme").Token<"px", string, "space", string>;
2849
- 1: import("@stitches/react/types/theme").Token<"1", string, "space", string>;
2850
- 2: import("@stitches/react/types/theme").Token<"2", string, "space", string>;
2851
- 3: import("@stitches/react/types/theme").Token<"3", string, "space", string>;
2852
- 4: import("@stitches/react/types/theme").Token<"4", string, "space", string>;
2853
- 5: import("@stitches/react/types/theme").Token<"5", string, "space", string>;
2854
- 6: import("@stitches/react/types/theme").Token<"6", string, "space", string>;
2855
- 7: import("@stitches/react/types/theme").Token<"7", string, "space", string>;
2856
- 8: import("@stitches/react/types/theme").Token<"8", string, "space", string>;
2857
- 9: import("@stitches/react/types/theme").Token<"9", string, "space", string>;
2858
- 10: import("@stitches/react/types/theme").Token<"10", string, "space", string>;
2859
- 11: import("@stitches/react/types/theme").Token<"11", string, "space", string>;
2860
- 12: import("@stitches/react/types/theme").Token<"12", string, "space", string>;
2861
- 13: import("@stitches/react/types/theme").Token<"13", string, "space", string>;
2862
- 14: import("@stitches/react/types/theme").Token<"14", string, "space", string>;
2863
- 15: import("@stitches/react/types/theme").Token<"15", string, "space", string>;
2864
- 16: import("@stitches/react/types/theme").Token<"16", string, "space", string>;
2865
- 17: import("@stitches/react/types/theme").Token<"17", string, "space", string>;
2866
- 18: import("@stitches/react/types/theme").Token<"18", string, "space", string>;
2867
- 20: import("@stitches/react/types/theme").Token<"20", string, "space", string>;
2868
- 24: import("@stitches/react/types/theme").Token<"24", string, "space", string>;
2869
- 28: import("@stitches/react/types/theme").Token<"28", string, "space", string>;
2870
- 32: import("@stitches/react/types/theme").Token<"32", string, "space", string>;
2871
- 36: import("@stitches/react/types/theme").Token<"36", string, "space", string>;
2872
- 40: import("@stitches/react/types/theme").Token<"40", string, "space", string>;
2873
- 44: import("@stitches/react/types/theme").Token<"44", string, "space", string>;
2874
- 48: import("@stitches/react/types/theme").Token<"48", string, "space", string>;
2875
- 52: import("@stitches/react/types/theme").Token<"52", string, "space", string>;
2876
- 56: import("@stitches/react/types/theme").Token<"56", string, "space", string>;
2877
- 60: import("@stitches/react/types/theme").Token<"60", string, "space", string>;
2878
- 64: import("@stitches/react/types/theme").Token<"64", string, "space", string>;
2879
- 72: import("@stitches/react/types/theme").Token<"72", string, "space", string>;
2880
- 80: import("@stitches/react/types/theme").Token<"80", string, "space", string>;
2881
- 96: import("@stitches/react/types/theme").Token<"96", string, "space", string>;
3001
+ bbrr: (value: {
3002
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3003
+ }) => {
3004
+ borderBottomRightRadius: {
3005
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3006
+ };
2882
3007
  };
2883
- radii: {
2884
- xs: import("@stitches/react/types/theme").Token<"xs", string, "radii", string>;
2885
- sm: import("@stitches/react/types/theme").Token<"sm", string, "radii", string>;
2886
- md: import("@stitches/react/types/theme").Token<"md", string, "radii", string>;
2887
- base: import("@stitches/react/types/theme").Token<"base", string, "radii", string>;
2888
- lg: import("@stitches/react/types/theme").Token<"lg", string, "radii", string>;
2889
- xl: import("@stitches/react/types/theme").Token<"xl", string, "radii", string>;
2890
- squared: import("@stitches/react/types/theme").Token<"squared", string, "radii", string>;
2891
- rounded: import("@stitches/react/types/theme").Token<"rounded", string, "radii", string>;
2892
- pill: import("@stitches/react/types/theme").Token<"pill", string, "radii", string>;
3008
+ bblr: (value: {
3009
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3010
+ }) => {
3011
+ borderBottomLeftRadius: {
3012
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3013
+ };
2893
3014
  };
2894
- zIndices: {
2895
- 1: import("@stitches/react/types/theme").Token<"1", string, "zIndices", string>;
2896
- 2: import("@stitches/react/types/theme").Token<"2", string, "zIndices", string>;
2897
- 3: import("@stitches/react/types/theme").Token<"3", string, "zIndices", string>;
2898
- 4: import("@stitches/react/types/theme").Token<"4", string, "zIndices", string>;
2899
- 5: import("@stitches/react/types/theme").Token<"5", string, "zIndices", string>;
2900
- 10: import("@stitches/react/types/theme").Token<"10", string, "zIndices", string>;
2901
- max: import("@stitches/react/types/theme").Token<"max", string, "zIndices", string>;
3015
+ btlr: (value: {
3016
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3017
+ }) => {
3018
+ borderTopLeftRadius: {
3019
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3020
+ };
2902
3021
  };
2903
- borderWeights: {
2904
- light: import("@stitches/react/types/theme").Token<"light", string, "borderWeights", string>;
2905
- normal: import("@stitches/react/types/theme").Token<"normal", string, "borderWeights", string>;
2906
- bold: import("@stitches/react/types/theme").Token<"bold", string, "borderWeights", string>;
2907
- extrabold: import("@stitches/react/types/theme").Token<"extrabold", string, "borderWeights", string>;
2908
- black: import("@stitches/react/types/theme").Token<"black", string, "borderWeights", string>;
3022
+ bs: (value: {
3023
+ readonly [$$PropertyValue]: "boxShadow";
3024
+ }) => {
3025
+ boxShadow: {
3026
+ readonly [$$PropertyValue]: "boxShadow";
3027
+ };
2909
3028
  };
2910
- transitions: {
2911
- default: import("@stitches/react/types/theme").Token<"default", string, "transitions", string>;
3029
+ normalShadow: (value: {
3030
+ readonly [$$PropertyValue]: "backgroundColor";
3031
+ }) => {
3032
+ boxShadow: string;
3033
+ };
3034
+ normalShadowVar: (value: {
3035
+ readonly [$$PropertyValue]: "backgroundColor";
3036
+ }) => {
3037
+ boxShadow: string;
3038
+ };
3039
+ lh: (value: {
3040
+ readonly [$$PropertyValue]: "lineHeight";
3041
+ }) => {
3042
+ lineHeight: {
3043
+ readonly [$$PropertyValue]: "lineHeight";
3044
+ };
3045
+ };
3046
+ ov: (value: {
3047
+ readonly [$$PropertyValue]: "overflow";
3048
+ }) => {
3049
+ overflow: {
3050
+ readonly [$$PropertyValue]: "overflow";
3051
+ };
3052
+ };
3053
+ ox: (value: {
3054
+ readonly [$$PropertyValue]: "overflowX";
3055
+ }) => {
3056
+ overflowX: {
3057
+ readonly [$$PropertyValue]: "overflowX";
3058
+ };
3059
+ };
3060
+ oy: (value: {
3061
+ readonly [$$PropertyValue]: "overflowY";
3062
+ }) => {
3063
+ overflowY: {
3064
+ readonly [$$PropertyValue]: "overflowY";
3065
+ };
3066
+ };
3067
+ pe: (value: {
3068
+ readonly [$$PropertyValue]: "pointerEvents";
3069
+ }) => {
3070
+ pointerEvents: {
3071
+ readonly [$$PropertyValue]: "pointerEvents";
3072
+ };
3073
+ };
3074
+ events: (value: {
3075
+ readonly [$$PropertyValue]: "pointerEvents";
3076
+ }) => {
3077
+ pointerEvents: {
3078
+ readonly [$$PropertyValue]: "pointerEvents";
3079
+ };
3080
+ };
3081
+ us: (value: {
3082
+ readonly [$$PropertyValue]: "userSelect";
3083
+ }) => {
3084
+ WebkitUserSelect: {
3085
+ readonly [$$PropertyValue]: "userSelect";
3086
+ };
3087
+ userSelect: {
3088
+ readonly [$$PropertyValue]: "userSelect";
3089
+ };
3090
+ };
3091
+ userSelect: (value: {
3092
+ readonly [$$PropertyValue]: "userSelect";
3093
+ }) => {
3094
+ WebkitUserSelect: {
3095
+ readonly [$$PropertyValue]: "userSelect";
3096
+ };
3097
+ userSelect: {
3098
+ readonly [$$PropertyValue]: "userSelect";
3099
+ };
3100
+ };
3101
+ w: (value: {
3102
+ readonly [$$PropertyValue]: "width";
3103
+ }) => {
3104
+ width: {
3105
+ readonly [$$PropertyValue]: "width";
3106
+ };
3107
+ };
3108
+ h: (value: {
3109
+ readonly [$$PropertyValue]: "height";
3110
+ }) => {
3111
+ height: {
3112
+ readonly [$$PropertyValue]: "height";
3113
+ };
3114
+ };
3115
+ mw: (value: {
3116
+ readonly [$$PropertyValue]: "maxWidth";
3117
+ }) => {
3118
+ maxWidth: {
3119
+ readonly [$$PropertyValue]: "maxWidth";
3120
+ };
2912
3121
  };
2913
- breakpoints: {
2914
- xs: import("@stitches/react/types/theme").Token<"xs", string, "breakpoints", string>;
2915
- sm: import("@stitches/react/types/theme").Token<"sm", string, "breakpoints", string>;
2916
- md: import("@stitches/react/types/theme").Token<"md", string, "breakpoints", string>;
2917
- lg: import("@stitches/react/types/theme").Token<"lg", string, "breakpoints", string>;
2918
- xl: import("@stitches/react/types/theme").Token<"xl", string, "breakpoints", string>;
3122
+ maxW: (value: {
3123
+ readonly [$$PropertyValue]: "maxWidth";
3124
+ }) => {
3125
+ maxWidth: {
3126
+ readonly [$$PropertyValue]: "maxWidth";
3127
+ };
2919
3128
  };
2920
- }, createThemeBase: <Argument0 extends string | ({
2921
- shadows?: {
2922
- xs?: string | number | boolean | undefined;
2923
- sm?: string | number | boolean | undefined;
2924
- md?: string | number | boolean | undefined;
2925
- lg?: string | number | boolean | undefined;
2926
- xl?: string | number | boolean | undefined;
2927
- } | undefined;
2928
- colors?: {
2929
- accents1?: string | number | boolean | undefined;
2930
- accents2?: string | number | boolean | undefined;
2931
- accents3?: string | number | boolean | undefined;
2932
- accents4?: string | number | boolean | undefined;
2933
- accents5?: string | number | boolean | undefined;
2934
- accents6?: string | number | boolean | undefined;
2935
- accents7?: string | number | boolean | undefined;
2936
- accents8?: string | number | boolean | undefined;
2937
- accents9?: string | number | boolean | undefined;
2938
- text?: string | number | boolean | undefined;
2939
- background?: string | number | boolean | undefined;
2940
- foreground?: string | number | boolean | undefined;
2941
- codeLight?: string | number | boolean | undefined;
2942
- code?: string | number | boolean | undefined;
2943
- border?: string | number | boolean | undefined;
2944
- selection?: string | number | boolean | undefined;
2945
- white?: string | number | boolean | undefined;
2946
- black?: string | number | boolean | undefined;
2947
- blue100?: string | number | boolean | undefined;
2948
- blue200?: string | number | boolean | undefined;
2949
- blue300?: string | number | boolean | undefined;
2950
- blue400?: string | number | boolean | undefined;
2951
- blue500?: string | number | boolean | undefined;
2952
- blue600?: string | number | boolean | undefined;
2953
- blue700?: string | number | boolean | undefined;
2954
- blue800?: string | number | boolean | undefined;
2955
- blue900?: string | number | boolean | undefined;
2956
- purple100?: string | number | boolean | undefined;
2957
- purple200?: string | number | boolean | undefined;
2958
- purple300?: string | number | boolean | undefined;
2959
- purple400?: string | number | boolean | undefined;
2960
- purple500?: string | number | boolean | undefined;
2961
- purple600?: string | number | boolean | undefined;
2962
- purple700?: string | number | boolean | undefined;
2963
- purple800?: string | number | boolean | undefined;
2964
- purple900?: string | number | boolean | undefined;
2965
- green100?: string | number | boolean | undefined;
2966
- green200?: string | number | boolean | undefined;
2967
- green300?: string | number | boolean | undefined;
2968
- green400?: string | number | boolean | undefined;
2969
- green500?: string | number | boolean | undefined;
2970
- green600?: string | number | boolean | undefined;
2971
- green700?: string | number | boolean | undefined;
2972
- green800?: string | number | boolean | undefined;
2973
- green900?: string | number | boolean | undefined;
2974
- yellow100?: string | number | boolean | undefined;
2975
- yellow200?: string | number | boolean | undefined;
2976
- yellow300?: string | number | boolean | undefined;
2977
- yellow400?: string | number | boolean | undefined;
2978
- yellow500?: string | number | boolean | undefined;
2979
- yellow600?: string | number | boolean | undefined;
2980
- yellow700?: string | number | boolean | undefined;
2981
- yellow800?: string | number | boolean | undefined;
2982
- yellow900?: string | number | boolean | undefined;
2983
- red100?: string | number | boolean | undefined;
2984
- red200?: string | number | boolean | undefined;
2985
- red300?: string | number | boolean | undefined;
2986
- red400?: string | number | boolean | undefined;
2987
- red500?: string | number | boolean | undefined;
2988
- red600?: string | number | boolean | undefined;
2989
- red700?: string | number | boolean | undefined;
2990
- red800?: string | number | boolean | undefined;
2991
- red900?: string | number | boolean | undefined;
2992
- cyan100?: string | number | boolean | undefined;
2993
- cyan200?: string | number | boolean | undefined;
2994
- cyan300?: string | number | boolean | undefined;
2995
- cyan400?: string | number | boolean | undefined;
2996
- cyan500?: string | number | boolean | undefined;
2997
- cyan600?: string | number | boolean | undefined;
2998
- cyan700?: string | number | boolean | undefined;
2999
- cyan800?: string | number | boolean | undefined;
3000
- cyan900?: string | number | boolean | undefined;
3001
- pink100?: string | number | boolean | undefined;
3002
- pink200?: string | number | boolean | undefined;
3003
- pink300?: string | number | boolean | undefined;
3004
- pink400?: string | number | boolean | undefined;
3005
- pink500?: string | number | boolean | undefined;
3006
- pink600?: string | number | boolean | undefined;
3007
- pink700?: string | number | boolean | undefined;
3008
- pink800?: string | number | boolean | undefined;
3009
- pink900?: string | number | boolean | undefined;
3010
- gray100?: string | number | boolean | undefined;
3011
- gray200?: string | number | boolean | undefined;
3012
- gray300?: string | number | boolean | undefined;
3013
- gray400?: string | number | boolean | undefined;
3014
- gray500?: string | number | boolean | undefined;
3015
- gray600?: string | number | boolean | undefined;
3016
- gray700?: string | number | boolean | undefined;
3017
- gray800?: string | number | boolean | undefined;
3018
- gray900?: string | number | boolean | undefined;
3019
- primaryLight?: string | number | boolean | undefined;
3020
- primary?: string | number | boolean | undefined;
3021
- primaryDark?: string | number | boolean | undefined;
3022
- secondaryLight?: string | number | boolean | undefined;
3023
- secondary?: string | number | boolean | undefined;
3024
- secondaryDark?: string | number | boolean | undefined;
3025
- successLight?: string | number | boolean | undefined;
3026
- success?: string | number | boolean | undefined;
3027
- successDark?: string | number | boolean | undefined;
3028
- warningLight?: string | number | boolean | undefined;
3029
- warning?: string | number | boolean | undefined;
3030
- warningDark?: string | number | boolean | undefined;
3031
- errorLight?: string | number | boolean | undefined;
3032
- error?: string | number | boolean | undefined;
3033
- errorDark?: string | number | boolean | undefined;
3034
- gradient?: string | number | boolean | undefined;
3035
- link?: string | number | boolean | undefined;
3036
- } | undefined;
3037
- fonts?: {
3038
- sans?: string | number | boolean | undefined;
3039
- mono?: string | number | boolean | undefined;
3040
- } | undefined;
3041
- fontSizes?: {
3042
- tiny?: string | number | boolean | undefined;
3043
- xs?: string | number | boolean | undefined;
3044
- base?: string | number | boolean | undefined;
3045
- sm?: string | number | boolean | undefined;
3046
- md?: string | number | boolean | undefined;
3047
- lg?: string | number | boolean | undefined;
3048
- xl?: string | number | boolean | undefined;
3049
- } | undefined;
3050
- fontWeights?: {
3051
- hairline?: string | number | boolean | undefined;
3052
- thin?: string | number | boolean | undefined;
3053
- light?: string | number | boolean | undefined;
3054
- normal?: string | number | boolean | undefined;
3055
- medium?: string | number | boolean | undefined;
3056
- semibold?: string | number | boolean | undefined;
3057
- bold?: string | number | boolean | undefined;
3058
- extrabold?: string | number | boolean | undefined;
3059
- black?: string | number | boolean | undefined;
3060
- } | undefined;
3061
- lineHeights?: {
3062
- xs?: string | number | boolean | undefined;
3063
- sm?: string | number | boolean | undefined;
3064
- md?: string | number | boolean | undefined;
3065
- lg?: string | number | boolean | undefined;
3066
- xl?: string | number | boolean | undefined;
3067
- } | undefined;
3068
- letterSpacings?: {
3069
- tighter?: string | number | boolean | undefined;
3070
- tight?: string | number | boolean | undefined;
3071
- normal?: string | number | boolean | undefined;
3072
- wide?: string | number | boolean | undefined;
3073
- wider?: string | number | boolean | undefined;
3074
- widest?: string | number | boolean | undefined;
3075
- } | undefined;
3076
- space?: {
3077
- 0?: string | number | boolean | undefined;
3078
- xs?: string | number | boolean | undefined;
3079
- sm?: string | number | boolean | undefined;
3080
- md?: string | number | boolean | undefined;
3081
- lg?: string | number | boolean | undefined;
3082
- xl?: string | number | boolean | undefined;
3083
- px?: string | number | boolean | undefined;
3084
- 1?: string | number | boolean | undefined;
3085
- 2?: string | number | boolean | undefined;
3086
- 3?: string | number | boolean | undefined;
3087
- 4?: string | number | boolean | undefined;
3088
- 5?: string | number | boolean | undefined;
3089
- 6?: string | number | boolean | undefined;
3090
- 7?: string | number | boolean | undefined;
3091
- 8?: string | number | boolean | undefined;
3092
- 9?: string | number | boolean | undefined;
3093
- 10?: string | number | boolean | undefined;
3094
- 11?: string | number | boolean | undefined;
3095
- 12?: string | number | boolean | undefined;
3096
- 13?: string | number | boolean | undefined;
3097
- 14?: string | number | boolean | undefined;
3098
- 15?: string | number | boolean | undefined;
3099
- 16?: string | number | boolean | undefined;
3100
- 17?: string | number | boolean | undefined;
3101
- 18?: string | number | boolean | undefined;
3102
- 20?: string | number | boolean | undefined;
3103
- 24?: string | number | boolean | undefined;
3104
- 28?: string | number | boolean | undefined;
3105
- 32?: string | number | boolean | undefined;
3106
- 36?: string | number | boolean | undefined;
3107
- 40?: string | number | boolean | undefined;
3108
- 44?: string | number | boolean | undefined;
3109
- 48?: string | number | boolean | undefined;
3110
- 52?: string | number | boolean | undefined;
3111
- 56?: string | number | boolean | undefined;
3112
- 60?: string | number | boolean | undefined;
3113
- 64?: string | number | boolean | undefined;
3114
- 72?: string | number | boolean | undefined;
3115
- 80?: string | number | boolean | undefined;
3116
- 96?: string | number | boolean | undefined;
3117
- } | undefined;
3118
- radii?: {
3119
- xs?: string | number | boolean | undefined;
3120
- sm?: string | number | boolean | undefined;
3121
- md?: string | number | boolean | undefined;
3122
- base?: string | number | boolean | undefined;
3123
- lg?: string | number | boolean | undefined;
3124
- xl?: string | number | boolean | undefined;
3125
- squared?: string | number | boolean | undefined;
3126
- rounded?: string | number | boolean | undefined;
3127
- pill?: string | number | boolean | undefined;
3128
- } | undefined;
3129
- zIndices?: {
3130
- 1?: string | number | boolean | undefined;
3131
- 2?: string | number | boolean | undefined;
3132
- 3?: string | number | boolean | undefined;
3133
- 4?: string | number | boolean | undefined;
3134
- 5?: string | number | boolean | undefined;
3135
- 10?: string | number | boolean | undefined;
3136
- max?: string | number | boolean | undefined;
3137
- } | undefined;
3138
- borderWeights?: {
3139
- light?: string | number | boolean | undefined;
3140
- normal?: string | number | boolean | undefined;
3141
- bold?: string | number | boolean | undefined;
3142
- extrabold?: string | number | boolean | undefined;
3143
- black?: string | number | boolean | undefined;
3144
- } | undefined;
3145
- transitions?: {
3146
- default?: string | number | boolean | undefined;
3147
- } | undefined;
3148
- breakpoints?: {
3149
- xs?: string | number | boolean | undefined;
3150
- sm?: string | number | boolean | undefined;
3151
- md?: string | number | boolean | undefined;
3152
- lg?: string | number | boolean | undefined;
3153
- xl?: string | number | boolean | undefined;
3154
- } | undefined;
3155
- } & {
3156
- [x: string]: {
3157
- [x: string]: string | number | boolean;
3158
- [x: number]: string | number | boolean;
3129
+ mh: (value: {
3130
+ readonly [$$PropertyValue]: "maxHeight";
3131
+ }) => {
3132
+ maxHeight: {
3133
+ readonly [$$PropertyValue]: "maxHeight";
3134
+ };
3159
3135
  };
3160
- }), Argument1 extends string | ({
3161
- shadows?: {
3162
- xs?: string | number | boolean | undefined;
3163
- sm?: string | number | boolean | undefined;
3164
- md?: string | number | boolean | undefined;
3165
- lg?: string | number | boolean | undefined;
3166
- xl?: string | number | boolean | undefined;
3167
- } | undefined;
3168
- colors?: {
3169
- accents1?: string | number | boolean | undefined;
3170
- accents2?: string | number | boolean | undefined;
3171
- accents3?: string | number | boolean | undefined;
3172
- accents4?: string | number | boolean | undefined;
3173
- accents5?: string | number | boolean | undefined;
3174
- accents6?: string | number | boolean | undefined;
3175
- accents7?: string | number | boolean | undefined;
3176
- accents8?: string | number | boolean | undefined;
3177
- accents9?: string | number | boolean | undefined;
3178
- text?: string | number | boolean | undefined;
3179
- background?: string | number | boolean | undefined;
3180
- foreground?: string | number | boolean | undefined;
3181
- codeLight?: string | number | boolean | undefined;
3182
- code?: string | number | boolean | undefined;
3183
- border?: string | number | boolean | undefined;
3184
- selection?: string | number | boolean | undefined;
3185
- white?: string | number | boolean | undefined;
3186
- black?: string | number | boolean | undefined;
3187
- blue100?: string | number | boolean | undefined;
3188
- blue200?: string | number | boolean | undefined;
3189
- blue300?: string | number | boolean | undefined;
3190
- blue400?: string | number | boolean | undefined;
3191
- blue500?: string | number | boolean | undefined;
3192
- blue600?: string | number | boolean | undefined;
3193
- blue700?: string | number | boolean | undefined;
3194
- blue800?: string | number | boolean | undefined;
3195
- blue900?: string | number | boolean | undefined;
3196
- purple100?: string | number | boolean | undefined;
3197
- purple200?: string | number | boolean | undefined;
3198
- purple300?: string | number | boolean | undefined;
3199
- purple400?: string | number | boolean | undefined;
3200
- purple500?: string | number | boolean | undefined;
3201
- purple600?: string | number | boolean | undefined;
3202
- purple700?: string | number | boolean | undefined;
3203
- purple800?: string | number | boolean | undefined;
3204
- purple900?: string | number | boolean | undefined;
3205
- green100?: string | number | boolean | undefined;
3206
- green200?: string | number | boolean | undefined;
3207
- green300?: string | number | boolean | undefined;
3208
- green400?: string | number | boolean | undefined;
3209
- green500?: string | number | boolean | undefined;
3210
- green600?: string | number | boolean | undefined;
3211
- green700?: string | number | boolean | undefined;
3212
- green800?: string | number | boolean | undefined;
3213
- green900?: string | number | boolean | undefined;
3214
- yellow100?: string | number | boolean | undefined;
3215
- yellow200?: string | number | boolean | undefined;
3216
- yellow300?: string | number | boolean | undefined;
3217
- yellow400?: string | number | boolean | undefined;
3218
- yellow500?: string | number | boolean | undefined;
3219
- yellow600?: string | number | boolean | undefined;
3220
- yellow700?: string | number | boolean | undefined;
3221
- yellow800?: string | number | boolean | undefined;
3222
- yellow900?: string | number | boolean | undefined;
3223
- red100?: string | number | boolean | undefined;
3224
- red200?: string | number | boolean | undefined;
3225
- red300?: string | number | boolean | undefined;
3226
- red400?: string | number | boolean | undefined;
3227
- red500?: string | number | boolean | undefined;
3228
- red600?: string | number | boolean | undefined;
3229
- red700?: string | number | boolean | undefined;
3230
- red800?: string | number | boolean | undefined;
3231
- red900?: string | number | boolean | undefined;
3232
- cyan100?: string | number | boolean | undefined;
3233
- cyan200?: string | number | boolean | undefined;
3234
- cyan300?: string | number | boolean | undefined;
3235
- cyan400?: string | number | boolean | undefined;
3236
- cyan500?: string | number | boolean | undefined;
3237
- cyan600?: string | number | boolean | undefined;
3238
- cyan700?: string | number | boolean | undefined;
3239
- cyan800?: string | number | boolean | undefined;
3240
- cyan900?: string | number | boolean | undefined;
3241
- pink100?: string | number | boolean | undefined;
3242
- pink200?: string | number | boolean | undefined;
3243
- pink300?: string | number | boolean | undefined;
3244
- pink400?: string | number | boolean | undefined;
3245
- pink500?: string | number | boolean | undefined;
3246
- pink600?: string | number | boolean | undefined;
3247
- pink700?: string | number | boolean | undefined;
3248
- pink800?: string | number | boolean | undefined;
3249
- pink900?: string | number | boolean | undefined;
3250
- gray100?: string | number | boolean | undefined;
3251
- gray200?: string | number | boolean | undefined;
3252
- gray300?: string | number | boolean | undefined;
3253
- gray400?: string | number | boolean | undefined;
3254
- gray500?: string | number | boolean | undefined;
3255
- gray600?: string | number | boolean | undefined;
3256
- gray700?: string | number | boolean | undefined;
3257
- gray800?: string | number | boolean | undefined;
3258
- gray900?: string | number | boolean | undefined;
3259
- primaryLight?: string | number | boolean | undefined;
3260
- primary?: string | number | boolean | undefined;
3261
- primaryDark?: string | number | boolean | undefined;
3262
- secondaryLight?: string | number | boolean | undefined;
3263
- secondary?: string | number | boolean | undefined;
3264
- secondaryDark?: string | number | boolean | undefined;
3265
- successLight?: string | number | boolean | undefined;
3266
- success?: string | number | boolean | undefined;
3267
- successDark?: string | number | boolean | undefined;
3268
- warningLight?: string | number | boolean | undefined;
3269
- warning?: string | number | boolean | undefined;
3270
- warningDark?: string | number | boolean | undefined;
3271
- errorLight?: string | number | boolean | undefined;
3272
- error?: string | number | boolean | undefined;
3273
- errorDark?: string | number | boolean | undefined;
3274
- gradient?: string | number | boolean | undefined;
3275
- link?: string | number | boolean | undefined;
3276
- } | undefined;
3277
- fonts?: {
3278
- sans?: string | number | boolean | undefined;
3279
- mono?: string | number | boolean | undefined;
3280
- } | undefined;
3281
- fontSizes?: {
3282
- tiny?: string | number | boolean | undefined;
3283
- xs?: string | number | boolean | undefined;
3284
- base?: string | number | boolean | undefined;
3285
- sm?: string | number | boolean | undefined;
3286
- md?: string | number | boolean | undefined;
3287
- lg?: string | number | boolean | undefined;
3288
- xl?: string | number | boolean | undefined;
3289
- } | undefined;
3290
- fontWeights?: {
3291
- hairline?: string | number | boolean | undefined;
3292
- thin?: string | number | boolean | undefined;
3293
- light?: string | number | boolean | undefined;
3294
- normal?: string | number | boolean | undefined;
3295
- medium?: string | number | boolean | undefined;
3296
- semibold?: string | number | boolean | undefined;
3297
- bold?: string | number | boolean | undefined;
3298
- extrabold?: string | number | boolean | undefined;
3299
- black?: string | number | boolean | undefined;
3300
- } | undefined;
3301
- lineHeights?: {
3302
- xs?: string | number | boolean | undefined;
3303
- sm?: string | number | boolean | undefined;
3304
- md?: string | number | boolean | undefined;
3305
- lg?: string | number | boolean | undefined;
3306
- xl?: string | number | boolean | undefined;
3307
- } | undefined;
3308
- letterSpacings?: {
3309
- tighter?: string | number | boolean | undefined;
3310
- tight?: string | number | boolean | undefined;
3311
- normal?: string | number | boolean | undefined;
3312
- wide?: string | number | boolean | undefined;
3313
- wider?: string | number | boolean | undefined;
3314
- widest?: string | number | boolean | undefined;
3315
- } | undefined;
3316
- space?: {
3317
- 0?: string | number | boolean | undefined;
3318
- xs?: string | number | boolean | undefined;
3319
- sm?: string | number | boolean | undefined;
3320
- md?: string | number | boolean | undefined;
3321
- lg?: string | number | boolean | undefined;
3322
- xl?: string | number | boolean | undefined;
3323
- px?: string | number | boolean | undefined;
3324
- 1?: string | number | boolean | undefined;
3325
- 2?: string | number | boolean | undefined;
3326
- 3?: string | number | boolean | undefined;
3327
- 4?: string | number | boolean | undefined;
3328
- 5?: string | number | boolean | undefined;
3329
- 6?: string | number | boolean | undefined;
3330
- 7?: string | number | boolean | undefined;
3331
- 8?: string | number | boolean | undefined;
3332
- 9?: string | number | boolean | undefined;
3333
- 10?: string | number | boolean | undefined;
3334
- 11?: string | number | boolean | undefined;
3335
- 12?: string | number | boolean | undefined;
3336
- 13?: string | number | boolean | undefined;
3337
- 14?: string | number | boolean | undefined;
3338
- 15?: string | number | boolean | undefined;
3339
- 16?: string | number | boolean | undefined;
3340
- 17?: string | number | boolean | undefined;
3341
- 18?: string | number | boolean | undefined;
3342
- 20?: string | number | boolean | undefined;
3343
- 24?: string | number | boolean | undefined;
3344
- 28?: string | number | boolean | undefined;
3345
- 32?: string | number | boolean | undefined;
3346
- 36?: string | number | boolean | undefined;
3347
- 40?: string | number | boolean | undefined;
3348
- 44?: string | number | boolean | undefined;
3349
- 48?: string | number | boolean | undefined;
3350
- 52?: string | number | boolean | undefined;
3351
- 56?: string | number | boolean | undefined;
3352
- 60?: string | number | boolean | undefined;
3353
- 64?: string | number | boolean | undefined;
3354
- 72?: string | number | boolean | undefined;
3355
- 80?: string | number | boolean | undefined;
3356
- 96?: string | number | boolean | undefined;
3357
- } | undefined;
3358
- radii?: {
3359
- xs?: string | number | boolean | undefined;
3360
- sm?: string | number | boolean | undefined;
3361
- md?: string | number | boolean | undefined;
3362
- base?: string | number | boolean | undefined;
3363
- lg?: string | number | boolean | undefined;
3364
- xl?: string | number | boolean | undefined;
3365
- squared?: string | number | boolean | undefined;
3366
- rounded?: string | number | boolean | undefined;
3367
- pill?: string | number | boolean | undefined;
3368
- } | undefined;
3369
- zIndices?: {
3370
- 1?: string | number | boolean | undefined;
3371
- 2?: string | number | boolean | undefined;
3372
- 3?: string | number | boolean | undefined;
3373
- 4?: string | number | boolean | undefined;
3374
- 5?: string | number | boolean | undefined;
3375
- 10?: string | number | boolean | undefined;
3376
- max?: string | number | boolean | undefined;
3377
- } | undefined;
3378
- borderWeights?: {
3379
- light?: string | number | boolean | undefined;
3380
- normal?: string | number | boolean | undefined;
3381
- bold?: string | number | boolean | undefined;
3382
- extrabold?: string | number | boolean | undefined;
3383
- black?: string | number | boolean | undefined;
3384
- } | undefined;
3385
- transitions?: {
3386
- default?: string | number | boolean | undefined;
3387
- } | undefined;
3388
- breakpoints?: {
3389
- xs?: string | number | boolean | undefined;
3390
- sm?: string | number | boolean | undefined;
3391
- md?: string | number | boolean | undefined;
3392
- lg?: string | number | boolean | undefined;
3393
- xl?: string | number | boolean | undefined;
3394
- } | undefined;
3395
- } & {
3396
- [x: string]: {
3397
- [x: string]: string | number | boolean;
3398
- [x: number]: string | number | boolean;
3136
+ maxH: (value: {
3137
+ readonly [$$PropertyValue]: "maxHeight";
3138
+ }) => {
3139
+ maxHeight: {
3140
+ readonly [$$PropertyValue]: "maxHeight";
3141
+ };
3142
+ };
3143
+ size: (value: {
3144
+ readonly [$$PropertyValue]: "width";
3145
+ }) => {
3146
+ width: {
3147
+ readonly [$$PropertyValue]: "width";
3148
+ };
3149
+ height: {
3150
+ readonly [$$PropertyValue]: "width";
3151
+ };
3399
3152
  };
3400
- })>(nameOrScalesArg0: Argument0, nameOrScalesArg1?: Argument1 | undefined) => string & {
3401
- className: string;
3402
- selector: string;
3403
- } & (Argument0 extends string ? import("@stitches/react/types/stitches").ThemeTokens<Argument1, string> : import("@stitches/react/types/stitches").ThemeTokens<Argument0, string>), getCssText: () => string, globalCss: <Styles extends {
3153
+ minSize: (value: {
3154
+ readonly [$$PropertyValue]: "width";
3155
+ }) => {
3156
+ minWidth: {
3157
+ readonly [$$PropertyValue]: "width";
3158
+ };
3159
+ minHeight: {
3160
+ readonly [$$PropertyValue]: "width";
3161
+ };
3162
+ width: {
3163
+ readonly [$$PropertyValue]: "width";
3164
+ };
3165
+ height: {
3166
+ readonly [$$PropertyValue]: "width";
3167
+ };
3168
+ };
3169
+ sizeMin: (value: {
3170
+ readonly [$$PropertyValue]: "width";
3171
+ }) => {
3172
+ minWidth: {
3173
+ readonly [$$PropertyValue]: "width";
3174
+ };
3175
+ minHeight: {
3176
+ readonly [$$PropertyValue]: "width";
3177
+ };
3178
+ width: {
3179
+ readonly [$$PropertyValue]: "width";
3180
+ };
3181
+ height: {
3182
+ readonly [$$PropertyValue]: "width";
3183
+ };
3184
+ };
3185
+ maxSize: (value: {
3186
+ readonly [$$PropertyValue]: "width";
3187
+ }) => {
3188
+ maxWidth: {
3189
+ readonly [$$PropertyValue]: "width";
3190
+ };
3191
+ maxHeight: {
3192
+ readonly [$$PropertyValue]: "width";
3193
+ };
3194
+ };
3195
+ sizeMax: (value: {
3196
+ readonly [$$PropertyValue]: "width";
3197
+ }) => {
3198
+ maxWidth: {
3199
+ readonly [$$PropertyValue]: "width";
3200
+ };
3201
+ maxHeight: {
3202
+ readonly [$$PropertyValue]: "width";
3203
+ };
3204
+ };
3205
+ appearance: (value: {
3206
+ readonly [$$PropertyValue]: "appearance";
3207
+ }) => {
3208
+ WebkitAppearance: {
3209
+ readonly [$$PropertyValue]: "appearance";
3210
+ };
3211
+ appearance: {
3212
+ readonly [$$PropertyValue]: "appearance";
3213
+ };
3214
+ };
3215
+ scale: (value: {
3216
+ readonly [$$PropertyValue]: "scale";
3217
+ }) => {
3218
+ transform: string;
3219
+ };
3220
+ linearGradient: (value: {
3221
+ readonly [$$PropertyValue]: "backgroundImage";
3222
+ }) => {
3223
+ backgroundImage: string;
3224
+ };
3225
+ tdl: (value: {
3226
+ readonly [$$PropertyValue]: "textDecorationLine";
3227
+ }) => {
3228
+ textDecorationLine: {
3229
+ readonly [$$PropertyValue]: "textDecorationLine";
3230
+ };
3231
+ };
3232
+ textGradient: (value: {
3233
+ readonly [$$PropertyValue]: "backgroundImage";
3234
+ }) => {
3235
+ backgroundImage: string;
3236
+ WebkitBackgroundClip: string;
3237
+ WebkitTextFillColor: string;
3238
+ };
3239
+ }>>(...composers: { [K in keyof Composers]: Composers[K] extends string | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | import("react").JSXElementConstructor<any> ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
3240
+ variants?: {
3241
+ [x: string]: {
3242
+ [x: string]: CSS_1;
3243
+ [x: number]: CSS_1;
3244
+ };
3245
+ } | undefined;
3246
+ compoundVariants?: (("variants" extends keyof Composers[K] ? { [Name in keyof Composers[K][keyof Composers[K] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers[K][keyof Composers[K] & "variants"][Name]> | undefined; } : import("@stitches/react/types/util").WideObject) & {
3247
+ css: CSS_1;
3248
+ })[] | undefined;
3249
+ defaultVariants?: ("variants" extends keyof Composers[K] ? { [Name_1 in keyof Composers[K][keyof Composers[K] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers[K][keyof Composers[K] & "variants"][Name_1]> | undefined; } : import("@stitches/react/types/util").WideObject) | undefined;
3250
+ } & CSS_1 & { [K2 in keyof Composers[K]]: 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>, {
3251
+ xs: string;
3252
+ sm: string;
3253
+ md: string;
3254
+ lg: string;
3255
+ xl: string;
3256
+ xsMax: string;
3257
+ smMax: string;
3258
+ mdMax: string;
3259
+ lgMax: string;
3260
+ xlMax: string;
3261
+ motion: string;
3262
+ safari: string;
3263
+ hover: string;
3264
+ dark: string;
3265
+ light: string;
3266
+ }, CSS_1>;
3267
+ export declare const globalCss: <Styles extends {
3404
3268
  [K: string]: any;
3405
3269
  }>(...styles: ({
3406
3270
  '@import'?: unknown;
@@ -4226,6 +4090,22 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
4226
4090
  readonly [$$PropertyValue]: "width";
4227
4091
  };
4228
4092
  };
4093
+ minSize: (value: {
4094
+ readonly [$$PropertyValue]: "width";
4095
+ }) => {
4096
+ minWidth: {
4097
+ readonly [$$PropertyValue]: "width";
4098
+ };
4099
+ minHeight: {
4100
+ readonly [$$PropertyValue]: "width";
4101
+ };
4102
+ width: {
4103
+ readonly [$$PropertyValue]: "width";
4104
+ };
4105
+ height: {
4106
+ readonly [$$PropertyValue]: "width";
4107
+ };
4108
+ };
4229
4109
  sizeMin: (value: {
4230
4110
  readonly [$$PropertyValue]: "width";
4231
4111
  }) => {
@@ -4242,6 +4122,16 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
4242
4122
  readonly [$$PropertyValue]: "width";
4243
4123
  };
4244
4124
  };
4125
+ maxSize: (value: {
4126
+ readonly [$$PropertyValue]: "width";
4127
+ }) => {
4128
+ maxWidth: {
4129
+ readonly [$$PropertyValue]: "width";
4130
+ };
4131
+ maxHeight: {
4132
+ readonly [$$PropertyValue]: "width";
4133
+ };
4134
+ };
4245
4135
  sizeMax: (value: {
4246
4136
  readonly [$$PropertyValue]: "width";
4247
4137
  }) => {
@@ -4272,6 +4162,13 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
4272
4162
  }) => {
4273
4163
  backgroundImage: string;
4274
4164
  };
4165
+ tdl: (value: {
4166
+ readonly [$$PropertyValue]: "textDecorationLine";
4167
+ }) => {
4168
+ textDecorationLine: {
4169
+ readonly [$$PropertyValue]: "textDecorationLine";
4170
+ };
4171
+ };
4275
4172
  textGradient: (value: {
4276
4173
  readonly [$$PropertyValue]: "backgroundImage";
4277
4174
  }) => {
@@ -5100,6 +4997,22 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
5100
4997
  readonly [$$PropertyValue]: "width";
5101
4998
  };
5102
4999
  };
5000
+ minSize: (value: {
5001
+ readonly [$$PropertyValue]: "width";
5002
+ }) => {
5003
+ minWidth: {
5004
+ readonly [$$PropertyValue]: "width";
5005
+ };
5006
+ minHeight: {
5007
+ readonly [$$PropertyValue]: "width";
5008
+ };
5009
+ width: {
5010
+ readonly [$$PropertyValue]: "width";
5011
+ };
5012
+ height: {
5013
+ readonly [$$PropertyValue]: "width";
5014
+ };
5015
+ };
5103
5016
  sizeMin: (value: {
5104
5017
  readonly [$$PropertyValue]: "width";
5105
5018
  }) => {
@@ -5116,6 +5029,16 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
5116
5029
  readonly [$$PropertyValue]: "width";
5117
5030
  };
5118
5031
  };
5032
+ maxSize: (value: {
5033
+ readonly [$$PropertyValue]: "width";
5034
+ }) => {
5035
+ maxWidth: {
5036
+ readonly [$$PropertyValue]: "width";
5037
+ };
5038
+ maxHeight: {
5039
+ readonly [$$PropertyValue]: "width";
5040
+ };
5041
+ };
5119
5042
  sizeMax: (value: {
5120
5043
  readonly [$$PropertyValue]: "width";
5121
5044
  }) => {
@@ -5146,6 +5069,13 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
5146
5069
  }) => {
5147
5070
  backgroundImage: string;
5148
5071
  };
5072
+ tdl: (value: {
5073
+ readonly [$$PropertyValue]: "textDecorationLine";
5074
+ }) => {
5075
+ textDecorationLine: {
5076
+ readonly [$$PropertyValue]: "textDecorationLine";
5077
+ };
5078
+ };
5149
5079
  textGradient: (value: {
5150
5080
  readonly [$$PropertyValue]: "backgroundImage";
5151
5081
  }) => {
@@ -5153,7 +5083,8 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
5153
5083
  WebkitBackgroundClip: string;
5154
5084
  WebkitTextFillColor: string;
5155
5085
  };
5156
- }>; })[]) => () => string, keyframes: (style: {
5086
+ }>; })[]) => () => string;
5087
+ export declare const keyframes: (style: {
5157
5088
  [offset: string]: import("@stitches/react/types/css-util").CSS<{
5158
5089
  xs: string;
5159
5090
  sm: string;
@@ -5974,6 +5905,22 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
5974
5905
  readonly [$$PropertyValue]: "width";
5975
5906
  };
5976
5907
  };
5908
+ minSize: (value: {
5909
+ readonly [$$PropertyValue]: "width";
5910
+ }) => {
5911
+ minWidth: {
5912
+ readonly [$$PropertyValue]: "width";
5913
+ };
5914
+ minHeight: {
5915
+ readonly [$$PropertyValue]: "width";
5916
+ };
5917
+ width: {
5918
+ readonly [$$PropertyValue]: "width";
5919
+ };
5920
+ height: {
5921
+ readonly [$$PropertyValue]: "width";
5922
+ };
5923
+ };
5977
5924
  sizeMin: (value: {
5978
5925
  readonly [$$PropertyValue]: "width";
5979
5926
  }) => {
@@ -5990,6 +5937,16 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
5990
5937
  readonly [$$PropertyValue]: "width";
5991
5938
  };
5992
5939
  };
5940
+ maxSize: (value: {
5941
+ readonly [$$PropertyValue]: "width";
5942
+ }) => {
5943
+ maxWidth: {
5944
+ readonly [$$PropertyValue]: "width";
5945
+ };
5946
+ maxHeight: {
5947
+ readonly [$$PropertyValue]: "width";
5948
+ };
5949
+ };
5993
5950
  sizeMax: (value: {
5994
5951
  readonly [$$PropertyValue]: "width";
5995
5952
  }) => {
@@ -6020,6 +5977,13 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
6020
5977
  }) => {
6021
5978
  backgroundImage: string;
6022
5979
  };
5980
+ tdl: (value: {
5981
+ readonly [$$PropertyValue]: "textDecorationLine";
5982
+ }) => {
5983
+ textDecorationLine: {
5984
+ readonly [$$PropertyValue]: "textDecorationLine";
5985
+ };
5986
+ };
6023
5987
  textGradient: (value: {
6024
5988
  readonly [$$PropertyValue]: "backgroundImage";
6025
5989
  }) => {
@@ -6031,7 +5995,248 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
6031
5995
  }) => {
6032
5996
  (): string;
6033
5997
  name: string;
6034
- }, config: {
5998
+ };
5999
+ export declare const getCssText: () => string;
6000
+ export declare const theme: string & {
6001
+ className: string;
6002
+ selector: string;
6003
+ } & {
6004
+ shadows: {
6005
+ xs: import("@stitches/react/types/theme").Token<"xs", string, "shadows", string>;
6006
+ sm: import("@stitches/react/types/theme").Token<"sm", string, "shadows", string>;
6007
+ md: import("@stitches/react/types/theme").Token<"md", string, "shadows", string>;
6008
+ lg: import("@stitches/react/types/theme").Token<"lg", string, "shadows", string>;
6009
+ xl: import("@stitches/react/types/theme").Token<"xl", string, "shadows", string>;
6010
+ };
6011
+ colors: {
6012
+ accents1: import("@stitches/react/types/theme").Token<"accents1", string, "colors", string>;
6013
+ accents2: import("@stitches/react/types/theme").Token<"accents2", string, "colors", string>;
6014
+ accents3: import("@stitches/react/types/theme").Token<"accents3", string, "colors", string>;
6015
+ accents4: import("@stitches/react/types/theme").Token<"accents4", string, "colors", string>;
6016
+ accents5: import("@stitches/react/types/theme").Token<"accents5", string, "colors", string>;
6017
+ accents6: import("@stitches/react/types/theme").Token<"accents6", string, "colors", string>;
6018
+ accents7: import("@stitches/react/types/theme").Token<"accents7", string, "colors", string>;
6019
+ accents8: import("@stitches/react/types/theme").Token<"accents8", string, "colors", string>;
6020
+ accents9: import("@stitches/react/types/theme").Token<"accents9", string, "colors", string>;
6021
+ text: import("@stitches/react/types/theme").Token<"text", string, "colors", string>;
6022
+ background: import("@stitches/react/types/theme").Token<"background", string, "colors", string>;
6023
+ foreground: import("@stitches/react/types/theme").Token<"foreground", string, "colors", string>;
6024
+ codeLight: import("@stitches/react/types/theme").Token<"codeLight", string, "colors", string>;
6025
+ code: import("@stitches/react/types/theme").Token<"code", string, "colors", string>;
6026
+ border: import("@stitches/react/types/theme").Token<"border", string, "colors", string>;
6027
+ selection: import("@stitches/react/types/theme").Token<"selection", string, "colors", string>;
6028
+ white: import("@stitches/react/types/theme").Token<"white", string, "colors", string>;
6029
+ black: import("@stitches/react/types/theme").Token<"black", string, "colors", string>;
6030
+ blue100: import("@stitches/react/types/theme").Token<"blue100", string, "colors", string>;
6031
+ blue200: import("@stitches/react/types/theme").Token<"blue200", string, "colors", string>;
6032
+ blue300: import("@stitches/react/types/theme").Token<"blue300", string, "colors", string>;
6033
+ blue400: import("@stitches/react/types/theme").Token<"blue400", string, "colors", string>;
6034
+ blue500: import("@stitches/react/types/theme").Token<"blue500", string, "colors", string>;
6035
+ blue600: import("@stitches/react/types/theme").Token<"blue600", string, "colors", string>;
6036
+ blue700: import("@stitches/react/types/theme").Token<"blue700", string, "colors", string>;
6037
+ blue800: import("@stitches/react/types/theme").Token<"blue800", string, "colors", string>;
6038
+ blue900: import("@stitches/react/types/theme").Token<"blue900", string, "colors", string>;
6039
+ purple100: import("@stitches/react/types/theme").Token<"purple100", string, "colors", string>;
6040
+ purple200: import("@stitches/react/types/theme").Token<"purple200", string, "colors", string>;
6041
+ purple300: import("@stitches/react/types/theme").Token<"purple300", string, "colors", string>;
6042
+ purple400: import("@stitches/react/types/theme").Token<"purple400", string, "colors", string>;
6043
+ purple500: import("@stitches/react/types/theme").Token<"purple500", string, "colors", string>;
6044
+ purple600: import("@stitches/react/types/theme").Token<"purple600", string, "colors", string>;
6045
+ purple700: import("@stitches/react/types/theme").Token<"purple700", string, "colors", string>;
6046
+ purple800: import("@stitches/react/types/theme").Token<"purple800", string, "colors", string>;
6047
+ purple900: import("@stitches/react/types/theme").Token<"purple900", string, "colors", string>;
6048
+ green100: import("@stitches/react/types/theme").Token<"green100", string, "colors", string>;
6049
+ green200: import("@stitches/react/types/theme").Token<"green200", string, "colors", string>;
6050
+ green300: import("@stitches/react/types/theme").Token<"green300", string, "colors", string>;
6051
+ green400: import("@stitches/react/types/theme").Token<"green400", string, "colors", string>;
6052
+ green500: import("@stitches/react/types/theme").Token<"green500", string, "colors", string>;
6053
+ green600: import("@stitches/react/types/theme").Token<"green600", string, "colors", string>;
6054
+ green700: import("@stitches/react/types/theme").Token<"green700", string, "colors", string>;
6055
+ green800: import("@stitches/react/types/theme").Token<"green800", string, "colors", string>;
6056
+ green900: import("@stitches/react/types/theme").Token<"green900", string, "colors", string>;
6057
+ yellow100: import("@stitches/react/types/theme").Token<"yellow100", string, "colors", string>;
6058
+ yellow200: import("@stitches/react/types/theme").Token<"yellow200", string, "colors", string>;
6059
+ yellow300: import("@stitches/react/types/theme").Token<"yellow300", string, "colors", string>;
6060
+ yellow400: import("@stitches/react/types/theme").Token<"yellow400", string, "colors", string>;
6061
+ yellow500: import("@stitches/react/types/theme").Token<"yellow500", string, "colors", string>;
6062
+ yellow600: import("@stitches/react/types/theme").Token<"yellow600", string, "colors", string>;
6063
+ yellow700: import("@stitches/react/types/theme").Token<"yellow700", string, "colors", string>;
6064
+ yellow800: import("@stitches/react/types/theme").Token<"yellow800", string, "colors", string>;
6065
+ yellow900: import("@stitches/react/types/theme").Token<"yellow900", string, "colors", string>;
6066
+ red100: import("@stitches/react/types/theme").Token<"red100", string, "colors", string>;
6067
+ red200: import("@stitches/react/types/theme").Token<"red200", string, "colors", string>;
6068
+ red300: import("@stitches/react/types/theme").Token<"red300", string, "colors", string>;
6069
+ red400: import("@stitches/react/types/theme").Token<"red400", string, "colors", string>;
6070
+ red500: import("@stitches/react/types/theme").Token<"red500", string, "colors", string>;
6071
+ red600: import("@stitches/react/types/theme").Token<"red600", string, "colors", string>;
6072
+ red700: import("@stitches/react/types/theme").Token<"red700", string, "colors", string>;
6073
+ red800: import("@stitches/react/types/theme").Token<"red800", string, "colors", string>;
6074
+ red900: import("@stitches/react/types/theme").Token<"red900", string, "colors", string>;
6075
+ cyan100: import("@stitches/react/types/theme").Token<"cyan100", string, "colors", string>;
6076
+ cyan200: import("@stitches/react/types/theme").Token<"cyan200", string, "colors", string>;
6077
+ cyan300: import("@stitches/react/types/theme").Token<"cyan300", string, "colors", string>;
6078
+ cyan400: import("@stitches/react/types/theme").Token<"cyan400", string, "colors", string>;
6079
+ cyan500: import("@stitches/react/types/theme").Token<"cyan500", string, "colors", string>;
6080
+ cyan600: import("@stitches/react/types/theme").Token<"cyan600", string, "colors", string>;
6081
+ cyan700: import("@stitches/react/types/theme").Token<"cyan700", string, "colors", string>;
6082
+ cyan800: import("@stitches/react/types/theme").Token<"cyan800", string, "colors", string>;
6083
+ cyan900: import("@stitches/react/types/theme").Token<"cyan900", string, "colors", string>;
6084
+ pink100: import("@stitches/react/types/theme").Token<"pink100", string, "colors", string>;
6085
+ pink200: import("@stitches/react/types/theme").Token<"pink200", string, "colors", string>;
6086
+ pink300: import("@stitches/react/types/theme").Token<"pink300", string, "colors", string>;
6087
+ pink400: import("@stitches/react/types/theme").Token<"pink400", string, "colors", string>;
6088
+ pink500: import("@stitches/react/types/theme").Token<"pink500", string, "colors", string>;
6089
+ pink600: import("@stitches/react/types/theme").Token<"pink600", string, "colors", string>;
6090
+ pink700: import("@stitches/react/types/theme").Token<"pink700", string, "colors", string>;
6091
+ pink800: import("@stitches/react/types/theme").Token<"pink800", string, "colors", string>;
6092
+ pink900: import("@stitches/react/types/theme").Token<"pink900", string, "colors", string>;
6093
+ gray100: import("@stitches/react/types/theme").Token<"gray100", string, "colors", string>;
6094
+ gray200: import("@stitches/react/types/theme").Token<"gray200", string, "colors", string>;
6095
+ gray300: import("@stitches/react/types/theme").Token<"gray300", string, "colors", string>;
6096
+ gray400: import("@stitches/react/types/theme").Token<"gray400", string, "colors", string>;
6097
+ gray500: import("@stitches/react/types/theme").Token<"gray500", string, "colors", string>;
6098
+ gray600: import("@stitches/react/types/theme").Token<"gray600", string, "colors", string>;
6099
+ gray700: import("@stitches/react/types/theme").Token<"gray700", string, "colors", string>;
6100
+ gray800: import("@stitches/react/types/theme").Token<"gray800", string, "colors", string>;
6101
+ gray900: import("@stitches/react/types/theme").Token<"gray900", string, "colors", string>;
6102
+ primaryLight: import("@stitches/react/types/theme").Token<"primaryLight", string, "colors", string>;
6103
+ primary: import("@stitches/react/types/theme").Token<"primary", string, "colors", string>;
6104
+ primaryDark: import("@stitches/react/types/theme").Token<"primaryDark", string, "colors", string>;
6105
+ secondaryLight: import("@stitches/react/types/theme").Token<"secondaryLight", string, "colors", string>;
6106
+ secondary: import("@stitches/react/types/theme").Token<"secondary", string, "colors", string>;
6107
+ secondaryDark: import("@stitches/react/types/theme").Token<"secondaryDark", string, "colors", string>;
6108
+ successLight: import("@stitches/react/types/theme").Token<"successLight", string, "colors", string>;
6109
+ success: import("@stitches/react/types/theme").Token<"success", string, "colors", string>;
6110
+ successDark: import("@stitches/react/types/theme").Token<"successDark", string, "colors", string>;
6111
+ warningLight: import("@stitches/react/types/theme").Token<"warningLight", string, "colors", string>;
6112
+ warning: import("@stitches/react/types/theme").Token<"warning", string, "colors", string>;
6113
+ warningDark: import("@stitches/react/types/theme").Token<"warningDark", string, "colors", string>;
6114
+ errorLight: import("@stitches/react/types/theme").Token<"errorLight", string, "colors", string>;
6115
+ error: import("@stitches/react/types/theme").Token<"error", string, "colors", string>;
6116
+ errorDark: import("@stitches/react/types/theme").Token<"errorDark", string, "colors", string>;
6117
+ gradient: import("@stitches/react/types/theme").Token<"gradient", string, "colors", string>;
6118
+ link: import("@stitches/react/types/theme").Token<"link", string, "colors", string>;
6119
+ };
6120
+ fonts: {
6121
+ sans: import("@stitches/react/types/theme").Token<"sans", string, "fonts", string>;
6122
+ mono: import("@stitches/react/types/theme").Token<"mono", string, "fonts", string>;
6123
+ };
6124
+ fontSizes: {
6125
+ tiny: import("@stitches/react/types/theme").Token<"tiny", string, "fontSizes", string>;
6126
+ xs: import("@stitches/react/types/theme").Token<"xs", string, "fontSizes", string>;
6127
+ base: import("@stitches/react/types/theme").Token<"base", string, "fontSizes", string>;
6128
+ sm: import("@stitches/react/types/theme").Token<"sm", string, "fontSizes", string>;
6129
+ md: import("@stitches/react/types/theme").Token<"md", string, "fontSizes", string>;
6130
+ lg: import("@stitches/react/types/theme").Token<"lg", string, "fontSizes", string>;
6131
+ xl: import("@stitches/react/types/theme").Token<"xl", string, "fontSizes", string>;
6132
+ };
6133
+ fontWeights: {
6134
+ hairline: import("@stitches/react/types/theme").Token<"hairline", string, "fontWeights", string>;
6135
+ thin: import("@stitches/react/types/theme").Token<"thin", string, "fontWeights", string>;
6136
+ light: import("@stitches/react/types/theme").Token<"light", string, "fontWeights", string>;
6137
+ normal: import("@stitches/react/types/theme").Token<"normal", string, "fontWeights", string>;
6138
+ medium: import("@stitches/react/types/theme").Token<"medium", string, "fontWeights", string>;
6139
+ semibold: import("@stitches/react/types/theme").Token<"semibold", string, "fontWeights", string>;
6140
+ bold: import("@stitches/react/types/theme").Token<"bold", string, "fontWeights", string>;
6141
+ extrabold: import("@stitches/react/types/theme").Token<"extrabold", string, "fontWeights", string>;
6142
+ black: import("@stitches/react/types/theme").Token<"black", string, "fontWeights", string>;
6143
+ };
6144
+ lineHeights: {
6145
+ xs: import("@stitches/react/types/theme").Token<"xs", string, "lineHeights", string>;
6146
+ sm: import("@stitches/react/types/theme").Token<"sm", string, "lineHeights", string>;
6147
+ md: import("@stitches/react/types/theme").Token<"md", string, "lineHeights", string>;
6148
+ lg: import("@stitches/react/types/theme").Token<"lg", string, "lineHeights", string>;
6149
+ xl: import("@stitches/react/types/theme").Token<"xl", string, "lineHeights", string>;
6150
+ };
6151
+ letterSpacings: {
6152
+ tighter: import("@stitches/react/types/theme").Token<"tighter", string, "letterSpacings", string>;
6153
+ tight: import("@stitches/react/types/theme").Token<"tight", string, "letterSpacings", string>;
6154
+ normal: import("@stitches/react/types/theme").Token<"normal", string, "letterSpacings", string>;
6155
+ wide: import("@stitches/react/types/theme").Token<"wide", string, "letterSpacings", string>;
6156
+ wider: import("@stitches/react/types/theme").Token<"wider", string, "letterSpacings", string>;
6157
+ widest: import("@stitches/react/types/theme").Token<"widest", string, "letterSpacings", string>;
6158
+ };
6159
+ space: {
6160
+ 0: import("@stitches/react/types/theme").Token<"0", string, "space", string>;
6161
+ xs: import("@stitches/react/types/theme").Token<"xs", string, "space", string>;
6162
+ sm: import("@stitches/react/types/theme").Token<"sm", string, "space", string>;
6163
+ md: import("@stitches/react/types/theme").Token<"md", string, "space", string>;
6164
+ lg: import("@stitches/react/types/theme").Token<"lg", string, "space", string>;
6165
+ xl: import("@stitches/react/types/theme").Token<"xl", string, "space", string>;
6166
+ px: import("@stitches/react/types/theme").Token<"px", string, "space", string>;
6167
+ 1: import("@stitches/react/types/theme").Token<"1", string, "space", string>;
6168
+ 2: import("@stitches/react/types/theme").Token<"2", string, "space", string>;
6169
+ 3: import("@stitches/react/types/theme").Token<"3", string, "space", string>;
6170
+ 4: import("@stitches/react/types/theme").Token<"4", string, "space", string>;
6171
+ 5: import("@stitches/react/types/theme").Token<"5", string, "space", string>;
6172
+ 6: import("@stitches/react/types/theme").Token<"6", string, "space", string>;
6173
+ 7: import("@stitches/react/types/theme").Token<"7", string, "space", string>;
6174
+ 8: import("@stitches/react/types/theme").Token<"8", string, "space", string>;
6175
+ 9: import("@stitches/react/types/theme").Token<"9", string, "space", string>;
6176
+ 10: import("@stitches/react/types/theme").Token<"10", string, "space", string>;
6177
+ 11: import("@stitches/react/types/theme").Token<"11", string, "space", string>;
6178
+ 12: import("@stitches/react/types/theme").Token<"12", string, "space", string>;
6179
+ 13: import("@stitches/react/types/theme").Token<"13", string, "space", string>;
6180
+ 14: import("@stitches/react/types/theme").Token<"14", string, "space", string>;
6181
+ 15: import("@stitches/react/types/theme").Token<"15", string, "space", string>;
6182
+ 16: import("@stitches/react/types/theme").Token<"16", string, "space", string>;
6183
+ 17: import("@stitches/react/types/theme").Token<"17", string, "space", string>;
6184
+ 18: import("@stitches/react/types/theme").Token<"18", string, "space", string>;
6185
+ 20: import("@stitches/react/types/theme").Token<"20", string, "space", string>;
6186
+ 24: import("@stitches/react/types/theme").Token<"24", string, "space", string>;
6187
+ 28: import("@stitches/react/types/theme").Token<"28", string, "space", string>;
6188
+ 32: import("@stitches/react/types/theme").Token<"32", string, "space", string>;
6189
+ 36: import("@stitches/react/types/theme").Token<"36", string, "space", string>;
6190
+ 40: import("@stitches/react/types/theme").Token<"40", string, "space", string>;
6191
+ 44: import("@stitches/react/types/theme").Token<"44", string, "space", string>;
6192
+ 48: import("@stitches/react/types/theme").Token<"48", string, "space", string>;
6193
+ 52: import("@stitches/react/types/theme").Token<"52", string, "space", string>;
6194
+ 56: import("@stitches/react/types/theme").Token<"56", string, "space", string>;
6195
+ 60: import("@stitches/react/types/theme").Token<"60", string, "space", string>;
6196
+ 64: import("@stitches/react/types/theme").Token<"64", string, "space", string>;
6197
+ 72: import("@stitches/react/types/theme").Token<"72", string, "space", string>;
6198
+ 80: import("@stitches/react/types/theme").Token<"80", string, "space", string>;
6199
+ 96: import("@stitches/react/types/theme").Token<"96", string, "space", string>;
6200
+ };
6201
+ radii: {
6202
+ xs: import("@stitches/react/types/theme").Token<"xs", string, "radii", string>;
6203
+ sm: import("@stitches/react/types/theme").Token<"sm", string, "radii", string>;
6204
+ md: import("@stitches/react/types/theme").Token<"md", string, "radii", string>;
6205
+ base: import("@stitches/react/types/theme").Token<"base", string, "radii", string>;
6206
+ lg: import("@stitches/react/types/theme").Token<"lg", string, "radii", string>;
6207
+ xl: import("@stitches/react/types/theme").Token<"xl", string, "radii", string>;
6208
+ squared: import("@stitches/react/types/theme").Token<"squared", string, "radii", string>;
6209
+ rounded: import("@stitches/react/types/theme").Token<"rounded", string, "radii", string>;
6210
+ pill: import("@stitches/react/types/theme").Token<"pill", string, "radii", string>;
6211
+ };
6212
+ zIndices: {
6213
+ 1: import("@stitches/react/types/theme").Token<"1", string, "zIndices", string>;
6214
+ 2: import("@stitches/react/types/theme").Token<"2", string, "zIndices", string>;
6215
+ 3: import("@stitches/react/types/theme").Token<"3", string, "zIndices", string>;
6216
+ 4: import("@stitches/react/types/theme").Token<"4", string, "zIndices", string>;
6217
+ 5: import("@stitches/react/types/theme").Token<"5", string, "zIndices", string>;
6218
+ 10: import("@stitches/react/types/theme").Token<"10", string, "zIndices", string>;
6219
+ max: import("@stitches/react/types/theme").Token<"max", string, "zIndices", string>;
6220
+ };
6221
+ borderWeights: {
6222
+ light: import("@stitches/react/types/theme").Token<"light", string, "borderWeights", string>;
6223
+ normal: import("@stitches/react/types/theme").Token<"normal", string, "borderWeights", string>;
6224
+ bold: import("@stitches/react/types/theme").Token<"bold", string, "borderWeights", string>;
6225
+ extrabold: import("@stitches/react/types/theme").Token<"extrabold", string, "borderWeights", string>;
6226
+ black: import("@stitches/react/types/theme").Token<"black", string, "borderWeights", string>;
6227
+ };
6228
+ transitions: {
6229
+ default: import("@stitches/react/types/theme").Token<"default", string, "transitions", string>;
6230
+ };
6231
+ breakpoints: {
6232
+ xs: import("@stitches/react/types/theme").Token<"xs", string, "breakpoints", string>;
6233
+ sm: import("@stitches/react/types/theme").Token<"sm", string, "breakpoints", string>;
6234
+ md: import("@stitches/react/types/theme").Token<"md", string, "breakpoints", string>;
6235
+ lg: import("@stitches/react/types/theme").Token<"lg", string, "breakpoints", string>;
6236
+ xl: import("@stitches/react/types/theme").Token<"xl", string, "breakpoints", string>;
6237
+ };
6238
+ };
6239
+ export declare const config: {
6035
6240
  prefix: string;
6036
6241
  media: {
6037
6242
  xs: string;
@@ -6856,6 +7061,22 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
6856
7061
  readonly [$$PropertyValue]: "width";
6857
7062
  };
6858
7063
  };
7064
+ minSize: (value: {
7065
+ readonly [$$PropertyValue]: "width";
7066
+ }) => {
7067
+ minWidth: {
7068
+ readonly [$$PropertyValue]: "width";
7069
+ };
7070
+ minHeight: {
7071
+ readonly [$$PropertyValue]: "width";
7072
+ };
7073
+ width: {
7074
+ readonly [$$PropertyValue]: "width";
7075
+ };
7076
+ height: {
7077
+ readonly [$$PropertyValue]: "width";
7078
+ };
7079
+ };
6859
7080
  sizeMin: (value: {
6860
7081
  readonly [$$PropertyValue]: "width";
6861
7082
  }) => {
@@ -6872,6 +7093,16 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
6872
7093
  readonly [$$PropertyValue]: "width";
6873
7094
  };
6874
7095
  };
7096
+ maxSize: (value: {
7097
+ readonly [$$PropertyValue]: "width";
7098
+ }) => {
7099
+ maxWidth: {
7100
+ readonly [$$PropertyValue]: "width";
7101
+ };
7102
+ maxHeight: {
7103
+ readonly [$$PropertyValue]: "width";
7104
+ };
7105
+ };
6875
7106
  sizeMax: (value: {
6876
7107
  readonly [$$PropertyValue]: "width";
6877
7108
  }) => {
@@ -6902,6 +7133,13 @@ export declare const styled: <Type extends keyof JSX.IntrinsicElements | import(
6902
7133
  }) => {
6903
7134
  backgroundImage: string;
6904
7135
  };
7136
+ tdl: (value: {
7137
+ readonly [$$PropertyValue]: "textDecorationLine";
7138
+ }) => {
7139
+ textDecorationLine: {
7140
+ readonly [$$PropertyValue]: "textDecorationLine";
7141
+ };
7142
+ };
6905
7143
  textGradient: (value: {
6906
7144
  readonly [$$PropertyValue]: "backgroundImage";
6907
7145
  }) => {
@@ -7747,6 +7985,22 @@ export declare const sharedFocus: import("@stitches/react/types/styled-component
7747
7985
  readonly [$$PropertyValue]: "width";
7748
7986
  };
7749
7987
  };
7988
+ minSize: (value: {
7989
+ readonly [$$PropertyValue]: "width";
7990
+ }) => {
7991
+ minWidth: {
7992
+ readonly [$$PropertyValue]: "width";
7993
+ };
7994
+ minHeight: {
7995
+ readonly [$$PropertyValue]: "width";
7996
+ };
7997
+ width: {
7998
+ readonly [$$PropertyValue]: "width";
7999
+ };
8000
+ height: {
8001
+ readonly [$$PropertyValue]: "width";
8002
+ };
8003
+ };
7750
8004
  sizeMin: (value: {
7751
8005
  readonly [$$PropertyValue]: "width";
7752
8006
  }) => {
@@ -7763,6 +8017,16 @@ export declare const sharedFocus: import("@stitches/react/types/styled-component
7763
8017
  readonly [$$PropertyValue]: "width";
7764
8018
  };
7765
8019
  };
8020
+ maxSize: (value: {
8021
+ readonly [$$PropertyValue]: "width";
8022
+ }) => {
8023
+ maxWidth: {
8024
+ readonly [$$PropertyValue]: "width";
8025
+ };
8026
+ maxHeight: {
8027
+ readonly [$$PropertyValue]: "width";
8028
+ };
8029
+ };
7766
8030
  sizeMax: (value: {
7767
8031
  readonly [$$PropertyValue]: "width";
7768
8032
  }) => {
@@ -7793,6 +8057,13 @@ export declare const sharedFocus: import("@stitches/react/types/styled-component
7793
8057
  }) => {
7794
8058
  backgroundImage: string;
7795
8059
  };
8060
+ tdl: (value: {
8061
+ readonly [$$PropertyValue]: "textDecorationLine";
8062
+ }) => {
8063
+ textDecorationLine: {
8064
+ readonly [$$PropertyValue]: "textDecorationLine";
8065
+ };
8066
+ };
7796
8067
  textGradient: (value: {
7797
8068
  readonly [$$PropertyValue]: "backgroundImage";
7798
8069
  }) => {
@@ -8637,6 +8908,22 @@ export declare const sharedVisuallyHidden: import("@stitches/react/types/styled-
8637
8908
  readonly [$$PropertyValue]: "width";
8638
8909
  };
8639
8910
  };
8911
+ minSize: (value: {
8912
+ readonly [$$PropertyValue]: "width";
8913
+ }) => {
8914
+ minWidth: {
8915
+ readonly [$$PropertyValue]: "width";
8916
+ };
8917
+ minHeight: {
8918
+ readonly [$$PropertyValue]: "width";
8919
+ };
8920
+ width: {
8921
+ readonly [$$PropertyValue]: "width";
8922
+ };
8923
+ height: {
8924
+ readonly [$$PropertyValue]: "width";
8925
+ };
8926
+ };
8640
8927
  sizeMin: (value: {
8641
8928
  readonly [$$PropertyValue]: "width";
8642
8929
  }) => {
@@ -8653,6 +8940,16 @@ export declare const sharedVisuallyHidden: import("@stitches/react/types/styled-
8653
8940
  readonly [$$PropertyValue]: "width";
8654
8941
  };
8655
8942
  };
8943
+ maxSize: (value: {
8944
+ readonly [$$PropertyValue]: "width";
8945
+ }) => {
8946
+ maxWidth: {
8947
+ readonly [$$PropertyValue]: "width";
8948
+ };
8949
+ maxHeight: {
8950
+ readonly [$$PropertyValue]: "width";
8951
+ };
8952
+ };
8656
8953
  sizeMax: (value: {
8657
8954
  readonly [$$PropertyValue]: "width";
8658
8955
  }) => {
@@ -8683,6 +8980,13 @@ export declare const sharedVisuallyHidden: import("@stitches/react/types/styled-
8683
8980
  }) => {
8684
8981
  backgroundImage: string;
8685
8982
  };
8983
+ tdl: (value: {
8984
+ readonly [$$PropertyValue]: "textDecorationLine";
8985
+ }) => {
8986
+ textDecorationLine: {
8987
+ readonly [$$PropertyValue]: "textDecorationLine";
8988
+ };
8989
+ };
8686
8990
  textGradient: (value: {
8687
8991
  readonly [$$PropertyValue]: "backgroundImage";
8688
8992
  }) => {
@@ -8691,7 +8995,7 @@ export declare const sharedVisuallyHidden: import("@stitches/react/types/styled-
8691
8995
  WebkitTextFillColor: string;
8692
8996
  };
8693
8997
  }>>;
8694
- export declare const createTheme: ({ type, theme }: Theme) => string & {
8998
+ export declare const createTheme: ({ type, theme, className }: Theme) => string & {
8695
8999
  className: string;
8696
9000
  selector: string;
8697
9001
  } & import("@stitches/react/types/stitches").ThemeTokens<any, string>;