@obolnetwork/obol-ui 1.0.5 → 1.0.8

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 (35) hide show
  1. package/dist/components/atoms/Box/Box.d.ts +2 -0
  2. package/dist/components/atoms/Button/Button.d.ts +7 -5
  3. package/dist/components/atoms/Container/Container.d.ts +4 -0
  4. package/dist/components/atoms/Dialog/Dialog.d.ts +1445 -0
  5. package/dist/components/atoms/IconButton/IconButton.d.ts +496 -0
  6. package/dist/components/atoms/Image/Image.d.ts +2 -0
  7. package/dist/components/atoms/Link/Link.d.ts +2 -0
  8. package/dist/components/atoms/NumberField/NumberField.d.ts +7 -0
  9. package/dist/components/atoms/Spin/Spin.d.ts +3 -1
  10. package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +3 -1
  11. package/dist/components/atoms/Tabs/Tabs.d.ts +8 -0
  12. package/dist/components/atoms/Text/Text.d.ts +5 -3
  13. package/dist/components/atoms/TextField/TextField.d.ts +964 -0
  14. package/dist/components/atoms/Toggle/Toggle.d.ts +4 -0
  15. package/dist/components/atoms/Tooltip/Tooltip.d.ts +13 -0
  16. package/dist/components/atoms/index.d.ts +3 -0
  17. package/dist/components/icons/AlertIcon.d.ts +2 -0
  18. package/dist/components/icons/GlowIconBox.d.ts +2 -0
  19. package/dist/components/icons/Planet.d.ts +2 -0
  20. package/dist/components/icons/index.d.ts +3 -0
  21. package/dist/components/icons/static-icons/CheckIcon.d.ts +1 -0
  22. package/dist/components/icons/static-icons/Coinbase.d.ts +1 -0
  23. package/dist/components/icons/static-icons/CopyIcon.d.ts +1 -0
  24. package/dist/components/icons/static-icons/Metamask.d.ts +1 -0
  25. package/dist/components/icons/static-icons/WalletConnect.d.ts +1 -0
  26. package/dist/components/molecules/Accordion/Accordion.d.ts +4 -0
  27. package/dist/components/molecules/Card/Card.d.ts +4 -0
  28. package/dist/components/molecules/NotificationCard/NotificationCard.d.ts +961 -0
  29. package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +1445 -0
  30. package/dist/components/utils/color-variants.d.ts +2 -0
  31. package/dist/components/utils/styles.d.ts +2 -0
  32. package/dist/index.es.js +292 -43
  33. package/dist/index.js +301 -43
  34. package/dist/stitches.config.d.ts +20 -0
  35. package/package.json +3 -1
@@ -0,0 +1,1445 @@
1
+ import React from "react";
2
+ import { CSS } from "../../../stitches.config";
3
+ import { Text } from "../index";
4
+ export declare const Dialog: import("@stitches/react/types/styled-component").StyledComponent<any, {}, {
5
+ motion: "(prefers-reduced-motion)";
6
+ hover: "(any-hover: hover)";
7
+ dark: "(prefers-color-scheme: dark)";
8
+ light: "(prefers-color-scheme: light)";
9
+ xs: "(max-width: 520px)";
10
+ sm: "(max-width: 900px)";
11
+ bp2: "(min-width: 900px)";
12
+ md: "(max-width: 1200px)";
13
+ lg: "(max-width: 1800px)";
14
+ }, import("@stitches/react/types/css-util").CSS<{
15
+ motion: "(prefers-reduced-motion)";
16
+ hover: "(any-hover: hover)";
17
+ dark: "(prefers-color-scheme: dark)";
18
+ light: "(prefers-color-scheme: light)";
19
+ xs: "(max-width: 520px)";
20
+ sm: "(max-width: 900px)";
21
+ bp2: "(min-width: 900px)";
22
+ md: "(max-width: 1200px)";
23
+ lg: "(max-width: 1800px)";
24
+ }, {
25
+ colors: {
26
+ white: string;
27
+ black: string;
28
+ lightBackground: string;
29
+ obolBlue: string;
30
+ primaryBgDefault: string;
31
+ primaryBgDefaultHover: string;
32
+ primaryTextDefault: string;
33
+ secondaryBgDefault: string;
34
+ secondaryBgHover: string;
35
+ grayBgDefault: string;
36
+ gray2BgDefault: string;
37
+ neutralDark: string;
38
+ navButtonBgDefault: string;
39
+ navButtonBgHover: string;
40
+ cardBackgroundDark: string;
41
+ cardBackgroundLight: string;
42
+ textMiddle: string;
43
+ textLight: string;
44
+ textTabHover: string;
45
+ textTabInactive: string;
46
+ textGreenDark: string;
47
+ textGreenLight: string;
48
+ textGreen1: string;
49
+ textGreen2: string;
50
+ textGreen3: string;
51
+ textGreenHover: string;
52
+ textCreateHover: string;
53
+ textGrayHover: string;
54
+ txButton: string;
55
+ obolGreen: string;
56
+ obolGreenHover: string;
57
+ obolGreenLight: string;
58
+ obolDarkDark: string;
59
+ obolDisabled: string;
60
+ linkButtonHover: string;
61
+ coordinate: string;
62
+ coordinateHover: string;
63
+ test: string;
64
+ testHover: string;
65
+ create: string;
66
+ createHover: string;
67
+ light: string;
68
+ body: string;
69
+ muted: string;
70
+ menu: string;
71
+ bg01: string;
72
+ bg02: string;
73
+ bg03: string;
74
+ bg04: string;
75
+ bg05: string;
76
+ tooltip: string;
77
+ tooltip2: string;
78
+ };
79
+ space: {
80
+ 1: string;
81
+ 2: string;
82
+ xxxs: string;
83
+ xxs: string;
84
+ xs: string;
85
+ sm: string;
86
+ md: string;
87
+ lg: string;
88
+ xl: string;
89
+ "2xl": string;
90
+ "3xl": string;
91
+ "4xl": string;
92
+ "5xl": string;
93
+ "6xl": string;
94
+ "7xl": string;
95
+ };
96
+ sizes: {
97
+ 1: string;
98
+ 2: string;
99
+ xxxs: string;
100
+ xxs: string;
101
+ xs: string;
102
+ sm: string;
103
+ md: string;
104
+ lg: string;
105
+ xl: string;
106
+ "2xl": string;
107
+ "3xl": string;
108
+ "4xl": string;
109
+ "5xl": string;
110
+ "6xl": string;
111
+ "7xl": string;
112
+ max: string;
113
+ min: string;
114
+ full: string;
115
+ };
116
+ radii: {
117
+ 1: string;
118
+ 2: string;
119
+ 3: string;
120
+ 4: string;
121
+ 5: string;
122
+ round: string;
123
+ pill: string;
124
+ };
125
+ fontSizes: {
126
+ 1: string;
127
+ 2: string;
128
+ 3: string;
129
+ 4: string;
130
+ 5: string;
131
+ 6: string;
132
+ 7: string;
133
+ 8: string;
134
+ 9: string;
135
+ 10: string;
136
+ 11: string;
137
+ };
138
+ fontWeights: {
139
+ hairline: number;
140
+ thin: number;
141
+ light: number;
142
+ normal: number;
143
+ medium: number;
144
+ semibold: number;
145
+ bold: number;
146
+ extrabold: number;
147
+ black: number;
148
+ };
149
+ lineHeights: {
150
+ normal: string;
151
+ none: number;
152
+ shorter: number;
153
+ short: number;
154
+ base: number;
155
+ tall: number;
156
+ tall2: number;
157
+ taller: string;
158
+ };
159
+ letterSpacings: {
160
+ tighter: string;
161
+ tight: string;
162
+ normal: string;
163
+ wide: string;
164
+ wider: string;
165
+ widest: string;
166
+ };
167
+ borderWidths: unknown;
168
+ borderStyles: unknown;
169
+ shadows: unknown;
170
+ zIndices: unknown;
171
+ transitions: unknown;
172
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
173
+ p: (value: {
174
+ readonly [$$PropertyValue]: "padding";
175
+ }) => {
176
+ padding: {
177
+ readonly [$$PropertyValue]: "padding";
178
+ };
179
+ };
180
+ pt: (value: {
181
+ readonly [$$PropertyValue]: "paddingTop";
182
+ }) => {
183
+ paddingTop: {
184
+ readonly [$$PropertyValue]: "paddingTop";
185
+ };
186
+ };
187
+ pr: (value: {
188
+ readonly [$$PropertyValue]: "paddingRight";
189
+ }) => {
190
+ paddingRight: {
191
+ readonly [$$PropertyValue]: "paddingRight";
192
+ };
193
+ };
194
+ pb: (value: {
195
+ readonly [$$PropertyValue]: "paddingBottom";
196
+ }) => {
197
+ paddingBottom: {
198
+ readonly [$$PropertyValue]: "paddingBottom";
199
+ };
200
+ };
201
+ pl: (value: {
202
+ readonly [$$PropertyValue]: "paddingLeft";
203
+ }) => {
204
+ paddingLeft: {
205
+ readonly [$$PropertyValue]: "paddingLeft";
206
+ };
207
+ };
208
+ px: (value: {
209
+ readonly [$$PropertyValue]: "paddingLeft";
210
+ }) => {
211
+ paddingLeft: {
212
+ readonly [$$PropertyValue]: "paddingLeft";
213
+ };
214
+ paddingRight: {
215
+ readonly [$$PropertyValue]: "paddingLeft";
216
+ };
217
+ };
218
+ py: (value: {
219
+ readonly [$$PropertyValue]: "paddingTop";
220
+ }) => {
221
+ paddingTop: {
222
+ readonly [$$PropertyValue]: "paddingTop";
223
+ };
224
+ paddingBottom: {
225
+ readonly [$$PropertyValue]: "paddingTop";
226
+ };
227
+ };
228
+ m: (value: {
229
+ readonly [$$PropertyValue]: "margin";
230
+ }) => {
231
+ margin: {
232
+ readonly [$$PropertyValue]: "margin";
233
+ };
234
+ };
235
+ mt: (value: {
236
+ readonly [$$PropertyValue]: "marginTop";
237
+ }) => {
238
+ marginTop: {
239
+ readonly [$$PropertyValue]: "marginTop";
240
+ };
241
+ };
242
+ mr: (value: {
243
+ readonly [$$PropertyValue]: "marginRight";
244
+ }) => {
245
+ marginRight: {
246
+ readonly [$$PropertyValue]: "marginRight";
247
+ };
248
+ };
249
+ mb: (value: {
250
+ readonly [$$PropertyValue]: "marginBottom";
251
+ }) => {
252
+ marginBottom: {
253
+ readonly [$$PropertyValue]: "marginBottom";
254
+ };
255
+ };
256
+ ml: (value: {
257
+ readonly [$$PropertyValue]: "marginLeft";
258
+ }) => {
259
+ marginLeft: {
260
+ readonly [$$PropertyValue]: "marginLeft";
261
+ };
262
+ };
263
+ mx: (value: {
264
+ readonly [$$PropertyValue]: "marginLeft";
265
+ }) => {
266
+ marginLeft: {
267
+ readonly [$$PropertyValue]: "marginLeft";
268
+ };
269
+ marginRight: {
270
+ readonly [$$PropertyValue]: "marginLeft";
271
+ };
272
+ };
273
+ my: (value: {
274
+ readonly [$$PropertyValue]: "marginTop";
275
+ }) => {
276
+ marginTop: {
277
+ readonly [$$PropertyValue]: "marginTop";
278
+ };
279
+ marginBottom: {
280
+ readonly [$$PropertyValue]: "marginTop";
281
+ };
282
+ };
283
+ ta: (value: {
284
+ readonly [$$PropertyValue]: "textAlign";
285
+ }) => {
286
+ textAlign: {
287
+ readonly [$$PropertyValue]: "textAlign";
288
+ };
289
+ };
290
+ fd: (value: {
291
+ readonly [$$PropertyValue]: "flexDirection";
292
+ }) => {
293
+ flexDirection: {
294
+ readonly [$$PropertyValue]: "flexDirection";
295
+ };
296
+ };
297
+ fw: (value: {
298
+ readonly [$$PropertyValue]: "flexWrap";
299
+ }) => {
300
+ flexWrap: {
301
+ readonly [$$PropertyValue]: "flexWrap";
302
+ };
303
+ };
304
+ ai: (value: {
305
+ readonly [$$PropertyValue]: "alignItems";
306
+ }) => {
307
+ alignItems: {
308
+ readonly [$$PropertyValue]: "alignItems";
309
+ };
310
+ };
311
+ ac: (value: {
312
+ readonly [$$PropertyValue]: "alignContent";
313
+ }) => {
314
+ alignContent: {
315
+ readonly [$$PropertyValue]: "alignContent";
316
+ };
317
+ };
318
+ jc: (value: {
319
+ readonly [$$PropertyValue]: "justifyContent";
320
+ }) => {
321
+ justifyContent: {
322
+ readonly [$$PropertyValue]: "justifyContent";
323
+ };
324
+ };
325
+ as: (value: {
326
+ readonly [$$PropertyValue]: "alignSelf";
327
+ }) => {
328
+ alignSelf: {
329
+ readonly [$$PropertyValue]: "alignSelf";
330
+ };
331
+ };
332
+ fg: (value: {
333
+ readonly [$$PropertyValue]: "flexGrow";
334
+ }) => {
335
+ flexGrow: {
336
+ readonly [$$PropertyValue]: "flexGrow";
337
+ };
338
+ };
339
+ fs: (value: {
340
+ readonly [$$PropertyValue]: "flexShrink";
341
+ }) => {
342
+ flexShrink: {
343
+ readonly [$$PropertyValue]: "flexShrink";
344
+ };
345
+ };
346
+ fb: (value: {
347
+ readonly [$$PropertyValue]: "flexBasis";
348
+ }) => {
349
+ flexBasis: {
350
+ readonly [$$PropertyValue]: "flexBasis";
351
+ };
352
+ };
353
+ bc: (value: {
354
+ readonly [$$PropertyValue]: "backgroundColor";
355
+ }) => {
356
+ backgroundColor: {
357
+ readonly [$$PropertyValue]: "backgroundColor";
358
+ };
359
+ };
360
+ br: (value: {
361
+ readonly [$$PropertyValue]: "borderRadius";
362
+ }) => {
363
+ borderRadius: {
364
+ readonly [$$PropertyValue]: "borderRadius";
365
+ };
366
+ };
367
+ btrr: (value: {
368
+ readonly [$$PropertyValue]: "borderTopRightRadius";
369
+ }) => {
370
+ borderTopRightRadius: {
371
+ readonly [$$PropertyValue]: "borderTopRightRadius";
372
+ };
373
+ };
374
+ bbrr: (value: {
375
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
376
+ }) => {
377
+ borderBottomRightRadius: {
378
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
379
+ };
380
+ };
381
+ bblr: (value: {
382
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
383
+ }) => {
384
+ borderBottomLeftRadius: {
385
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
386
+ };
387
+ };
388
+ btlr: (value: {
389
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
390
+ }) => {
391
+ borderTopLeftRadius: {
392
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
393
+ };
394
+ };
395
+ bs: (value: {
396
+ readonly [$$PropertyValue]: "boxShadow";
397
+ }) => {
398
+ boxShadow: {
399
+ readonly [$$PropertyValue]: "boxShadow";
400
+ };
401
+ };
402
+ lh: (value: {
403
+ readonly [$$PropertyValue]: "lineHeight";
404
+ }) => {
405
+ lineHeight: {
406
+ readonly [$$PropertyValue]: "lineHeight";
407
+ };
408
+ };
409
+ ox: (value: {
410
+ readonly [$$PropertyValue]: "overflowX";
411
+ }) => {
412
+ overflowX: {
413
+ readonly [$$PropertyValue]: "overflowX";
414
+ };
415
+ };
416
+ oy: (value: {
417
+ readonly [$$PropertyValue]: "overflowY";
418
+ }) => {
419
+ overflowY: {
420
+ readonly [$$PropertyValue]: "overflowY";
421
+ };
422
+ };
423
+ pe: (value: {
424
+ readonly [$$PropertyValue]: "pointerEvents";
425
+ }) => {
426
+ pointerEvents: {
427
+ readonly [$$PropertyValue]: "pointerEvents";
428
+ };
429
+ };
430
+ us: (value: {
431
+ readonly [$$PropertyValue]: "userSelect";
432
+ }) => {
433
+ WebkitUserSelect: {
434
+ readonly [$$PropertyValue]: "userSelect";
435
+ };
436
+ userSelect: {
437
+ readonly [$$PropertyValue]: "userSelect";
438
+ };
439
+ };
440
+ userSelect: (value: {
441
+ readonly [$$PropertyValue]: "userSelect";
442
+ }) => {
443
+ WebkitUserSelect: {
444
+ readonly [$$PropertyValue]: "userSelect";
445
+ };
446
+ userSelect: {
447
+ readonly [$$PropertyValue]: "userSelect";
448
+ };
449
+ };
450
+ size: (value: {
451
+ readonly [$$PropertyValue]: "width";
452
+ }) => {
453
+ width: {
454
+ readonly [$$PropertyValue]: "width";
455
+ };
456
+ height: {
457
+ readonly [$$PropertyValue]: "width";
458
+ };
459
+ };
460
+ appearance: (value: {
461
+ readonly [$$PropertyValue]: "appearance";
462
+ }) => {
463
+ WebkitAppearance: {
464
+ readonly [$$PropertyValue]: "appearance";
465
+ };
466
+ appearance: {
467
+ readonly [$$PropertyValue]: "appearance";
468
+ };
469
+ };
470
+ backgroundClip: (value: {
471
+ readonly [$$PropertyValue]: "backgroundClip";
472
+ }) => {
473
+ WebkitBackgroundClip: {
474
+ readonly [$$PropertyValue]: "backgroundClip";
475
+ };
476
+ backgroundClip: {
477
+ readonly [$$PropertyValue]: "backgroundClip";
478
+ };
479
+ };
480
+ }>>;
481
+ export declare const DialogTrigger: any;
482
+ export declare const DialogContent: React.FC<{}>;
483
+ export declare const DialogTitle: import("@stitches/react/types/styled-component").StyledComponent<any, {}, {
484
+ motion: "(prefers-reduced-motion)";
485
+ hover: "(any-hover: hover)";
486
+ dark: "(prefers-color-scheme: dark)";
487
+ light: "(prefers-color-scheme: light)";
488
+ xs: "(max-width: 520px)";
489
+ sm: "(max-width: 900px)";
490
+ bp2: "(min-width: 900px)";
491
+ md: "(max-width: 1200px)";
492
+ lg: "(max-width: 1800px)";
493
+ }, import("@stitches/react/types/css-util").CSS<{
494
+ motion: "(prefers-reduced-motion)";
495
+ hover: "(any-hover: hover)";
496
+ dark: "(prefers-color-scheme: dark)";
497
+ light: "(prefers-color-scheme: light)";
498
+ xs: "(max-width: 520px)";
499
+ sm: "(max-width: 900px)";
500
+ bp2: "(min-width: 900px)";
501
+ md: "(max-width: 1200px)";
502
+ lg: "(max-width: 1800px)";
503
+ }, {
504
+ colors: {
505
+ white: string;
506
+ black: string;
507
+ lightBackground: string;
508
+ obolBlue: string;
509
+ primaryBgDefault: string;
510
+ primaryBgDefaultHover: string;
511
+ primaryTextDefault: string;
512
+ secondaryBgDefault: string;
513
+ secondaryBgHover: string;
514
+ grayBgDefault: string;
515
+ gray2BgDefault: string;
516
+ neutralDark: string;
517
+ navButtonBgDefault: string;
518
+ navButtonBgHover: string;
519
+ cardBackgroundDark: string;
520
+ cardBackgroundLight: string;
521
+ textMiddle: string;
522
+ textLight: string;
523
+ textTabHover: string;
524
+ textTabInactive: string;
525
+ textGreenDark: string;
526
+ textGreenLight: string;
527
+ textGreen1: string;
528
+ textGreen2: string;
529
+ textGreen3: string;
530
+ textGreenHover: string;
531
+ textCreateHover: string;
532
+ textGrayHover: string;
533
+ txButton: string;
534
+ obolGreen: string;
535
+ obolGreenHover: string;
536
+ obolGreenLight: string;
537
+ obolDarkDark: string;
538
+ obolDisabled: string;
539
+ linkButtonHover: string;
540
+ coordinate: string;
541
+ coordinateHover: string;
542
+ test: string;
543
+ testHover: string;
544
+ create: string;
545
+ createHover: string;
546
+ light: string;
547
+ body: string;
548
+ muted: string;
549
+ menu: string;
550
+ bg01: string;
551
+ bg02: string;
552
+ bg03: string;
553
+ bg04: string;
554
+ bg05: string;
555
+ tooltip: string;
556
+ tooltip2: string;
557
+ };
558
+ space: {
559
+ 1: string;
560
+ 2: string;
561
+ xxxs: string;
562
+ xxs: string;
563
+ xs: string;
564
+ sm: string;
565
+ md: string;
566
+ lg: string;
567
+ xl: string;
568
+ "2xl": string;
569
+ "3xl": string;
570
+ "4xl": string;
571
+ "5xl": string;
572
+ "6xl": string;
573
+ "7xl": string;
574
+ };
575
+ sizes: {
576
+ 1: string;
577
+ 2: string;
578
+ xxxs: string;
579
+ xxs: string;
580
+ xs: string;
581
+ sm: string;
582
+ md: string;
583
+ lg: string;
584
+ xl: string;
585
+ "2xl": string;
586
+ "3xl": string;
587
+ "4xl": string;
588
+ "5xl": string;
589
+ "6xl": string;
590
+ "7xl": string;
591
+ max: string;
592
+ min: string;
593
+ full: string;
594
+ };
595
+ radii: {
596
+ 1: string;
597
+ 2: string;
598
+ 3: string;
599
+ 4: string;
600
+ 5: string;
601
+ round: string;
602
+ pill: string;
603
+ };
604
+ fontSizes: {
605
+ 1: string;
606
+ 2: string;
607
+ 3: string;
608
+ 4: string;
609
+ 5: string;
610
+ 6: string;
611
+ 7: string;
612
+ 8: string;
613
+ 9: string;
614
+ 10: string;
615
+ 11: string;
616
+ };
617
+ fontWeights: {
618
+ hairline: number;
619
+ thin: number;
620
+ light: number;
621
+ normal: number;
622
+ medium: number;
623
+ semibold: number;
624
+ bold: number;
625
+ extrabold: number;
626
+ black: number;
627
+ };
628
+ lineHeights: {
629
+ normal: string;
630
+ none: number;
631
+ shorter: number;
632
+ short: number;
633
+ base: number;
634
+ tall: number;
635
+ tall2: number;
636
+ taller: string;
637
+ };
638
+ letterSpacings: {
639
+ tighter: string;
640
+ tight: string;
641
+ normal: string;
642
+ wide: string;
643
+ wider: string;
644
+ widest: string;
645
+ };
646
+ borderWidths: unknown;
647
+ borderStyles: unknown;
648
+ shadows: unknown;
649
+ zIndices: unknown;
650
+ transitions: unknown;
651
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
652
+ p: (value: {
653
+ readonly [$$PropertyValue]: "padding";
654
+ }) => {
655
+ padding: {
656
+ readonly [$$PropertyValue]: "padding";
657
+ };
658
+ };
659
+ pt: (value: {
660
+ readonly [$$PropertyValue]: "paddingTop";
661
+ }) => {
662
+ paddingTop: {
663
+ readonly [$$PropertyValue]: "paddingTop";
664
+ };
665
+ };
666
+ pr: (value: {
667
+ readonly [$$PropertyValue]: "paddingRight";
668
+ }) => {
669
+ paddingRight: {
670
+ readonly [$$PropertyValue]: "paddingRight";
671
+ };
672
+ };
673
+ pb: (value: {
674
+ readonly [$$PropertyValue]: "paddingBottom";
675
+ }) => {
676
+ paddingBottom: {
677
+ readonly [$$PropertyValue]: "paddingBottom";
678
+ };
679
+ };
680
+ pl: (value: {
681
+ readonly [$$PropertyValue]: "paddingLeft";
682
+ }) => {
683
+ paddingLeft: {
684
+ readonly [$$PropertyValue]: "paddingLeft";
685
+ };
686
+ };
687
+ px: (value: {
688
+ readonly [$$PropertyValue]: "paddingLeft";
689
+ }) => {
690
+ paddingLeft: {
691
+ readonly [$$PropertyValue]: "paddingLeft";
692
+ };
693
+ paddingRight: {
694
+ readonly [$$PropertyValue]: "paddingLeft";
695
+ };
696
+ };
697
+ py: (value: {
698
+ readonly [$$PropertyValue]: "paddingTop";
699
+ }) => {
700
+ paddingTop: {
701
+ readonly [$$PropertyValue]: "paddingTop";
702
+ };
703
+ paddingBottom: {
704
+ readonly [$$PropertyValue]: "paddingTop";
705
+ };
706
+ };
707
+ m: (value: {
708
+ readonly [$$PropertyValue]: "margin";
709
+ }) => {
710
+ margin: {
711
+ readonly [$$PropertyValue]: "margin";
712
+ };
713
+ };
714
+ mt: (value: {
715
+ readonly [$$PropertyValue]: "marginTop";
716
+ }) => {
717
+ marginTop: {
718
+ readonly [$$PropertyValue]: "marginTop";
719
+ };
720
+ };
721
+ mr: (value: {
722
+ readonly [$$PropertyValue]: "marginRight";
723
+ }) => {
724
+ marginRight: {
725
+ readonly [$$PropertyValue]: "marginRight";
726
+ };
727
+ };
728
+ mb: (value: {
729
+ readonly [$$PropertyValue]: "marginBottom";
730
+ }) => {
731
+ marginBottom: {
732
+ readonly [$$PropertyValue]: "marginBottom";
733
+ };
734
+ };
735
+ ml: (value: {
736
+ readonly [$$PropertyValue]: "marginLeft";
737
+ }) => {
738
+ marginLeft: {
739
+ readonly [$$PropertyValue]: "marginLeft";
740
+ };
741
+ };
742
+ mx: (value: {
743
+ readonly [$$PropertyValue]: "marginLeft";
744
+ }) => {
745
+ marginLeft: {
746
+ readonly [$$PropertyValue]: "marginLeft";
747
+ };
748
+ marginRight: {
749
+ readonly [$$PropertyValue]: "marginLeft";
750
+ };
751
+ };
752
+ my: (value: {
753
+ readonly [$$PropertyValue]: "marginTop";
754
+ }) => {
755
+ marginTop: {
756
+ readonly [$$PropertyValue]: "marginTop";
757
+ };
758
+ marginBottom: {
759
+ readonly [$$PropertyValue]: "marginTop";
760
+ };
761
+ };
762
+ ta: (value: {
763
+ readonly [$$PropertyValue]: "textAlign";
764
+ }) => {
765
+ textAlign: {
766
+ readonly [$$PropertyValue]: "textAlign";
767
+ };
768
+ };
769
+ fd: (value: {
770
+ readonly [$$PropertyValue]: "flexDirection";
771
+ }) => {
772
+ flexDirection: {
773
+ readonly [$$PropertyValue]: "flexDirection";
774
+ };
775
+ };
776
+ fw: (value: {
777
+ readonly [$$PropertyValue]: "flexWrap";
778
+ }) => {
779
+ flexWrap: {
780
+ readonly [$$PropertyValue]: "flexWrap";
781
+ };
782
+ };
783
+ ai: (value: {
784
+ readonly [$$PropertyValue]: "alignItems";
785
+ }) => {
786
+ alignItems: {
787
+ readonly [$$PropertyValue]: "alignItems";
788
+ };
789
+ };
790
+ ac: (value: {
791
+ readonly [$$PropertyValue]: "alignContent";
792
+ }) => {
793
+ alignContent: {
794
+ readonly [$$PropertyValue]: "alignContent";
795
+ };
796
+ };
797
+ jc: (value: {
798
+ readonly [$$PropertyValue]: "justifyContent";
799
+ }) => {
800
+ justifyContent: {
801
+ readonly [$$PropertyValue]: "justifyContent";
802
+ };
803
+ };
804
+ as: (value: {
805
+ readonly [$$PropertyValue]: "alignSelf";
806
+ }) => {
807
+ alignSelf: {
808
+ readonly [$$PropertyValue]: "alignSelf";
809
+ };
810
+ };
811
+ fg: (value: {
812
+ readonly [$$PropertyValue]: "flexGrow";
813
+ }) => {
814
+ flexGrow: {
815
+ readonly [$$PropertyValue]: "flexGrow";
816
+ };
817
+ };
818
+ fs: (value: {
819
+ readonly [$$PropertyValue]: "flexShrink";
820
+ }) => {
821
+ flexShrink: {
822
+ readonly [$$PropertyValue]: "flexShrink";
823
+ };
824
+ };
825
+ fb: (value: {
826
+ readonly [$$PropertyValue]: "flexBasis";
827
+ }) => {
828
+ flexBasis: {
829
+ readonly [$$PropertyValue]: "flexBasis";
830
+ };
831
+ };
832
+ bc: (value: {
833
+ readonly [$$PropertyValue]: "backgroundColor";
834
+ }) => {
835
+ backgroundColor: {
836
+ readonly [$$PropertyValue]: "backgroundColor";
837
+ };
838
+ };
839
+ br: (value: {
840
+ readonly [$$PropertyValue]: "borderRadius";
841
+ }) => {
842
+ borderRadius: {
843
+ readonly [$$PropertyValue]: "borderRadius";
844
+ };
845
+ };
846
+ btrr: (value: {
847
+ readonly [$$PropertyValue]: "borderTopRightRadius";
848
+ }) => {
849
+ borderTopRightRadius: {
850
+ readonly [$$PropertyValue]: "borderTopRightRadius";
851
+ };
852
+ };
853
+ bbrr: (value: {
854
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
855
+ }) => {
856
+ borderBottomRightRadius: {
857
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
858
+ };
859
+ };
860
+ bblr: (value: {
861
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
862
+ }) => {
863
+ borderBottomLeftRadius: {
864
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
865
+ };
866
+ };
867
+ btlr: (value: {
868
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
869
+ }) => {
870
+ borderTopLeftRadius: {
871
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
872
+ };
873
+ };
874
+ bs: (value: {
875
+ readonly [$$PropertyValue]: "boxShadow";
876
+ }) => {
877
+ boxShadow: {
878
+ readonly [$$PropertyValue]: "boxShadow";
879
+ };
880
+ };
881
+ lh: (value: {
882
+ readonly [$$PropertyValue]: "lineHeight";
883
+ }) => {
884
+ lineHeight: {
885
+ readonly [$$PropertyValue]: "lineHeight";
886
+ };
887
+ };
888
+ ox: (value: {
889
+ readonly [$$PropertyValue]: "overflowX";
890
+ }) => {
891
+ overflowX: {
892
+ readonly [$$PropertyValue]: "overflowX";
893
+ };
894
+ };
895
+ oy: (value: {
896
+ readonly [$$PropertyValue]: "overflowY";
897
+ }) => {
898
+ overflowY: {
899
+ readonly [$$PropertyValue]: "overflowY";
900
+ };
901
+ };
902
+ pe: (value: {
903
+ readonly [$$PropertyValue]: "pointerEvents";
904
+ }) => {
905
+ pointerEvents: {
906
+ readonly [$$PropertyValue]: "pointerEvents";
907
+ };
908
+ };
909
+ us: (value: {
910
+ readonly [$$PropertyValue]: "userSelect";
911
+ }) => {
912
+ WebkitUserSelect: {
913
+ readonly [$$PropertyValue]: "userSelect";
914
+ };
915
+ userSelect: {
916
+ readonly [$$PropertyValue]: "userSelect";
917
+ };
918
+ };
919
+ userSelect: (value: {
920
+ readonly [$$PropertyValue]: "userSelect";
921
+ }) => {
922
+ WebkitUserSelect: {
923
+ readonly [$$PropertyValue]: "userSelect";
924
+ };
925
+ userSelect: {
926
+ readonly [$$PropertyValue]: "userSelect";
927
+ };
928
+ };
929
+ size: (value: {
930
+ readonly [$$PropertyValue]: "width";
931
+ }) => {
932
+ width: {
933
+ readonly [$$PropertyValue]: "width";
934
+ };
935
+ height: {
936
+ readonly [$$PropertyValue]: "width";
937
+ };
938
+ };
939
+ appearance: (value: {
940
+ readonly [$$PropertyValue]: "appearance";
941
+ }) => {
942
+ WebkitAppearance: {
943
+ readonly [$$PropertyValue]: "appearance";
944
+ };
945
+ appearance: {
946
+ readonly [$$PropertyValue]: "appearance";
947
+ };
948
+ };
949
+ backgroundClip: (value: {
950
+ readonly [$$PropertyValue]: "backgroundClip";
951
+ }) => {
952
+ WebkitBackgroundClip: {
953
+ readonly [$$PropertyValue]: "backgroundClip";
954
+ };
955
+ backgroundClip: {
956
+ readonly [$$PropertyValue]: "backgroundClip";
957
+ };
958
+ };
959
+ }>>;
960
+ export declare const DialogDescription: import("@stitches/react/types/styled-component").StyledComponent<any, {}, {
961
+ motion: "(prefers-reduced-motion)";
962
+ hover: "(any-hover: hover)";
963
+ dark: "(prefers-color-scheme: dark)";
964
+ light: "(prefers-color-scheme: light)";
965
+ xs: "(max-width: 520px)";
966
+ sm: "(max-width: 900px)";
967
+ bp2: "(min-width: 900px)";
968
+ md: "(max-width: 1200px)";
969
+ lg: "(max-width: 1800px)";
970
+ }, import("@stitches/react/types/css-util").CSS<{
971
+ motion: "(prefers-reduced-motion)";
972
+ hover: "(any-hover: hover)";
973
+ dark: "(prefers-color-scheme: dark)";
974
+ light: "(prefers-color-scheme: light)";
975
+ xs: "(max-width: 520px)";
976
+ sm: "(max-width: 900px)";
977
+ bp2: "(min-width: 900px)";
978
+ md: "(max-width: 1200px)";
979
+ lg: "(max-width: 1800px)";
980
+ }, {
981
+ colors: {
982
+ white: string;
983
+ black: string;
984
+ lightBackground: string;
985
+ obolBlue: string;
986
+ primaryBgDefault: string;
987
+ primaryBgDefaultHover: string;
988
+ primaryTextDefault: string;
989
+ secondaryBgDefault: string;
990
+ secondaryBgHover: string;
991
+ grayBgDefault: string;
992
+ gray2BgDefault: string;
993
+ neutralDark: string;
994
+ navButtonBgDefault: string;
995
+ navButtonBgHover: string;
996
+ cardBackgroundDark: string;
997
+ cardBackgroundLight: string;
998
+ textMiddle: string;
999
+ textLight: string;
1000
+ textTabHover: string;
1001
+ textTabInactive: string;
1002
+ textGreenDark: string;
1003
+ textGreenLight: string;
1004
+ textGreen1: string;
1005
+ textGreen2: string;
1006
+ textGreen3: string;
1007
+ textGreenHover: string;
1008
+ textCreateHover: string;
1009
+ textGrayHover: string;
1010
+ txButton: string;
1011
+ obolGreen: string;
1012
+ obolGreenHover: string;
1013
+ obolGreenLight: string;
1014
+ obolDarkDark: string;
1015
+ obolDisabled: string;
1016
+ linkButtonHover: string;
1017
+ coordinate: string;
1018
+ coordinateHover: string;
1019
+ test: string;
1020
+ testHover: string;
1021
+ create: string;
1022
+ createHover: string;
1023
+ light: string;
1024
+ body: string;
1025
+ muted: string;
1026
+ menu: string;
1027
+ bg01: string;
1028
+ bg02: string;
1029
+ bg03: string;
1030
+ bg04: string;
1031
+ bg05: string;
1032
+ tooltip: string;
1033
+ tooltip2: string;
1034
+ };
1035
+ space: {
1036
+ 1: string;
1037
+ 2: string;
1038
+ xxxs: string;
1039
+ xxs: string;
1040
+ xs: string;
1041
+ sm: string;
1042
+ md: string;
1043
+ lg: string;
1044
+ xl: string;
1045
+ "2xl": string;
1046
+ "3xl": string;
1047
+ "4xl": string;
1048
+ "5xl": string;
1049
+ "6xl": string;
1050
+ "7xl": string;
1051
+ };
1052
+ sizes: {
1053
+ 1: string;
1054
+ 2: string;
1055
+ xxxs: string;
1056
+ xxs: string;
1057
+ xs: string;
1058
+ sm: string;
1059
+ md: string;
1060
+ lg: string;
1061
+ xl: string;
1062
+ "2xl": string;
1063
+ "3xl": string;
1064
+ "4xl": string;
1065
+ "5xl": string;
1066
+ "6xl": string;
1067
+ "7xl": string;
1068
+ max: string;
1069
+ min: string;
1070
+ full: string;
1071
+ };
1072
+ radii: {
1073
+ 1: string;
1074
+ 2: string;
1075
+ 3: string;
1076
+ 4: string;
1077
+ 5: string;
1078
+ round: string;
1079
+ pill: string;
1080
+ };
1081
+ fontSizes: {
1082
+ 1: string;
1083
+ 2: string;
1084
+ 3: string;
1085
+ 4: string;
1086
+ 5: string;
1087
+ 6: string;
1088
+ 7: string;
1089
+ 8: string;
1090
+ 9: string;
1091
+ 10: string;
1092
+ 11: string;
1093
+ };
1094
+ fontWeights: {
1095
+ hairline: number;
1096
+ thin: number;
1097
+ light: number;
1098
+ normal: number;
1099
+ medium: number;
1100
+ semibold: number;
1101
+ bold: number;
1102
+ extrabold: number;
1103
+ black: number;
1104
+ };
1105
+ lineHeights: {
1106
+ normal: string;
1107
+ none: number;
1108
+ shorter: number;
1109
+ short: number;
1110
+ base: number;
1111
+ tall: number;
1112
+ tall2: number;
1113
+ taller: string;
1114
+ };
1115
+ letterSpacings: {
1116
+ tighter: string;
1117
+ tight: string;
1118
+ normal: string;
1119
+ wide: string;
1120
+ wider: string;
1121
+ widest: string;
1122
+ };
1123
+ borderWidths: unknown;
1124
+ borderStyles: unknown;
1125
+ shadows: unknown;
1126
+ zIndices: unknown;
1127
+ transitions: unknown;
1128
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1129
+ p: (value: {
1130
+ readonly [$$PropertyValue]: "padding";
1131
+ }) => {
1132
+ padding: {
1133
+ readonly [$$PropertyValue]: "padding";
1134
+ };
1135
+ };
1136
+ pt: (value: {
1137
+ readonly [$$PropertyValue]: "paddingTop";
1138
+ }) => {
1139
+ paddingTop: {
1140
+ readonly [$$PropertyValue]: "paddingTop";
1141
+ };
1142
+ };
1143
+ pr: (value: {
1144
+ readonly [$$PropertyValue]: "paddingRight";
1145
+ }) => {
1146
+ paddingRight: {
1147
+ readonly [$$PropertyValue]: "paddingRight";
1148
+ };
1149
+ };
1150
+ pb: (value: {
1151
+ readonly [$$PropertyValue]: "paddingBottom";
1152
+ }) => {
1153
+ paddingBottom: {
1154
+ readonly [$$PropertyValue]: "paddingBottom";
1155
+ };
1156
+ };
1157
+ pl: (value: {
1158
+ readonly [$$PropertyValue]: "paddingLeft";
1159
+ }) => {
1160
+ paddingLeft: {
1161
+ readonly [$$PropertyValue]: "paddingLeft";
1162
+ };
1163
+ };
1164
+ px: (value: {
1165
+ readonly [$$PropertyValue]: "paddingLeft";
1166
+ }) => {
1167
+ paddingLeft: {
1168
+ readonly [$$PropertyValue]: "paddingLeft";
1169
+ };
1170
+ paddingRight: {
1171
+ readonly [$$PropertyValue]: "paddingLeft";
1172
+ };
1173
+ };
1174
+ py: (value: {
1175
+ readonly [$$PropertyValue]: "paddingTop";
1176
+ }) => {
1177
+ paddingTop: {
1178
+ readonly [$$PropertyValue]: "paddingTop";
1179
+ };
1180
+ paddingBottom: {
1181
+ readonly [$$PropertyValue]: "paddingTop";
1182
+ };
1183
+ };
1184
+ m: (value: {
1185
+ readonly [$$PropertyValue]: "margin";
1186
+ }) => {
1187
+ margin: {
1188
+ readonly [$$PropertyValue]: "margin";
1189
+ };
1190
+ };
1191
+ mt: (value: {
1192
+ readonly [$$PropertyValue]: "marginTop";
1193
+ }) => {
1194
+ marginTop: {
1195
+ readonly [$$PropertyValue]: "marginTop";
1196
+ };
1197
+ };
1198
+ mr: (value: {
1199
+ readonly [$$PropertyValue]: "marginRight";
1200
+ }) => {
1201
+ marginRight: {
1202
+ readonly [$$PropertyValue]: "marginRight";
1203
+ };
1204
+ };
1205
+ mb: (value: {
1206
+ readonly [$$PropertyValue]: "marginBottom";
1207
+ }) => {
1208
+ marginBottom: {
1209
+ readonly [$$PropertyValue]: "marginBottom";
1210
+ };
1211
+ };
1212
+ ml: (value: {
1213
+ readonly [$$PropertyValue]: "marginLeft";
1214
+ }) => {
1215
+ marginLeft: {
1216
+ readonly [$$PropertyValue]: "marginLeft";
1217
+ };
1218
+ };
1219
+ mx: (value: {
1220
+ readonly [$$PropertyValue]: "marginLeft";
1221
+ }) => {
1222
+ marginLeft: {
1223
+ readonly [$$PropertyValue]: "marginLeft";
1224
+ };
1225
+ marginRight: {
1226
+ readonly [$$PropertyValue]: "marginLeft";
1227
+ };
1228
+ };
1229
+ my: (value: {
1230
+ readonly [$$PropertyValue]: "marginTop";
1231
+ }) => {
1232
+ marginTop: {
1233
+ readonly [$$PropertyValue]: "marginTop";
1234
+ };
1235
+ marginBottom: {
1236
+ readonly [$$PropertyValue]: "marginTop";
1237
+ };
1238
+ };
1239
+ ta: (value: {
1240
+ readonly [$$PropertyValue]: "textAlign";
1241
+ }) => {
1242
+ textAlign: {
1243
+ readonly [$$PropertyValue]: "textAlign";
1244
+ };
1245
+ };
1246
+ fd: (value: {
1247
+ readonly [$$PropertyValue]: "flexDirection";
1248
+ }) => {
1249
+ flexDirection: {
1250
+ readonly [$$PropertyValue]: "flexDirection";
1251
+ };
1252
+ };
1253
+ fw: (value: {
1254
+ readonly [$$PropertyValue]: "flexWrap";
1255
+ }) => {
1256
+ flexWrap: {
1257
+ readonly [$$PropertyValue]: "flexWrap";
1258
+ };
1259
+ };
1260
+ ai: (value: {
1261
+ readonly [$$PropertyValue]: "alignItems";
1262
+ }) => {
1263
+ alignItems: {
1264
+ readonly [$$PropertyValue]: "alignItems";
1265
+ };
1266
+ };
1267
+ ac: (value: {
1268
+ readonly [$$PropertyValue]: "alignContent";
1269
+ }) => {
1270
+ alignContent: {
1271
+ readonly [$$PropertyValue]: "alignContent";
1272
+ };
1273
+ };
1274
+ jc: (value: {
1275
+ readonly [$$PropertyValue]: "justifyContent";
1276
+ }) => {
1277
+ justifyContent: {
1278
+ readonly [$$PropertyValue]: "justifyContent";
1279
+ };
1280
+ };
1281
+ as: (value: {
1282
+ readonly [$$PropertyValue]: "alignSelf";
1283
+ }) => {
1284
+ alignSelf: {
1285
+ readonly [$$PropertyValue]: "alignSelf";
1286
+ };
1287
+ };
1288
+ fg: (value: {
1289
+ readonly [$$PropertyValue]: "flexGrow";
1290
+ }) => {
1291
+ flexGrow: {
1292
+ readonly [$$PropertyValue]: "flexGrow";
1293
+ };
1294
+ };
1295
+ fs: (value: {
1296
+ readonly [$$PropertyValue]: "flexShrink";
1297
+ }) => {
1298
+ flexShrink: {
1299
+ readonly [$$PropertyValue]: "flexShrink";
1300
+ };
1301
+ };
1302
+ fb: (value: {
1303
+ readonly [$$PropertyValue]: "flexBasis";
1304
+ }) => {
1305
+ flexBasis: {
1306
+ readonly [$$PropertyValue]: "flexBasis";
1307
+ };
1308
+ };
1309
+ bc: (value: {
1310
+ readonly [$$PropertyValue]: "backgroundColor";
1311
+ }) => {
1312
+ backgroundColor: {
1313
+ readonly [$$PropertyValue]: "backgroundColor";
1314
+ };
1315
+ };
1316
+ br: (value: {
1317
+ readonly [$$PropertyValue]: "borderRadius";
1318
+ }) => {
1319
+ borderRadius: {
1320
+ readonly [$$PropertyValue]: "borderRadius";
1321
+ };
1322
+ };
1323
+ btrr: (value: {
1324
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1325
+ }) => {
1326
+ borderTopRightRadius: {
1327
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1328
+ };
1329
+ };
1330
+ bbrr: (value: {
1331
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1332
+ }) => {
1333
+ borderBottomRightRadius: {
1334
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1335
+ };
1336
+ };
1337
+ bblr: (value: {
1338
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1339
+ }) => {
1340
+ borderBottomLeftRadius: {
1341
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1342
+ };
1343
+ };
1344
+ btlr: (value: {
1345
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1346
+ }) => {
1347
+ borderTopLeftRadius: {
1348
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1349
+ };
1350
+ };
1351
+ bs: (value: {
1352
+ readonly [$$PropertyValue]: "boxShadow";
1353
+ }) => {
1354
+ boxShadow: {
1355
+ readonly [$$PropertyValue]: "boxShadow";
1356
+ };
1357
+ };
1358
+ lh: (value: {
1359
+ readonly [$$PropertyValue]: "lineHeight";
1360
+ }) => {
1361
+ lineHeight: {
1362
+ readonly [$$PropertyValue]: "lineHeight";
1363
+ };
1364
+ };
1365
+ ox: (value: {
1366
+ readonly [$$PropertyValue]: "overflowX";
1367
+ }) => {
1368
+ overflowX: {
1369
+ readonly [$$PropertyValue]: "overflowX";
1370
+ };
1371
+ };
1372
+ oy: (value: {
1373
+ readonly [$$PropertyValue]: "overflowY";
1374
+ }) => {
1375
+ overflowY: {
1376
+ readonly [$$PropertyValue]: "overflowY";
1377
+ };
1378
+ };
1379
+ pe: (value: {
1380
+ readonly [$$PropertyValue]: "pointerEvents";
1381
+ }) => {
1382
+ pointerEvents: {
1383
+ readonly [$$PropertyValue]: "pointerEvents";
1384
+ };
1385
+ };
1386
+ us: (value: {
1387
+ readonly [$$PropertyValue]: "userSelect";
1388
+ }) => {
1389
+ WebkitUserSelect: {
1390
+ readonly [$$PropertyValue]: "userSelect";
1391
+ };
1392
+ userSelect: {
1393
+ readonly [$$PropertyValue]: "userSelect";
1394
+ };
1395
+ };
1396
+ userSelect: (value: {
1397
+ readonly [$$PropertyValue]: "userSelect";
1398
+ }) => {
1399
+ WebkitUserSelect: {
1400
+ readonly [$$PropertyValue]: "userSelect";
1401
+ };
1402
+ userSelect: {
1403
+ readonly [$$PropertyValue]: "userSelect";
1404
+ };
1405
+ };
1406
+ size: (value: {
1407
+ readonly [$$PropertyValue]: "width";
1408
+ }) => {
1409
+ width: {
1410
+ readonly [$$PropertyValue]: "width";
1411
+ };
1412
+ height: {
1413
+ readonly [$$PropertyValue]: "width";
1414
+ };
1415
+ };
1416
+ appearance: (value: {
1417
+ readonly [$$PropertyValue]: "appearance";
1418
+ }) => {
1419
+ WebkitAppearance: {
1420
+ readonly [$$PropertyValue]: "appearance";
1421
+ };
1422
+ appearance: {
1423
+ readonly [$$PropertyValue]: "appearance";
1424
+ };
1425
+ };
1426
+ backgroundClip: (value: {
1427
+ readonly [$$PropertyValue]: "backgroundClip";
1428
+ }) => {
1429
+ WebkitBackgroundClip: {
1430
+ readonly [$$PropertyValue]: "backgroundClip";
1431
+ };
1432
+ backgroundClip: {
1433
+ readonly [$$PropertyValue]: "backgroundClip";
1434
+ };
1435
+ };
1436
+ }>>;
1437
+ export declare const DialogClose: any;
1438
+ interface DialogComponentProps {
1439
+ triggerElement: React.ReactNode;
1440
+ title?: string | typeof Text;
1441
+ description?: string;
1442
+ css?: CSS;
1443
+ }
1444
+ export declare const DialogComponent: React.FC<DialogComponentProps>;
1445
+ export {};