@livepeer/design-system 0.0.0-beta.8 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. package/LICENSE +7 -0
  2. package/README.md +6 -2
  3. package/dist/components/Accordion.d.ts +1512 -0
  4. package/dist/components/Alert.d.ts +752 -0
  5. package/dist/components/AlertDialog.d.ts +9 -7
  6. package/dist/components/AppBar.d.ts +755 -0
  7. package/dist/components/Avatar.d.ts +2270 -0
  8. package/dist/components/Badge.d.ts +147 -385
  9. package/dist/components/Banner.d.ts +754 -1
  10. package/dist/components/Box.d.ts +749 -0
  11. package/dist/components/Button.d.ts +753 -1
  12. package/dist/components/Card.d.ts +147 -385
  13. package/dist/components/Checkbox.d.ts +761 -0
  14. package/dist/components/Code.d.ts +751 -0
  15. package/dist/components/Container.d.ts +147 -385
  16. package/dist/components/ContextMenu.d.ts +3766 -0
  17. package/dist/components/ControlGroup.d.ts +749 -0
  18. package/dist/components/DesignSystemProvider.d.ts +9 -0
  19. package/dist/components/Dialog.d.ts +9 -3
  20. package/dist/components/DropdownMenu.d.ts +6016 -3
  21. package/dist/components/Flex.d.ts +755 -0
  22. package/dist/components/Grid.d.ts +757 -0
  23. package/dist/components/Heading.d.ts +14 -0
  24. package/dist/components/IconButton.d.ts +753 -0
  25. package/dist/components/Image.d.ts +749 -0
  26. package/dist/components/Kbd.d.ts +752 -0
  27. package/dist/components/Label.d.ts +755 -1
  28. package/dist/components/Link.d.ts +148 -386
  29. package/dist/components/Menu.d.ts +10498 -0
  30. package/dist/components/Overlay.d.ts +1498 -0
  31. package/dist/components/Panel.d.ts +1498 -0
  32. package/dist/components/Paragraph.d.ts +14 -0
  33. package/dist/components/Popover.d.ts +13 -0
  34. package/dist/components/ProgressBar.d.ts +761 -0
  35. package/dist/components/Promo.d.ts +754 -1
  36. package/dist/components/Radio.d.ts +1510 -0
  37. package/dist/components/RadioCard.d.ts +149 -389
  38. package/dist/components/RadioGrid.d.ts +1500 -0
  39. package/dist/components/Scrollbar.d.ts +6 -0
  40. package/dist/components/Section.d.ts +751 -0
  41. package/dist/components/Select.d.ts +1504 -1
  42. package/dist/components/Separator.d.ts +753 -0
  43. package/dist/components/Sheet.d.ts +766 -0
  44. package/dist/components/SimpleToggle.d.ts +753 -0
  45. package/dist/components/Skeleton.d.ts +751 -0
  46. package/dist/components/Slider.d.ts +758 -0
  47. package/dist/components/Snackbar/SnackbarProvider.d.ts +2 -2
  48. package/dist/components/Snackbar/transitionStyles.d.ts +58 -58
  49. package/dist/components/Snackbar/useSnackbar.d.ts +1 -1
  50. package/dist/components/Status.d.ts +752 -0
  51. package/dist/components/Sub.d.ts +749 -0
  52. package/dist/components/Sup.d.ts +749 -0
  53. package/dist/components/Switch.d.ts +1509 -1
  54. package/dist/components/TabLink.d.ts +751 -0
  55. package/dist/components/Table.d.ts +1178 -3082
  56. package/dist/components/Tabs.d.ts +4500 -4
  57. package/dist/components/Text.d.ts +753 -1
  58. package/dist/components/TextArea.d.ts +753 -0
  59. package/dist/components/TextField.d.ts +754 -1
  60. package/dist/components/Tooltip.d.ts +10 -0
  61. package/dist/components/TreeItem.d.ts +751 -0
  62. package/dist/components/VerifiedBadge.d.ts +762 -0
  63. package/dist/custom/AppBar.d.ts +148 -386
  64. package/dist/custom/Avatars.d.ts +1 -0
  65. package/dist/custom/DarkThemeButton.d.ts +1 -0
  66. package/dist/custom/Kbds.d.ts +1 -0
  67. package/dist/custom/Snackbar.d.ts +1 -0
  68. package/dist/custom/Toolbar.d.ts +1 -0
  69. package/dist/index.d.ts +53 -20
  70. package/dist/index.es.js +3787 -1565
  71. package/dist/index.js +3897 -1890
  72. package/dist/stitches.config.d.ts +6320 -23
  73. package/package.json +61 -58
  74. package/dist/components/Accordian.d.ts +0 -4
@@ -0,0 +1,2270 @@
1
+ import React from "react";
2
+ import { VariantProps, CSS } from "../stitches.config";
3
+ import * as AvatarPrimitive from "@radix-ui/react-avatar";
4
+ import { Status } from "./Status";
5
+ declare const StyledAvatar: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<AvatarPrimitive.AvatarProps & React.RefAttributes<HTMLSpanElement>>, {
6
+ size?: number | "1" | "2" | "3" | "4" | "5" | "6" | undefined;
7
+ variant?: "hiContrast" | "gray" | "tomato" | "red" | "crimson" | "pink" | "plum" | "purple" | "violet" | "indigo" | "blue" | "cyan" | "teal" | "green" | "grass" | "brown" | "bronze" | "gold" | "sky" | "mint" | "lime" | "yellow" | "amber" | "orange" | undefined;
8
+ shape?: "circle" | "square" | undefined;
9
+ inactive?: boolean | "true" | undefined;
10
+ interactive?: boolean | "true" | undefined;
11
+ }, {
12
+ bp1: "(min-width: 520px)";
13
+ bp2: "(min-width: 900px)";
14
+ bp3: "(min-width: 1200px)";
15
+ bp4: "(min-width: 1800px)";
16
+ motion: "(prefers-reduced-motion)";
17
+ hover: "(any-hover: hover)";
18
+ dark: "(prefers-color-scheme: dark)";
19
+ light: "(prefers-color-scheme: light)";
20
+ }, import("@stitches/react/types/css-util").CSS<{
21
+ bp1: "(min-width: 520px)";
22
+ bp2: "(min-width: 900px)";
23
+ bp3: "(min-width: 1200px)";
24
+ bp4: "(min-width: 1800px)";
25
+ motion: "(prefers-reduced-motion)";
26
+ hover: "(any-hover: hover)";
27
+ dark: "(prefers-color-scheme: dark)";
28
+ light: "(prefers-color-scheme: light)";
29
+ }, {
30
+ colors: {
31
+ hiContrast: string;
32
+ loContrast: string;
33
+ canvas: string;
34
+ panel: string;
35
+ transparentPanel: string;
36
+ shadowLight: string;
37
+ shadowDark: string;
38
+ blackA1: string;
39
+ blackA2: string;
40
+ blackA3: string;
41
+ blackA4: string;
42
+ blackA5: string;
43
+ blackA6: string;
44
+ blackA7: string;
45
+ blackA8: string;
46
+ blackA9: string;
47
+ blackA10: string;
48
+ blackA11: string;
49
+ blackA12: string;
50
+ whiteA1: string;
51
+ whiteA2: string;
52
+ whiteA3: string;
53
+ whiteA4: string;
54
+ whiteA5: string;
55
+ whiteA6: string;
56
+ whiteA7: string;
57
+ whiteA8: string;
58
+ whiteA9: string;
59
+ whiteA10: string;
60
+ whiteA11: string;
61
+ whiteA12: string;
62
+ gold1: string;
63
+ gold2: string;
64
+ gold3: string;
65
+ gold4: string;
66
+ gold5: string;
67
+ gold6: string;
68
+ gold7: string;
69
+ gold8: string;
70
+ gold9: string;
71
+ gold10: string;
72
+ gold11: string;
73
+ gold12: string;
74
+ bronze1: string;
75
+ bronze2: string;
76
+ bronze3: string;
77
+ bronze4: string;
78
+ bronze5: string;
79
+ bronze6: string;
80
+ bronze7: string;
81
+ bronze8: string;
82
+ bronze9: string;
83
+ bronze10: string;
84
+ bronze11: string;
85
+ bronze12: string;
86
+ brown1: string;
87
+ brown2: string;
88
+ brown3: string;
89
+ brown4: string;
90
+ brown5: string;
91
+ brown6: string;
92
+ brown7: string;
93
+ brown8: string;
94
+ brown9: string;
95
+ brown10: string;
96
+ brown11: string;
97
+ brown12: string;
98
+ orange1: string;
99
+ orange2: string;
100
+ orange3: string;
101
+ orange4: string;
102
+ orange5: string;
103
+ orange6: string;
104
+ orange7: string;
105
+ orange8: string;
106
+ orange9: string;
107
+ orange10: string;
108
+ orange11: string;
109
+ orange12: string;
110
+ amber1: string;
111
+ amber2: string;
112
+ amber3: string;
113
+ amber4: string;
114
+ amber5: string;
115
+ amber6: string;
116
+ amber7: string;
117
+ amber8: string;
118
+ amber9: string;
119
+ amber10: string;
120
+ amber11: string;
121
+ amber12: string;
122
+ yellow1: string;
123
+ yellow2: string;
124
+ yellow3: string;
125
+ yellow4: string;
126
+ yellow5: string;
127
+ yellow6: string;
128
+ yellow7: string;
129
+ yellow8: string;
130
+ yellow9: string;
131
+ yellow10: string;
132
+ yellow11: string;
133
+ yellow12: string;
134
+ lime1: string;
135
+ lime2: string;
136
+ lime3: string;
137
+ lime4: string;
138
+ lime5: string;
139
+ lime6: string;
140
+ lime7: string;
141
+ lime8: string;
142
+ lime9: string;
143
+ lime10: string;
144
+ lime11: string;
145
+ lime12: string;
146
+ grass1: string;
147
+ grass2: string;
148
+ grass3: string;
149
+ grass4: string;
150
+ grass5: string;
151
+ grass6: string;
152
+ grass7: string;
153
+ grass8: string;
154
+ grass9: string;
155
+ grass10: string;
156
+ grass11: string;
157
+ grass12: string;
158
+ green1: string;
159
+ green2: string;
160
+ green3: string;
161
+ green4: string;
162
+ green5: string;
163
+ green6: string;
164
+ green7: string;
165
+ green8: string;
166
+ green9: string;
167
+ green10: string;
168
+ green11: string;
169
+ green12: string;
170
+ teal1: string;
171
+ teal2: string;
172
+ teal3: string;
173
+ teal4: string;
174
+ teal5: string;
175
+ teal6: string;
176
+ teal7: string;
177
+ teal8: string;
178
+ teal9: string;
179
+ teal10: string;
180
+ teal11: string;
181
+ teal12: string;
182
+ cyan1: string;
183
+ cyan2: string;
184
+ cyan3: string;
185
+ cyan4: string;
186
+ cyan5: string;
187
+ cyan6: string;
188
+ cyan7: string;
189
+ cyan8: string;
190
+ cyan9: string;
191
+ cyan10: string;
192
+ cyan11: string;
193
+ cyan12: string;
194
+ mint1: string;
195
+ mint2: string;
196
+ mint3: string;
197
+ mint4: string;
198
+ mint5: string;
199
+ mint6: string;
200
+ mint7: string;
201
+ mint8: string;
202
+ mint9: string;
203
+ mint10: string;
204
+ mint11: string;
205
+ mint12: string;
206
+ sky1: string;
207
+ sky2: string;
208
+ sky3: string;
209
+ sky4: string;
210
+ sky5: string;
211
+ sky6: string;
212
+ sky7: string;
213
+ sky8: string;
214
+ sky9: string;
215
+ sky10: string;
216
+ sky11: string;
217
+ sky12: string;
218
+ blue1: string;
219
+ blue2: string;
220
+ blue3: string;
221
+ blue4: string;
222
+ blue5: string;
223
+ blue6: string;
224
+ blue7: string;
225
+ blue8: string;
226
+ blue9: string;
227
+ blue10: string;
228
+ blue11: string;
229
+ blue12: string;
230
+ indigo1: string;
231
+ indigo2: string;
232
+ indigo3: string;
233
+ indigo4: string;
234
+ indigo5: string;
235
+ indigo6: string;
236
+ indigo7: string;
237
+ indigo8: string;
238
+ indigo9: string;
239
+ indigo10: string;
240
+ indigo11: string;
241
+ indigo12: string;
242
+ violet1: string;
243
+ violet2: string;
244
+ violet3: string;
245
+ violet4: string;
246
+ violet5: string;
247
+ violet6: string;
248
+ violet7: string;
249
+ violet8: string;
250
+ violet9: string;
251
+ violet10: string;
252
+ violet11: string;
253
+ violet12: string;
254
+ purple1: string;
255
+ purple2: string;
256
+ purple3: string;
257
+ purple4: string;
258
+ purple5: string;
259
+ purple6: string;
260
+ purple7: string;
261
+ purple8: string;
262
+ purple9: string;
263
+ purple10: string;
264
+ purple11: string;
265
+ purple12: string;
266
+ plum1: string;
267
+ plum2: string;
268
+ plum3: string;
269
+ plum4: string;
270
+ plum5: string;
271
+ plum6: string;
272
+ plum7: string;
273
+ plum8: string;
274
+ plum9: string;
275
+ plum10: string;
276
+ plum11: string;
277
+ plum12: string;
278
+ pink1: string;
279
+ pink2: string;
280
+ pink3: string;
281
+ pink4: string;
282
+ pink5: string;
283
+ pink6: string;
284
+ pink7: string;
285
+ pink8: string;
286
+ pink9: string;
287
+ pink10: string;
288
+ pink11: string;
289
+ pink12: string;
290
+ crimson1: string;
291
+ crimson2: string;
292
+ crimson3: string;
293
+ crimson4: string;
294
+ crimson5: string;
295
+ crimson6: string;
296
+ crimson7: string;
297
+ crimson8: string;
298
+ crimson9: string;
299
+ crimson10: string;
300
+ crimson11: string;
301
+ crimson12: string;
302
+ red1: string;
303
+ red2: string;
304
+ red3: string;
305
+ red4: string;
306
+ red5: string;
307
+ red6: string;
308
+ red7: string;
309
+ red8: string;
310
+ red9: string;
311
+ red10: string;
312
+ red11: string;
313
+ red12: string;
314
+ tomato1: string;
315
+ tomato2: string;
316
+ tomato3: string;
317
+ tomato4: string;
318
+ tomato5: string;
319
+ tomato6: string;
320
+ tomato7: string;
321
+ tomato8: string;
322
+ tomato9: string;
323
+ tomato10: string;
324
+ tomato11: string;
325
+ tomato12: string;
326
+ sand1: string;
327
+ sand2: string;
328
+ sand3: string;
329
+ sand4: string;
330
+ sand5: string;
331
+ sand6: string;
332
+ sand7: string;
333
+ sand8: string;
334
+ sand9: string;
335
+ sand10: string;
336
+ sand11: string;
337
+ sand12: string;
338
+ olive1: string;
339
+ olive2: string;
340
+ olive3: string;
341
+ olive4: string;
342
+ olive5: string;
343
+ olive6: string;
344
+ olive7: string;
345
+ olive8: string;
346
+ olive9: string;
347
+ olive10: string;
348
+ olive11: string;
349
+ olive12: string;
350
+ sage1: string;
351
+ sage2: string;
352
+ sage3: string;
353
+ sage4: string;
354
+ sage5: string;
355
+ sage6: string;
356
+ sage7: string;
357
+ sage8: string;
358
+ sage9: string;
359
+ sage10: string;
360
+ sage11: string;
361
+ sage12: string;
362
+ slate1: string;
363
+ slate2: string;
364
+ slate3: string;
365
+ slate4: string;
366
+ slate5: string;
367
+ slate6: string;
368
+ slate7: string;
369
+ slate8: string;
370
+ slate9: string;
371
+ slate10: string;
372
+ slate11: string;
373
+ slate12: string;
374
+ mauve1: string;
375
+ mauve2: string;
376
+ mauve3: string;
377
+ mauve4: string;
378
+ mauve5: string;
379
+ mauve6: string;
380
+ mauve7: string;
381
+ mauve8: string;
382
+ mauve9: string;
383
+ mauve10: string;
384
+ mauve11: string;
385
+ mauve12: string;
386
+ gray1: string;
387
+ gray2: string;
388
+ gray3: string;
389
+ gray4: string;
390
+ gray5: string;
391
+ gray6: string;
392
+ gray7: string;
393
+ gray8: string;
394
+ gray9: string;
395
+ gray10: string;
396
+ gray11: string;
397
+ gray12: string;
398
+ };
399
+ fonts: {
400
+ untitled: string;
401
+ mono: string;
402
+ };
403
+ space: {
404
+ 1: string;
405
+ 2: string;
406
+ 3: string;
407
+ 4: string;
408
+ 5: string;
409
+ 6: string;
410
+ 7: string;
411
+ 8: string;
412
+ 9: string;
413
+ };
414
+ sizes: {
415
+ 1: string;
416
+ 2: string;
417
+ 3: string;
418
+ 4: string;
419
+ 5: string;
420
+ 6: string;
421
+ 7: string;
422
+ 8: string;
423
+ 9: string;
424
+ };
425
+ fontSizes: {
426
+ 1: string;
427
+ 2: string;
428
+ 3: string;
429
+ 4: string;
430
+ 5: string;
431
+ 6: string;
432
+ 7: string;
433
+ 8: string;
434
+ 9: string;
435
+ };
436
+ radii: {
437
+ 1: string;
438
+ 2: string;
439
+ 3: string;
440
+ 4: string;
441
+ round: string;
442
+ pill: string;
443
+ };
444
+ zIndices: {
445
+ 1: string;
446
+ 2: string;
447
+ 3: string;
448
+ 4: string;
449
+ max: string;
450
+ };
451
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
452
+ p: (value: {
453
+ readonly [$$PropertyValue]: "padding";
454
+ }) => {
455
+ padding: {
456
+ readonly [$$PropertyValue]: "padding";
457
+ };
458
+ };
459
+ pt: (value: {
460
+ readonly [$$PropertyValue]: "paddingTop";
461
+ }) => {
462
+ paddingTop: {
463
+ readonly [$$PropertyValue]: "paddingTop";
464
+ };
465
+ };
466
+ pr: (value: {
467
+ readonly [$$PropertyValue]: "paddingRight";
468
+ }) => {
469
+ paddingRight: {
470
+ readonly [$$PropertyValue]: "paddingRight";
471
+ };
472
+ };
473
+ pb: (value: {
474
+ readonly [$$PropertyValue]: "paddingBottom";
475
+ }) => {
476
+ paddingBottom: {
477
+ readonly [$$PropertyValue]: "paddingBottom";
478
+ };
479
+ };
480
+ pl: (value: {
481
+ readonly [$$PropertyValue]: "paddingLeft";
482
+ }) => {
483
+ paddingLeft: {
484
+ readonly [$$PropertyValue]: "paddingLeft";
485
+ };
486
+ };
487
+ px: (value: {
488
+ readonly [$$PropertyValue]: "paddingLeft";
489
+ }) => {
490
+ paddingLeft: {
491
+ readonly [$$PropertyValue]: "paddingLeft";
492
+ };
493
+ paddingRight: {
494
+ readonly [$$PropertyValue]: "paddingLeft";
495
+ };
496
+ };
497
+ py: (value: {
498
+ readonly [$$PropertyValue]: "paddingTop";
499
+ }) => {
500
+ paddingTop: {
501
+ readonly [$$PropertyValue]: "paddingTop";
502
+ };
503
+ paddingBottom: {
504
+ readonly [$$PropertyValue]: "paddingTop";
505
+ };
506
+ };
507
+ m: (value: {
508
+ readonly [$$PropertyValue]: "margin";
509
+ }) => {
510
+ margin: {
511
+ readonly [$$PropertyValue]: "margin";
512
+ };
513
+ };
514
+ mt: (value: {
515
+ readonly [$$PropertyValue]: "marginTop";
516
+ }) => {
517
+ marginTop: {
518
+ readonly [$$PropertyValue]: "marginTop";
519
+ };
520
+ };
521
+ mr: (value: {
522
+ readonly [$$PropertyValue]: "marginRight";
523
+ }) => {
524
+ marginRight: {
525
+ readonly [$$PropertyValue]: "marginRight";
526
+ };
527
+ };
528
+ mb: (value: {
529
+ readonly [$$PropertyValue]: "marginBottom";
530
+ }) => {
531
+ marginBottom: {
532
+ readonly [$$PropertyValue]: "marginBottom";
533
+ };
534
+ };
535
+ ml: (value: {
536
+ readonly [$$PropertyValue]: "marginLeft";
537
+ }) => {
538
+ marginLeft: {
539
+ readonly [$$PropertyValue]: "marginLeft";
540
+ };
541
+ };
542
+ mx: (value: {
543
+ readonly [$$PropertyValue]: "marginLeft";
544
+ }) => {
545
+ marginLeft: {
546
+ readonly [$$PropertyValue]: "marginLeft";
547
+ };
548
+ marginRight: {
549
+ readonly [$$PropertyValue]: "marginLeft";
550
+ };
551
+ };
552
+ my: (value: {
553
+ readonly [$$PropertyValue]: "marginTop";
554
+ }) => {
555
+ marginTop: {
556
+ readonly [$$PropertyValue]: "marginTop";
557
+ };
558
+ marginBottom: {
559
+ readonly [$$PropertyValue]: "marginTop";
560
+ };
561
+ };
562
+ ta: (value: {
563
+ readonly [$$PropertyValue]: "textAlign";
564
+ }) => {
565
+ textAlign: {
566
+ readonly [$$PropertyValue]: "textAlign";
567
+ };
568
+ };
569
+ fd: (value: {
570
+ readonly [$$PropertyValue]: "flexDirection";
571
+ }) => {
572
+ flexDirection: {
573
+ readonly [$$PropertyValue]: "flexDirection";
574
+ };
575
+ };
576
+ fw: (value: {
577
+ readonly [$$PropertyValue]: "flexWrap";
578
+ }) => {
579
+ flexWrap: {
580
+ readonly [$$PropertyValue]: "flexWrap";
581
+ };
582
+ };
583
+ ai: (value: {
584
+ readonly [$$PropertyValue]: "alignItems";
585
+ }) => {
586
+ alignItems: {
587
+ readonly [$$PropertyValue]: "alignItems";
588
+ };
589
+ };
590
+ ac: (value: {
591
+ readonly [$$PropertyValue]: "alignContent";
592
+ }) => {
593
+ alignContent: {
594
+ readonly [$$PropertyValue]: "alignContent";
595
+ };
596
+ };
597
+ jc: (value: {
598
+ readonly [$$PropertyValue]: "justifyContent";
599
+ }) => {
600
+ justifyContent: {
601
+ readonly [$$PropertyValue]: "justifyContent";
602
+ };
603
+ };
604
+ as: (value: {
605
+ readonly [$$PropertyValue]: "alignSelf";
606
+ }) => {
607
+ alignSelf: {
608
+ readonly [$$PropertyValue]: "alignSelf";
609
+ };
610
+ };
611
+ fg: (value: {
612
+ readonly [$$PropertyValue]: "flexGrow";
613
+ }) => {
614
+ flexGrow: {
615
+ readonly [$$PropertyValue]: "flexGrow";
616
+ };
617
+ };
618
+ fs: (value: {
619
+ readonly [$$PropertyValue]: "flexShrink";
620
+ }) => {
621
+ flexShrink: {
622
+ readonly [$$PropertyValue]: "flexShrink";
623
+ };
624
+ };
625
+ fb: (value: {
626
+ readonly [$$PropertyValue]: "flexBasis";
627
+ }) => {
628
+ flexBasis: {
629
+ readonly [$$PropertyValue]: "flexBasis";
630
+ };
631
+ };
632
+ bc: (value: {
633
+ readonly [$$PropertyValue]: "backgroundColor";
634
+ }) => {
635
+ backgroundColor: {
636
+ readonly [$$PropertyValue]: "backgroundColor";
637
+ };
638
+ };
639
+ br: (value: {
640
+ readonly [$$PropertyValue]: "borderRadius";
641
+ }) => {
642
+ borderRadius: {
643
+ readonly [$$PropertyValue]: "borderRadius";
644
+ };
645
+ };
646
+ btrr: (value: {
647
+ readonly [$$PropertyValue]: "borderTopRightRadius";
648
+ }) => {
649
+ borderTopRightRadius: {
650
+ readonly [$$PropertyValue]: "borderTopRightRadius";
651
+ };
652
+ };
653
+ bbrr: (value: {
654
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
655
+ }) => {
656
+ borderBottomRightRadius: {
657
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
658
+ };
659
+ };
660
+ bblr: (value: {
661
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
662
+ }) => {
663
+ borderBottomLeftRadius: {
664
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
665
+ };
666
+ };
667
+ btlr: (value: {
668
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
669
+ }) => {
670
+ borderTopLeftRadius: {
671
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
672
+ };
673
+ };
674
+ bs: (value: {
675
+ readonly [$$PropertyValue]: "boxShadow";
676
+ }) => {
677
+ boxShadow: {
678
+ readonly [$$PropertyValue]: "boxShadow";
679
+ };
680
+ };
681
+ lh: (value: {
682
+ readonly [$$PropertyValue]: "lineHeight";
683
+ }) => {
684
+ lineHeight: {
685
+ readonly [$$PropertyValue]: "lineHeight";
686
+ };
687
+ };
688
+ ox: (value: {
689
+ readonly [$$PropertyValue]: "overflowX";
690
+ }) => {
691
+ overflowX: {
692
+ readonly [$$PropertyValue]: "overflowX";
693
+ };
694
+ };
695
+ oy: (value: {
696
+ readonly [$$PropertyValue]: "overflowY";
697
+ }) => {
698
+ overflowY: {
699
+ readonly [$$PropertyValue]: "overflowY";
700
+ };
701
+ };
702
+ pe: (value: {
703
+ readonly [$$PropertyValue]: "pointerEvents";
704
+ }) => {
705
+ pointerEvents: {
706
+ readonly [$$PropertyValue]: "pointerEvents";
707
+ };
708
+ };
709
+ us: (value: {
710
+ readonly [$$PropertyValue]: "userSelect";
711
+ }) => {
712
+ WebkitUserSelect: {
713
+ readonly [$$PropertyValue]: "userSelect";
714
+ };
715
+ userSelect: {
716
+ readonly [$$PropertyValue]: "userSelect";
717
+ };
718
+ };
719
+ userSelect: (value: {
720
+ readonly [$$PropertyValue]: "userSelect";
721
+ }) => {
722
+ WebkitUserSelect: {
723
+ readonly [$$PropertyValue]: "userSelect";
724
+ };
725
+ userSelect: {
726
+ readonly [$$PropertyValue]: "userSelect";
727
+ };
728
+ };
729
+ size: (value: {
730
+ readonly [$$PropertyValue]: "width";
731
+ }) => {
732
+ width: {
733
+ readonly [$$PropertyValue]: "width";
734
+ };
735
+ height: {
736
+ readonly [$$PropertyValue]: "width";
737
+ };
738
+ };
739
+ appearance: (value: {
740
+ readonly [$$PropertyValue]: "appearance";
741
+ }) => {
742
+ WebkitAppearance: {
743
+ readonly [$$PropertyValue]: "appearance";
744
+ };
745
+ appearance: {
746
+ readonly [$$PropertyValue]: "appearance";
747
+ };
748
+ };
749
+ backgroundClip: (value: {
750
+ readonly [$$PropertyValue]: "backgroundClip";
751
+ }) => {
752
+ WebkitBackgroundClip: {
753
+ readonly [$$PropertyValue]: "backgroundClip";
754
+ };
755
+ backgroundClip: {
756
+ readonly [$$PropertyValue]: "backgroundClip";
757
+ };
758
+ };
759
+ }>>;
760
+ export declare const AvatarNestedItem: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
761
+ bp1: "(min-width: 520px)";
762
+ bp2: "(min-width: 900px)";
763
+ bp3: "(min-width: 1200px)";
764
+ bp4: "(min-width: 1800px)";
765
+ motion: "(prefers-reduced-motion)";
766
+ hover: "(any-hover: hover)";
767
+ dark: "(prefers-color-scheme: dark)";
768
+ light: "(prefers-color-scheme: light)";
769
+ }, import("@stitches/react/types/css-util").CSS<{
770
+ bp1: "(min-width: 520px)";
771
+ bp2: "(min-width: 900px)";
772
+ bp3: "(min-width: 1200px)";
773
+ bp4: "(min-width: 1800px)";
774
+ motion: "(prefers-reduced-motion)";
775
+ hover: "(any-hover: hover)";
776
+ dark: "(prefers-color-scheme: dark)";
777
+ light: "(prefers-color-scheme: light)";
778
+ }, {
779
+ colors: {
780
+ hiContrast: string;
781
+ loContrast: string;
782
+ canvas: string;
783
+ panel: string;
784
+ transparentPanel: string;
785
+ shadowLight: string;
786
+ shadowDark: string;
787
+ blackA1: string;
788
+ blackA2: string;
789
+ blackA3: string;
790
+ blackA4: string;
791
+ blackA5: string;
792
+ blackA6: string;
793
+ blackA7: string;
794
+ blackA8: string;
795
+ blackA9: string;
796
+ blackA10: string;
797
+ blackA11: string;
798
+ blackA12: string;
799
+ whiteA1: string;
800
+ whiteA2: string;
801
+ whiteA3: string;
802
+ whiteA4: string;
803
+ whiteA5: string;
804
+ whiteA6: string;
805
+ whiteA7: string;
806
+ whiteA8: string;
807
+ whiteA9: string;
808
+ whiteA10: string;
809
+ whiteA11: string;
810
+ whiteA12: string;
811
+ gold1: string;
812
+ gold2: string;
813
+ gold3: string;
814
+ gold4: string;
815
+ gold5: string;
816
+ gold6: string;
817
+ gold7: string;
818
+ gold8: string;
819
+ gold9: string;
820
+ gold10: string;
821
+ gold11: string;
822
+ gold12: string;
823
+ bronze1: string;
824
+ bronze2: string;
825
+ bronze3: string;
826
+ bronze4: string;
827
+ bronze5: string;
828
+ bronze6: string;
829
+ bronze7: string;
830
+ bronze8: string;
831
+ bronze9: string;
832
+ bronze10: string;
833
+ bronze11: string;
834
+ bronze12: string;
835
+ brown1: string;
836
+ brown2: string;
837
+ brown3: string;
838
+ brown4: string;
839
+ brown5: string;
840
+ brown6: string;
841
+ brown7: string;
842
+ brown8: string;
843
+ brown9: string;
844
+ brown10: string;
845
+ brown11: string;
846
+ brown12: string;
847
+ orange1: string;
848
+ orange2: string;
849
+ orange3: string;
850
+ orange4: string;
851
+ orange5: string;
852
+ orange6: string;
853
+ orange7: string;
854
+ orange8: string;
855
+ orange9: string;
856
+ orange10: string;
857
+ orange11: string;
858
+ orange12: string;
859
+ amber1: string;
860
+ amber2: string;
861
+ amber3: string;
862
+ amber4: string;
863
+ amber5: string;
864
+ amber6: string;
865
+ amber7: string;
866
+ amber8: string;
867
+ amber9: string;
868
+ amber10: string;
869
+ amber11: string;
870
+ amber12: string;
871
+ yellow1: string;
872
+ yellow2: string;
873
+ yellow3: string;
874
+ yellow4: string;
875
+ yellow5: string;
876
+ yellow6: string;
877
+ yellow7: string;
878
+ yellow8: string;
879
+ yellow9: string;
880
+ yellow10: string;
881
+ yellow11: string;
882
+ yellow12: string;
883
+ lime1: string;
884
+ lime2: string;
885
+ lime3: string;
886
+ lime4: string;
887
+ lime5: string;
888
+ lime6: string;
889
+ lime7: string;
890
+ lime8: string;
891
+ lime9: string;
892
+ lime10: string;
893
+ lime11: string;
894
+ lime12: string;
895
+ grass1: string;
896
+ grass2: string;
897
+ grass3: string;
898
+ grass4: string;
899
+ grass5: string;
900
+ grass6: string;
901
+ grass7: string;
902
+ grass8: string;
903
+ grass9: string;
904
+ grass10: string;
905
+ grass11: string;
906
+ grass12: string;
907
+ green1: string;
908
+ green2: string;
909
+ green3: string;
910
+ green4: string;
911
+ green5: string;
912
+ green6: string;
913
+ green7: string;
914
+ green8: string;
915
+ green9: string;
916
+ green10: string;
917
+ green11: string;
918
+ green12: string;
919
+ teal1: string;
920
+ teal2: string;
921
+ teal3: string;
922
+ teal4: string;
923
+ teal5: string;
924
+ teal6: string;
925
+ teal7: string;
926
+ teal8: string;
927
+ teal9: string;
928
+ teal10: string;
929
+ teal11: string;
930
+ teal12: string;
931
+ cyan1: string;
932
+ cyan2: string;
933
+ cyan3: string;
934
+ cyan4: string;
935
+ cyan5: string;
936
+ cyan6: string;
937
+ cyan7: string;
938
+ cyan8: string;
939
+ cyan9: string;
940
+ cyan10: string;
941
+ cyan11: string;
942
+ cyan12: string;
943
+ mint1: string;
944
+ mint2: string;
945
+ mint3: string;
946
+ mint4: string;
947
+ mint5: string;
948
+ mint6: string;
949
+ mint7: string;
950
+ mint8: string;
951
+ mint9: string;
952
+ mint10: string;
953
+ mint11: string;
954
+ mint12: string;
955
+ sky1: string;
956
+ sky2: string;
957
+ sky3: string;
958
+ sky4: string;
959
+ sky5: string;
960
+ sky6: string;
961
+ sky7: string;
962
+ sky8: string;
963
+ sky9: string;
964
+ sky10: string;
965
+ sky11: string;
966
+ sky12: string;
967
+ blue1: string;
968
+ blue2: string;
969
+ blue3: string;
970
+ blue4: string;
971
+ blue5: string;
972
+ blue6: string;
973
+ blue7: string;
974
+ blue8: string;
975
+ blue9: string;
976
+ blue10: string;
977
+ blue11: string;
978
+ blue12: string;
979
+ indigo1: string;
980
+ indigo2: string;
981
+ indigo3: string;
982
+ indigo4: string;
983
+ indigo5: string;
984
+ indigo6: string;
985
+ indigo7: string;
986
+ indigo8: string;
987
+ indigo9: string;
988
+ indigo10: string;
989
+ indigo11: string;
990
+ indigo12: string;
991
+ violet1: string;
992
+ violet2: string;
993
+ violet3: string;
994
+ violet4: string;
995
+ violet5: string;
996
+ violet6: string;
997
+ violet7: string;
998
+ violet8: string;
999
+ violet9: string;
1000
+ violet10: string;
1001
+ violet11: string;
1002
+ violet12: string;
1003
+ purple1: string;
1004
+ purple2: string;
1005
+ purple3: string;
1006
+ purple4: string;
1007
+ purple5: string;
1008
+ purple6: string;
1009
+ purple7: string;
1010
+ purple8: string;
1011
+ purple9: string;
1012
+ purple10: string;
1013
+ purple11: string;
1014
+ purple12: string;
1015
+ plum1: string;
1016
+ plum2: string;
1017
+ plum3: string;
1018
+ plum4: string;
1019
+ plum5: string;
1020
+ plum6: string;
1021
+ plum7: string;
1022
+ plum8: string;
1023
+ plum9: string;
1024
+ plum10: string;
1025
+ plum11: string;
1026
+ plum12: string;
1027
+ pink1: string;
1028
+ pink2: string;
1029
+ pink3: string;
1030
+ pink4: string;
1031
+ pink5: string;
1032
+ pink6: string;
1033
+ pink7: string;
1034
+ pink8: string;
1035
+ pink9: string;
1036
+ pink10: string;
1037
+ pink11: string;
1038
+ pink12: string;
1039
+ crimson1: string;
1040
+ crimson2: string;
1041
+ crimson3: string;
1042
+ crimson4: string;
1043
+ crimson5: string;
1044
+ crimson6: string;
1045
+ crimson7: string;
1046
+ crimson8: string;
1047
+ crimson9: string;
1048
+ crimson10: string;
1049
+ crimson11: string;
1050
+ crimson12: string;
1051
+ red1: string;
1052
+ red2: string;
1053
+ red3: string;
1054
+ red4: string;
1055
+ red5: string;
1056
+ red6: string;
1057
+ red7: string;
1058
+ red8: string;
1059
+ red9: string;
1060
+ red10: string;
1061
+ red11: string;
1062
+ red12: string;
1063
+ tomato1: string;
1064
+ tomato2: string;
1065
+ tomato3: string;
1066
+ tomato4: string;
1067
+ tomato5: string;
1068
+ tomato6: string;
1069
+ tomato7: string;
1070
+ tomato8: string;
1071
+ tomato9: string;
1072
+ tomato10: string;
1073
+ tomato11: string;
1074
+ tomato12: string;
1075
+ sand1: string;
1076
+ sand2: string;
1077
+ sand3: string;
1078
+ sand4: string;
1079
+ sand5: string;
1080
+ sand6: string;
1081
+ sand7: string;
1082
+ sand8: string;
1083
+ sand9: string;
1084
+ sand10: string;
1085
+ sand11: string;
1086
+ sand12: string;
1087
+ olive1: string;
1088
+ olive2: string;
1089
+ olive3: string;
1090
+ olive4: string;
1091
+ olive5: string;
1092
+ olive6: string;
1093
+ olive7: string;
1094
+ olive8: string;
1095
+ olive9: string;
1096
+ olive10: string;
1097
+ olive11: string;
1098
+ olive12: string;
1099
+ sage1: string;
1100
+ sage2: string;
1101
+ sage3: string;
1102
+ sage4: string;
1103
+ sage5: string;
1104
+ sage6: string;
1105
+ sage7: string;
1106
+ sage8: string;
1107
+ sage9: string;
1108
+ sage10: string;
1109
+ sage11: string;
1110
+ sage12: string;
1111
+ slate1: string;
1112
+ slate2: string;
1113
+ slate3: string;
1114
+ slate4: string;
1115
+ slate5: string;
1116
+ slate6: string;
1117
+ slate7: string;
1118
+ slate8: string;
1119
+ slate9: string;
1120
+ slate10: string;
1121
+ slate11: string;
1122
+ slate12: string;
1123
+ mauve1: string;
1124
+ mauve2: string;
1125
+ mauve3: string;
1126
+ mauve4: string;
1127
+ mauve5: string;
1128
+ mauve6: string;
1129
+ mauve7: string;
1130
+ mauve8: string;
1131
+ mauve9: string;
1132
+ mauve10: string;
1133
+ mauve11: string;
1134
+ mauve12: string;
1135
+ gray1: string;
1136
+ gray2: string;
1137
+ gray3: string;
1138
+ gray4: string;
1139
+ gray5: string;
1140
+ gray6: string;
1141
+ gray7: string;
1142
+ gray8: string;
1143
+ gray9: string;
1144
+ gray10: string;
1145
+ gray11: string;
1146
+ gray12: string;
1147
+ };
1148
+ fonts: {
1149
+ untitled: string;
1150
+ mono: string;
1151
+ };
1152
+ space: {
1153
+ 1: string;
1154
+ 2: string;
1155
+ 3: string;
1156
+ 4: string;
1157
+ 5: string;
1158
+ 6: string;
1159
+ 7: string;
1160
+ 8: string;
1161
+ 9: string;
1162
+ };
1163
+ sizes: {
1164
+ 1: string;
1165
+ 2: string;
1166
+ 3: string;
1167
+ 4: string;
1168
+ 5: string;
1169
+ 6: string;
1170
+ 7: string;
1171
+ 8: string;
1172
+ 9: string;
1173
+ };
1174
+ fontSizes: {
1175
+ 1: string;
1176
+ 2: string;
1177
+ 3: string;
1178
+ 4: string;
1179
+ 5: string;
1180
+ 6: string;
1181
+ 7: string;
1182
+ 8: string;
1183
+ 9: string;
1184
+ };
1185
+ radii: {
1186
+ 1: string;
1187
+ 2: string;
1188
+ 3: string;
1189
+ 4: string;
1190
+ round: string;
1191
+ pill: string;
1192
+ };
1193
+ zIndices: {
1194
+ 1: string;
1195
+ 2: string;
1196
+ 3: string;
1197
+ 4: string;
1198
+ max: string;
1199
+ };
1200
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1201
+ p: (value: {
1202
+ readonly [$$PropertyValue]: "padding";
1203
+ }) => {
1204
+ padding: {
1205
+ readonly [$$PropertyValue]: "padding";
1206
+ };
1207
+ };
1208
+ pt: (value: {
1209
+ readonly [$$PropertyValue]: "paddingTop";
1210
+ }) => {
1211
+ paddingTop: {
1212
+ readonly [$$PropertyValue]: "paddingTop";
1213
+ };
1214
+ };
1215
+ pr: (value: {
1216
+ readonly [$$PropertyValue]: "paddingRight";
1217
+ }) => {
1218
+ paddingRight: {
1219
+ readonly [$$PropertyValue]: "paddingRight";
1220
+ };
1221
+ };
1222
+ pb: (value: {
1223
+ readonly [$$PropertyValue]: "paddingBottom";
1224
+ }) => {
1225
+ paddingBottom: {
1226
+ readonly [$$PropertyValue]: "paddingBottom";
1227
+ };
1228
+ };
1229
+ pl: (value: {
1230
+ readonly [$$PropertyValue]: "paddingLeft";
1231
+ }) => {
1232
+ paddingLeft: {
1233
+ readonly [$$PropertyValue]: "paddingLeft";
1234
+ };
1235
+ };
1236
+ px: (value: {
1237
+ readonly [$$PropertyValue]: "paddingLeft";
1238
+ }) => {
1239
+ paddingLeft: {
1240
+ readonly [$$PropertyValue]: "paddingLeft";
1241
+ };
1242
+ paddingRight: {
1243
+ readonly [$$PropertyValue]: "paddingLeft";
1244
+ };
1245
+ };
1246
+ py: (value: {
1247
+ readonly [$$PropertyValue]: "paddingTop";
1248
+ }) => {
1249
+ paddingTop: {
1250
+ readonly [$$PropertyValue]: "paddingTop";
1251
+ };
1252
+ paddingBottom: {
1253
+ readonly [$$PropertyValue]: "paddingTop";
1254
+ };
1255
+ };
1256
+ m: (value: {
1257
+ readonly [$$PropertyValue]: "margin";
1258
+ }) => {
1259
+ margin: {
1260
+ readonly [$$PropertyValue]: "margin";
1261
+ };
1262
+ };
1263
+ mt: (value: {
1264
+ readonly [$$PropertyValue]: "marginTop";
1265
+ }) => {
1266
+ marginTop: {
1267
+ readonly [$$PropertyValue]: "marginTop";
1268
+ };
1269
+ };
1270
+ mr: (value: {
1271
+ readonly [$$PropertyValue]: "marginRight";
1272
+ }) => {
1273
+ marginRight: {
1274
+ readonly [$$PropertyValue]: "marginRight";
1275
+ };
1276
+ };
1277
+ mb: (value: {
1278
+ readonly [$$PropertyValue]: "marginBottom";
1279
+ }) => {
1280
+ marginBottom: {
1281
+ readonly [$$PropertyValue]: "marginBottom";
1282
+ };
1283
+ };
1284
+ ml: (value: {
1285
+ readonly [$$PropertyValue]: "marginLeft";
1286
+ }) => {
1287
+ marginLeft: {
1288
+ readonly [$$PropertyValue]: "marginLeft";
1289
+ };
1290
+ };
1291
+ mx: (value: {
1292
+ readonly [$$PropertyValue]: "marginLeft";
1293
+ }) => {
1294
+ marginLeft: {
1295
+ readonly [$$PropertyValue]: "marginLeft";
1296
+ };
1297
+ marginRight: {
1298
+ readonly [$$PropertyValue]: "marginLeft";
1299
+ };
1300
+ };
1301
+ my: (value: {
1302
+ readonly [$$PropertyValue]: "marginTop";
1303
+ }) => {
1304
+ marginTop: {
1305
+ readonly [$$PropertyValue]: "marginTop";
1306
+ };
1307
+ marginBottom: {
1308
+ readonly [$$PropertyValue]: "marginTop";
1309
+ };
1310
+ };
1311
+ ta: (value: {
1312
+ readonly [$$PropertyValue]: "textAlign";
1313
+ }) => {
1314
+ textAlign: {
1315
+ readonly [$$PropertyValue]: "textAlign";
1316
+ };
1317
+ };
1318
+ fd: (value: {
1319
+ readonly [$$PropertyValue]: "flexDirection";
1320
+ }) => {
1321
+ flexDirection: {
1322
+ readonly [$$PropertyValue]: "flexDirection";
1323
+ };
1324
+ };
1325
+ fw: (value: {
1326
+ readonly [$$PropertyValue]: "flexWrap";
1327
+ }) => {
1328
+ flexWrap: {
1329
+ readonly [$$PropertyValue]: "flexWrap";
1330
+ };
1331
+ };
1332
+ ai: (value: {
1333
+ readonly [$$PropertyValue]: "alignItems";
1334
+ }) => {
1335
+ alignItems: {
1336
+ readonly [$$PropertyValue]: "alignItems";
1337
+ };
1338
+ };
1339
+ ac: (value: {
1340
+ readonly [$$PropertyValue]: "alignContent";
1341
+ }) => {
1342
+ alignContent: {
1343
+ readonly [$$PropertyValue]: "alignContent";
1344
+ };
1345
+ };
1346
+ jc: (value: {
1347
+ readonly [$$PropertyValue]: "justifyContent";
1348
+ }) => {
1349
+ justifyContent: {
1350
+ readonly [$$PropertyValue]: "justifyContent";
1351
+ };
1352
+ };
1353
+ as: (value: {
1354
+ readonly [$$PropertyValue]: "alignSelf";
1355
+ }) => {
1356
+ alignSelf: {
1357
+ readonly [$$PropertyValue]: "alignSelf";
1358
+ };
1359
+ };
1360
+ fg: (value: {
1361
+ readonly [$$PropertyValue]: "flexGrow";
1362
+ }) => {
1363
+ flexGrow: {
1364
+ readonly [$$PropertyValue]: "flexGrow";
1365
+ };
1366
+ };
1367
+ fs: (value: {
1368
+ readonly [$$PropertyValue]: "flexShrink";
1369
+ }) => {
1370
+ flexShrink: {
1371
+ readonly [$$PropertyValue]: "flexShrink";
1372
+ };
1373
+ };
1374
+ fb: (value: {
1375
+ readonly [$$PropertyValue]: "flexBasis";
1376
+ }) => {
1377
+ flexBasis: {
1378
+ readonly [$$PropertyValue]: "flexBasis";
1379
+ };
1380
+ };
1381
+ bc: (value: {
1382
+ readonly [$$PropertyValue]: "backgroundColor";
1383
+ }) => {
1384
+ backgroundColor: {
1385
+ readonly [$$PropertyValue]: "backgroundColor";
1386
+ };
1387
+ };
1388
+ br: (value: {
1389
+ readonly [$$PropertyValue]: "borderRadius";
1390
+ }) => {
1391
+ borderRadius: {
1392
+ readonly [$$PropertyValue]: "borderRadius";
1393
+ };
1394
+ };
1395
+ btrr: (value: {
1396
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1397
+ }) => {
1398
+ borderTopRightRadius: {
1399
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1400
+ };
1401
+ };
1402
+ bbrr: (value: {
1403
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1404
+ }) => {
1405
+ borderBottomRightRadius: {
1406
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1407
+ };
1408
+ };
1409
+ bblr: (value: {
1410
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1411
+ }) => {
1412
+ borderBottomLeftRadius: {
1413
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1414
+ };
1415
+ };
1416
+ btlr: (value: {
1417
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1418
+ }) => {
1419
+ borderTopLeftRadius: {
1420
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1421
+ };
1422
+ };
1423
+ bs: (value: {
1424
+ readonly [$$PropertyValue]: "boxShadow";
1425
+ }) => {
1426
+ boxShadow: {
1427
+ readonly [$$PropertyValue]: "boxShadow";
1428
+ };
1429
+ };
1430
+ lh: (value: {
1431
+ readonly [$$PropertyValue]: "lineHeight";
1432
+ }) => {
1433
+ lineHeight: {
1434
+ readonly [$$PropertyValue]: "lineHeight";
1435
+ };
1436
+ };
1437
+ ox: (value: {
1438
+ readonly [$$PropertyValue]: "overflowX";
1439
+ }) => {
1440
+ overflowX: {
1441
+ readonly [$$PropertyValue]: "overflowX";
1442
+ };
1443
+ };
1444
+ oy: (value: {
1445
+ readonly [$$PropertyValue]: "overflowY";
1446
+ }) => {
1447
+ overflowY: {
1448
+ readonly [$$PropertyValue]: "overflowY";
1449
+ };
1450
+ };
1451
+ pe: (value: {
1452
+ readonly [$$PropertyValue]: "pointerEvents";
1453
+ }) => {
1454
+ pointerEvents: {
1455
+ readonly [$$PropertyValue]: "pointerEvents";
1456
+ };
1457
+ };
1458
+ us: (value: {
1459
+ readonly [$$PropertyValue]: "userSelect";
1460
+ }) => {
1461
+ WebkitUserSelect: {
1462
+ readonly [$$PropertyValue]: "userSelect";
1463
+ };
1464
+ userSelect: {
1465
+ readonly [$$PropertyValue]: "userSelect";
1466
+ };
1467
+ };
1468
+ userSelect: (value: {
1469
+ readonly [$$PropertyValue]: "userSelect";
1470
+ }) => {
1471
+ WebkitUserSelect: {
1472
+ readonly [$$PropertyValue]: "userSelect";
1473
+ };
1474
+ userSelect: {
1475
+ readonly [$$PropertyValue]: "userSelect";
1476
+ };
1477
+ };
1478
+ size: (value: {
1479
+ readonly [$$PropertyValue]: "width";
1480
+ }) => {
1481
+ width: {
1482
+ readonly [$$PropertyValue]: "width";
1483
+ };
1484
+ height: {
1485
+ readonly [$$PropertyValue]: "width";
1486
+ };
1487
+ };
1488
+ appearance: (value: {
1489
+ readonly [$$PropertyValue]: "appearance";
1490
+ }) => {
1491
+ WebkitAppearance: {
1492
+ readonly [$$PropertyValue]: "appearance";
1493
+ };
1494
+ appearance: {
1495
+ readonly [$$PropertyValue]: "appearance";
1496
+ };
1497
+ };
1498
+ backgroundClip: (value: {
1499
+ readonly [$$PropertyValue]: "backgroundClip";
1500
+ }) => {
1501
+ WebkitBackgroundClip: {
1502
+ readonly [$$PropertyValue]: "backgroundClip";
1503
+ };
1504
+ backgroundClip: {
1505
+ readonly [$$PropertyValue]: "backgroundClip";
1506
+ };
1507
+ };
1508
+ }>>;
1509
+ export declare const AvatarGroup: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
1510
+ bp1: "(min-width: 520px)";
1511
+ bp2: "(min-width: 900px)";
1512
+ bp3: "(min-width: 1200px)";
1513
+ bp4: "(min-width: 1800px)";
1514
+ motion: "(prefers-reduced-motion)";
1515
+ hover: "(any-hover: hover)";
1516
+ dark: "(prefers-color-scheme: dark)";
1517
+ light: "(prefers-color-scheme: light)";
1518
+ }, import("@stitches/react/types/css-util").CSS<{
1519
+ bp1: "(min-width: 520px)";
1520
+ bp2: "(min-width: 900px)";
1521
+ bp3: "(min-width: 1200px)";
1522
+ bp4: "(min-width: 1800px)";
1523
+ motion: "(prefers-reduced-motion)";
1524
+ hover: "(any-hover: hover)";
1525
+ dark: "(prefers-color-scheme: dark)";
1526
+ light: "(prefers-color-scheme: light)";
1527
+ }, {
1528
+ colors: {
1529
+ hiContrast: string;
1530
+ loContrast: string;
1531
+ canvas: string;
1532
+ panel: string;
1533
+ transparentPanel: string;
1534
+ shadowLight: string;
1535
+ shadowDark: string;
1536
+ blackA1: string;
1537
+ blackA2: string;
1538
+ blackA3: string;
1539
+ blackA4: string;
1540
+ blackA5: string;
1541
+ blackA6: string;
1542
+ blackA7: string;
1543
+ blackA8: string;
1544
+ blackA9: string;
1545
+ blackA10: string;
1546
+ blackA11: string;
1547
+ blackA12: string;
1548
+ whiteA1: string;
1549
+ whiteA2: string;
1550
+ whiteA3: string;
1551
+ whiteA4: string;
1552
+ whiteA5: string;
1553
+ whiteA6: string;
1554
+ whiteA7: string;
1555
+ whiteA8: string;
1556
+ whiteA9: string;
1557
+ whiteA10: string;
1558
+ whiteA11: string;
1559
+ whiteA12: string;
1560
+ gold1: string;
1561
+ gold2: string;
1562
+ gold3: string;
1563
+ gold4: string;
1564
+ gold5: string;
1565
+ gold6: string;
1566
+ gold7: string;
1567
+ gold8: string;
1568
+ gold9: string;
1569
+ gold10: string;
1570
+ gold11: string;
1571
+ gold12: string;
1572
+ bronze1: string;
1573
+ bronze2: string;
1574
+ bronze3: string;
1575
+ bronze4: string;
1576
+ bronze5: string;
1577
+ bronze6: string;
1578
+ bronze7: string;
1579
+ bronze8: string;
1580
+ bronze9: string;
1581
+ bronze10: string;
1582
+ bronze11: string;
1583
+ bronze12: string;
1584
+ brown1: string;
1585
+ brown2: string;
1586
+ brown3: string;
1587
+ brown4: string;
1588
+ brown5: string;
1589
+ brown6: string;
1590
+ brown7: string;
1591
+ brown8: string;
1592
+ brown9: string;
1593
+ brown10: string;
1594
+ brown11: string;
1595
+ brown12: string;
1596
+ orange1: string;
1597
+ orange2: string;
1598
+ orange3: string;
1599
+ orange4: string;
1600
+ orange5: string;
1601
+ orange6: string;
1602
+ orange7: string;
1603
+ orange8: string;
1604
+ orange9: string;
1605
+ orange10: string;
1606
+ orange11: string;
1607
+ orange12: string;
1608
+ amber1: string;
1609
+ amber2: string;
1610
+ amber3: string;
1611
+ amber4: string;
1612
+ amber5: string;
1613
+ amber6: string;
1614
+ amber7: string;
1615
+ amber8: string;
1616
+ amber9: string;
1617
+ amber10: string;
1618
+ amber11: string;
1619
+ amber12: string;
1620
+ yellow1: string;
1621
+ yellow2: string;
1622
+ yellow3: string;
1623
+ yellow4: string;
1624
+ yellow5: string;
1625
+ yellow6: string;
1626
+ yellow7: string;
1627
+ yellow8: string;
1628
+ yellow9: string;
1629
+ yellow10: string;
1630
+ yellow11: string;
1631
+ yellow12: string;
1632
+ lime1: string;
1633
+ lime2: string;
1634
+ lime3: string;
1635
+ lime4: string;
1636
+ lime5: string;
1637
+ lime6: string;
1638
+ lime7: string;
1639
+ lime8: string;
1640
+ lime9: string;
1641
+ lime10: string;
1642
+ lime11: string;
1643
+ lime12: string;
1644
+ grass1: string;
1645
+ grass2: string;
1646
+ grass3: string;
1647
+ grass4: string;
1648
+ grass5: string;
1649
+ grass6: string;
1650
+ grass7: string;
1651
+ grass8: string;
1652
+ grass9: string;
1653
+ grass10: string;
1654
+ grass11: string;
1655
+ grass12: string;
1656
+ green1: string;
1657
+ green2: string;
1658
+ green3: string;
1659
+ green4: string;
1660
+ green5: string;
1661
+ green6: string;
1662
+ green7: string;
1663
+ green8: string;
1664
+ green9: string;
1665
+ green10: string;
1666
+ green11: string;
1667
+ green12: string;
1668
+ teal1: string;
1669
+ teal2: string;
1670
+ teal3: string;
1671
+ teal4: string;
1672
+ teal5: string;
1673
+ teal6: string;
1674
+ teal7: string;
1675
+ teal8: string;
1676
+ teal9: string;
1677
+ teal10: string;
1678
+ teal11: string;
1679
+ teal12: string;
1680
+ cyan1: string;
1681
+ cyan2: string;
1682
+ cyan3: string;
1683
+ cyan4: string;
1684
+ cyan5: string;
1685
+ cyan6: string;
1686
+ cyan7: string;
1687
+ cyan8: string;
1688
+ cyan9: string;
1689
+ cyan10: string;
1690
+ cyan11: string;
1691
+ cyan12: string;
1692
+ mint1: string;
1693
+ mint2: string;
1694
+ mint3: string;
1695
+ mint4: string;
1696
+ mint5: string;
1697
+ mint6: string;
1698
+ mint7: string;
1699
+ mint8: string;
1700
+ mint9: string;
1701
+ mint10: string;
1702
+ mint11: string;
1703
+ mint12: string;
1704
+ sky1: string;
1705
+ sky2: string;
1706
+ sky3: string;
1707
+ sky4: string;
1708
+ sky5: string;
1709
+ sky6: string;
1710
+ sky7: string;
1711
+ sky8: string;
1712
+ sky9: string;
1713
+ sky10: string;
1714
+ sky11: string;
1715
+ sky12: string;
1716
+ blue1: string;
1717
+ blue2: string;
1718
+ blue3: string;
1719
+ blue4: string;
1720
+ blue5: string;
1721
+ blue6: string;
1722
+ blue7: string;
1723
+ blue8: string;
1724
+ blue9: string;
1725
+ blue10: string;
1726
+ blue11: string;
1727
+ blue12: string;
1728
+ indigo1: string;
1729
+ indigo2: string;
1730
+ indigo3: string;
1731
+ indigo4: string;
1732
+ indigo5: string;
1733
+ indigo6: string;
1734
+ indigo7: string;
1735
+ indigo8: string;
1736
+ indigo9: string;
1737
+ indigo10: string;
1738
+ indigo11: string;
1739
+ indigo12: string;
1740
+ violet1: string;
1741
+ violet2: string;
1742
+ violet3: string;
1743
+ violet4: string;
1744
+ violet5: string;
1745
+ violet6: string;
1746
+ violet7: string;
1747
+ violet8: string;
1748
+ violet9: string;
1749
+ violet10: string;
1750
+ violet11: string;
1751
+ violet12: string;
1752
+ purple1: string;
1753
+ purple2: string;
1754
+ purple3: string;
1755
+ purple4: string;
1756
+ purple5: string;
1757
+ purple6: string;
1758
+ purple7: string;
1759
+ purple8: string;
1760
+ purple9: string;
1761
+ purple10: string;
1762
+ purple11: string;
1763
+ purple12: string;
1764
+ plum1: string;
1765
+ plum2: string;
1766
+ plum3: string;
1767
+ plum4: string;
1768
+ plum5: string;
1769
+ plum6: string;
1770
+ plum7: string;
1771
+ plum8: string;
1772
+ plum9: string;
1773
+ plum10: string;
1774
+ plum11: string;
1775
+ plum12: string;
1776
+ pink1: string;
1777
+ pink2: string;
1778
+ pink3: string;
1779
+ pink4: string;
1780
+ pink5: string;
1781
+ pink6: string;
1782
+ pink7: string;
1783
+ pink8: string;
1784
+ pink9: string;
1785
+ pink10: string;
1786
+ pink11: string;
1787
+ pink12: string;
1788
+ crimson1: string;
1789
+ crimson2: string;
1790
+ crimson3: string;
1791
+ crimson4: string;
1792
+ crimson5: string;
1793
+ crimson6: string;
1794
+ crimson7: string;
1795
+ crimson8: string;
1796
+ crimson9: string;
1797
+ crimson10: string;
1798
+ crimson11: string;
1799
+ crimson12: string;
1800
+ red1: string;
1801
+ red2: string;
1802
+ red3: string;
1803
+ red4: string;
1804
+ red5: string;
1805
+ red6: string;
1806
+ red7: string;
1807
+ red8: string;
1808
+ red9: string;
1809
+ red10: string;
1810
+ red11: string;
1811
+ red12: string;
1812
+ tomato1: string;
1813
+ tomato2: string;
1814
+ tomato3: string;
1815
+ tomato4: string;
1816
+ tomato5: string;
1817
+ tomato6: string;
1818
+ tomato7: string;
1819
+ tomato8: string;
1820
+ tomato9: string;
1821
+ tomato10: string;
1822
+ tomato11: string;
1823
+ tomato12: string;
1824
+ sand1: string;
1825
+ sand2: string;
1826
+ sand3: string;
1827
+ sand4: string;
1828
+ sand5: string;
1829
+ sand6: string;
1830
+ sand7: string;
1831
+ sand8: string;
1832
+ sand9: string;
1833
+ sand10: string;
1834
+ sand11: string;
1835
+ sand12: string;
1836
+ olive1: string;
1837
+ olive2: string;
1838
+ olive3: string;
1839
+ olive4: string;
1840
+ olive5: string;
1841
+ olive6: string;
1842
+ olive7: string;
1843
+ olive8: string;
1844
+ olive9: string;
1845
+ olive10: string;
1846
+ olive11: string;
1847
+ olive12: string;
1848
+ sage1: string;
1849
+ sage2: string;
1850
+ sage3: string;
1851
+ sage4: string;
1852
+ sage5: string;
1853
+ sage6: string;
1854
+ sage7: string;
1855
+ sage8: string;
1856
+ sage9: string;
1857
+ sage10: string;
1858
+ sage11: string;
1859
+ sage12: string;
1860
+ slate1: string;
1861
+ slate2: string;
1862
+ slate3: string;
1863
+ slate4: string;
1864
+ slate5: string;
1865
+ slate6: string;
1866
+ slate7: string;
1867
+ slate8: string;
1868
+ slate9: string;
1869
+ slate10: string;
1870
+ slate11: string;
1871
+ slate12: string;
1872
+ mauve1: string;
1873
+ mauve2: string;
1874
+ mauve3: string;
1875
+ mauve4: string;
1876
+ mauve5: string;
1877
+ mauve6: string;
1878
+ mauve7: string;
1879
+ mauve8: string;
1880
+ mauve9: string;
1881
+ mauve10: string;
1882
+ mauve11: string;
1883
+ mauve12: string;
1884
+ gray1: string;
1885
+ gray2: string;
1886
+ gray3: string;
1887
+ gray4: string;
1888
+ gray5: string;
1889
+ gray6: string;
1890
+ gray7: string;
1891
+ gray8: string;
1892
+ gray9: string;
1893
+ gray10: string;
1894
+ gray11: string;
1895
+ gray12: string;
1896
+ };
1897
+ fonts: {
1898
+ untitled: string;
1899
+ mono: string;
1900
+ };
1901
+ space: {
1902
+ 1: string;
1903
+ 2: string;
1904
+ 3: string;
1905
+ 4: string;
1906
+ 5: string;
1907
+ 6: string;
1908
+ 7: string;
1909
+ 8: string;
1910
+ 9: string;
1911
+ };
1912
+ sizes: {
1913
+ 1: string;
1914
+ 2: string;
1915
+ 3: string;
1916
+ 4: string;
1917
+ 5: string;
1918
+ 6: string;
1919
+ 7: string;
1920
+ 8: string;
1921
+ 9: string;
1922
+ };
1923
+ fontSizes: {
1924
+ 1: string;
1925
+ 2: string;
1926
+ 3: string;
1927
+ 4: string;
1928
+ 5: string;
1929
+ 6: string;
1930
+ 7: string;
1931
+ 8: string;
1932
+ 9: string;
1933
+ };
1934
+ radii: {
1935
+ 1: string;
1936
+ 2: string;
1937
+ 3: string;
1938
+ 4: string;
1939
+ round: string;
1940
+ pill: string;
1941
+ };
1942
+ zIndices: {
1943
+ 1: string;
1944
+ 2: string;
1945
+ 3: string;
1946
+ 4: string;
1947
+ max: string;
1948
+ };
1949
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1950
+ p: (value: {
1951
+ readonly [$$PropertyValue]: "padding";
1952
+ }) => {
1953
+ padding: {
1954
+ readonly [$$PropertyValue]: "padding";
1955
+ };
1956
+ };
1957
+ pt: (value: {
1958
+ readonly [$$PropertyValue]: "paddingTop";
1959
+ }) => {
1960
+ paddingTop: {
1961
+ readonly [$$PropertyValue]: "paddingTop";
1962
+ };
1963
+ };
1964
+ pr: (value: {
1965
+ readonly [$$PropertyValue]: "paddingRight";
1966
+ }) => {
1967
+ paddingRight: {
1968
+ readonly [$$PropertyValue]: "paddingRight";
1969
+ };
1970
+ };
1971
+ pb: (value: {
1972
+ readonly [$$PropertyValue]: "paddingBottom";
1973
+ }) => {
1974
+ paddingBottom: {
1975
+ readonly [$$PropertyValue]: "paddingBottom";
1976
+ };
1977
+ };
1978
+ pl: (value: {
1979
+ readonly [$$PropertyValue]: "paddingLeft";
1980
+ }) => {
1981
+ paddingLeft: {
1982
+ readonly [$$PropertyValue]: "paddingLeft";
1983
+ };
1984
+ };
1985
+ px: (value: {
1986
+ readonly [$$PropertyValue]: "paddingLeft";
1987
+ }) => {
1988
+ paddingLeft: {
1989
+ readonly [$$PropertyValue]: "paddingLeft";
1990
+ };
1991
+ paddingRight: {
1992
+ readonly [$$PropertyValue]: "paddingLeft";
1993
+ };
1994
+ };
1995
+ py: (value: {
1996
+ readonly [$$PropertyValue]: "paddingTop";
1997
+ }) => {
1998
+ paddingTop: {
1999
+ readonly [$$PropertyValue]: "paddingTop";
2000
+ };
2001
+ paddingBottom: {
2002
+ readonly [$$PropertyValue]: "paddingTop";
2003
+ };
2004
+ };
2005
+ m: (value: {
2006
+ readonly [$$PropertyValue]: "margin";
2007
+ }) => {
2008
+ margin: {
2009
+ readonly [$$PropertyValue]: "margin";
2010
+ };
2011
+ };
2012
+ mt: (value: {
2013
+ readonly [$$PropertyValue]: "marginTop";
2014
+ }) => {
2015
+ marginTop: {
2016
+ readonly [$$PropertyValue]: "marginTop";
2017
+ };
2018
+ };
2019
+ mr: (value: {
2020
+ readonly [$$PropertyValue]: "marginRight";
2021
+ }) => {
2022
+ marginRight: {
2023
+ readonly [$$PropertyValue]: "marginRight";
2024
+ };
2025
+ };
2026
+ mb: (value: {
2027
+ readonly [$$PropertyValue]: "marginBottom";
2028
+ }) => {
2029
+ marginBottom: {
2030
+ readonly [$$PropertyValue]: "marginBottom";
2031
+ };
2032
+ };
2033
+ ml: (value: {
2034
+ readonly [$$PropertyValue]: "marginLeft";
2035
+ }) => {
2036
+ marginLeft: {
2037
+ readonly [$$PropertyValue]: "marginLeft";
2038
+ };
2039
+ };
2040
+ mx: (value: {
2041
+ readonly [$$PropertyValue]: "marginLeft";
2042
+ }) => {
2043
+ marginLeft: {
2044
+ readonly [$$PropertyValue]: "marginLeft";
2045
+ };
2046
+ marginRight: {
2047
+ readonly [$$PropertyValue]: "marginLeft";
2048
+ };
2049
+ };
2050
+ my: (value: {
2051
+ readonly [$$PropertyValue]: "marginTop";
2052
+ }) => {
2053
+ marginTop: {
2054
+ readonly [$$PropertyValue]: "marginTop";
2055
+ };
2056
+ marginBottom: {
2057
+ readonly [$$PropertyValue]: "marginTop";
2058
+ };
2059
+ };
2060
+ ta: (value: {
2061
+ readonly [$$PropertyValue]: "textAlign";
2062
+ }) => {
2063
+ textAlign: {
2064
+ readonly [$$PropertyValue]: "textAlign";
2065
+ };
2066
+ };
2067
+ fd: (value: {
2068
+ readonly [$$PropertyValue]: "flexDirection";
2069
+ }) => {
2070
+ flexDirection: {
2071
+ readonly [$$PropertyValue]: "flexDirection";
2072
+ };
2073
+ };
2074
+ fw: (value: {
2075
+ readonly [$$PropertyValue]: "flexWrap";
2076
+ }) => {
2077
+ flexWrap: {
2078
+ readonly [$$PropertyValue]: "flexWrap";
2079
+ };
2080
+ };
2081
+ ai: (value: {
2082
+ readonly [$$PropertyValue]: "alignItems";
2083
+ }) => {
2084
+ alignItems: {
2085
+ readonly [$$PropertyValue]: "alignItems";
2086
+ };
2087
+ };
2088
+ ac: (value: {
2089
+ readonly [$$PropertyValue]: "alignContent";
2090
+ }) => {
2091
+ alignContent: {
2092
+ readonly [$$PropertyValue]: "alignContent";
2093
+ };
2094
+ };
2095
+ jc: (value: {
2096
+ readonly [$$PropertyValue]: "justifyContent";
2097
+ }) => {
2098
+ justifyContent: {
2099
+ readonly [$$PropertyValue]: "justifyContent";
2100
+ };
2101
+ };
2102
+ as: (value: {
2103
+ readonly [$$PropertyValue]: "alignSelf";
2104
+ }) => {
2105
+ alignSelf: {
2106
+ readonly [$$PropertyValue]: "alignSelf";
2107
+ };
2108
+ };
2109
+ fg: (value: {
2110
+ readonly [$$PropertyValue]: "flexGrow";
2111
+ }) => {
2112
+ flexGrow: {
2113
+ readonly [$$PropertyValue]: "flexGrow";
2114
+ };
2115
+ };
2116
+ fs: (value: {
2117
+ readonly [$$PropertyValue]: "flexShrink";
2118
+ }) => {
2119
+ flexShrink: {
2120
+ readonly [$$PropertyValue]: "flexShrink";
2121
+ };
2122
+ };
2123
+ fb: (value: {
2124
+ readonly [$$PropertyValue]: "flexBasis";
2125
+ }) => {
2126
+ flexBasis: {
2127
+ readonly [$$PropertyValue]: "flexBasis";
2128
+ };
2129
+ };
2130
+ bc: (value: {
2131
+ readonly [$$PropertyValue]: "backgroundColor";
2132
+ }) => {
2133
+ backgroundColor: {
2134
+ readonly [$$PropertyValue]: "backgroundColor";
2135
+ };
2136
+ };
2137
+ br: (value: {
2138
+ readonly [$$PropertyValue]: "borderRadius";
2139
+ }) => {
2140
+ borderRadius: {
2141
+ readonly [$$PropertyValue]: "borderRadius";
2142
+ };
2143
+ };
2144
+ btrr: (value: {
2145
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2146
+ }) => {
2147
+ borderTopRightRadius: {
2148
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2149
+ };
2150
+ };
2151
+ bbrr: (value: {
2152
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2153
+ }) => {
2154
+ borderBottomRightRadius: {
2155
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2156
+ };
2157
+ };
2158
+ bblr: (value: {
2159
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2160
+ }) => {
2161
+ borderBottomLeftRadius: {
2162
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2163
+ };
2164
+ };
2165
+ btlr: (value: {
2166
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2167
+ }) => {
2168
+ borderTopLeftRadius: {
2169
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2170
+ };
2171
+ };
2172
+ bs: (value: {
2173
+ readonly [$$PropertyValue]: "boxShadow";
2174
+ }) => {
2175
+ boxShadow: {
2176
+ readonly [$$PropertyValue]: "boxShadow";
2177
+ };
2178
+ };
2179
+ lh: (value: {
2180
+ readonly [$$PropertyValue]: "lineHeight";
2181
+ }) => {
2182
+ lineHeight: {
2183
+ readonly [$$PropertyValue]: "lineHeight";
2184
+ };
2185
+ };
2186
+ ox: (value: {
2187
+ readonly [$$PropertyValue]: "overflowX";
2188
+ }) => {
2189
+ overflowX: {
2190
+ readonly [$$PropertyValue]: "overflowX";
2191
+ };
2192
+ };
2193
+ oy: (value: {
2194
+ readonly [$$PropertyValue]: "overflowY";
2195
+ }) => {
2196
+ overflowY: {
2197
+ readonly [$$PropertyValue]: "overflowY";
2198
+ };
2199
+ };
2200
+ pe: (value: {
2201
+ readonly [$$PropertyValue]: "pointerEvents";
2202
+ }) => {
2203
+ pointerEvents: {
2204
+ readonly [$$PropertyValue]: "pointerEvents";
2205
+ };
2206
+ };
2207
+ us: (value: {
2208
+ readonly [$$PropertyValue]: "userSelect";
2209
+ }) => {
2210
+ WebkitUserSelect: {
2211
+ readonly [$$PropertyValue]: "userSelect";
2212
+ };
2213
+ userSelect: {
2214
+ readonly [$$PropertyValue]: "userSelect";
2215
+ };
2216
+ };
2217
+ userSelect: (value: {
2218
+ readonly [$$PropertyValue]: "userSelect";
2219
+ }) => {
2220
+ WebkitUserSelect: {
2221
+ readonly [$$PropertyValue]: "userSelect";
2222
+ };
2223
+ userSelect: {
2224
+ readonly [$$PropertyValue]: "userSelect";
2225
+ };
2226
+ };
2227
+ size: (value: {
2228
+ readonly [$$PropertyValue]: "width";
2229
+ }) => {
2230
+ width: {
2231
+ readonly [$$PropertyValue]: "width";
2232
+ };
2233
+ height: {
2234
+ readonly [$$PropertyValue]: "width";
2235
+ };
2236
+ };
2237
+ appearance: (value: {
2238
+ readonly [$$PropertyValue]: "appearance";
2239
+ }) => {
2240
+ WebkitAppearance: {
2241
+ readonly [$$PropertyValue]: "appearance";
2242
+ };
2243
+ appearance: {
2244
+ readonly [$$PropertyValue]: "appearance";
2245
+ };
2246
+ };
2247
+ backgroundClip: (value: {
2248
+ readonly [$$PropertyValue]: "backgroundClip";
2249
+ }) => {
2250
+ WebkitBackgroundClip: {
2251
+ readonly [$$PropertyValue]: "backgroundClip";
2252
+ };
2253
+ backgroundClip: {
2254
+ readonly [$$PropertyValue]: "backgroundClip";
2255
+ };
2256
+ };
2257
+ }>>;
2258
+ declare type StatusVariants = React.ComponentProps<typeof Status>;
2259
+ declare type StatusColors = Pick<StatusVariants, "variant">;
2260
+ declare type AvatarVariants = VariantProps<typeof StyledAvatar>;
2261
+ declare type AvatarPrimitiveProps = React.ComponentProps<typeof AvatarPrimitive.Root>;
2262
+ declare type AvatarOwnProps = AvatarPrimitiveProps & AvatarVariants & {
2263
+ css?: CSS;
2264
+ alt?: string;
2265
+ src?: string;
2266
+ fallback?: React.ReactNode;
2267
+ status?: StatusColors["variant"];
2268
+ };
2269
+ export declare const Avatar: React.ForwardRefExoticComponent<Pick<AvatarOwnProps, "color" | "translate" | "hidden" | "size" | "style" | "variant" | "shape" | "inactive" | "interactive" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "status" | "asChild" | "alt" | "src" | "css" | "fallback"> & React.RefAttributes<HTMLSpanElement>>;
2270
+ export {};