@dafaz-ui/react 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts CHANGED
@@ -1,12 +1,18 @@
1
1
  import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
2
2
  import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
3
3
  import { ComponentProps } from '@stitches/react';
4
- import { ElementType } from 'react';
4
+ import * as react from 'react';
5
+ import { ElementType, ComponentProps as ComponentProps$1 } from 'react';
6
+ import * as _stitches_react_types_theme from '@stitches/react/types/theme';
7
+ import * as _stitches_react_types_css from '@stitches/react/types/css';
8
+ import * as _stitches_react_types_stitches from '@stitches/react/types/stitches';
9
+ import * as _stitches_react_types_util from '@stitches/react/types/util';
5
10
 
6
11
  /** Primary UI component for user interaction */
7
12
  declare const Button: _stitches_react_types_styled_component.StyledComponent<"button", {
8
13
  variant?: "primary" | "secondary" | "tertiary" | undefined;
9
- size?: "sm" | "md" | undefined;
14
+ size?: "sm" | "md" | "lg" | undefined;
15
+ flat?: boolean | "true" | "false" | undefined;
10
16
  }, {}, _stitches_react_types_css_util.CSS<{}, {
11
17
  colors: {
12
18
  white: string;
@@ -210,7 +216,7 @@ declare const Button: _stitches_react_types_styled_component.StyledComponent<"bu
210
216
  interface ButtonProps extends ComponentProps<typeof Button> {
211
217
  as?: ElementType;
212
218
  /** How large should the button be? */
213
- size?: 'sm' | 'md';
219
+ size?: 'sm' | 'md' | 'lg';
214
220
  /** Optional click handler */
215
221
  onClick?: () => void;
216
222
  /** Button contents */
@@ -218,6 +224,1889 @@ interface ButtonProps extends ComponentProps<typeof Button> {
218
224
  /** Button is disable? */
219
225
  disabled?: boolean;
220
226
  variant?: 'primary' | 'secondary' | 'tertiary';
227
+ flat?: boolean;
221
228
  }
222
229
 
223
- export { Button, type ButtonProps };
230
+ declare const Text: _stitches_react_types_styled_component.StyledComponent<"p", {
231
+ size?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
232
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
233
+ colors: {
234
+ white: string;
235
+ black: string;
236
+ gray100: string;
237
+ gray200: string;
238
+ gray400: string;
239
+ gray800: string;
240
+ dafaz100: string;
241
+ dafaz200: string;
242
+ dafaz400: string;
243
+ dafaz600: string;
244
+ dafaz800: string;
245
+ };
246
+ fontSizes: {
247
+ xxs: string;
248
+ xs: string;
249
+ sm: string;
250
+ md: string;
251
+ lg: string;
252
+ xl: string;
253
+ '2xl': string;
254
+ };
255
+ fontWeights: {
256
+ regular: string;
257
+ medium: string;
258
+ bold: string;
259
+ };
260
+ fonts: {
261
+ default: string;
262
+ app: string;
263
+ web: string;
264
+ offer: string;
265
+ code: string;
266
+ };
267
+ lineHeights: {
268
+ shorter: string;
269
+ short: string;
270
+ base: string;
271
+ tall: string;
272
+ };
273
+ radii: {
274
+ px: string;
275
+ sm: string;
276
+ md: string;
277
+ full: string;
278
+ };
279
+ space: {
280
+ 1: string;
281
+ 2: string;
282
+ 3: string;
283
+ 4: string;
284
+ 5: string;
285
+ 6: string;
286
+ 7: string;
287
+ 8: string;
288
+ 10: string;
289
+ 12: string;
290
+ 16: string;
291
+ 20: string;
292
+ 40: string;
293
+ 64: string;
294
+ 80: string;
295
+ };
296
+ opacities: {
297
+ opacity400: string;
298
+ opacity600: string;
299
+ opacity800: string;
300
+ opacity900: string;
301
+ };
302
+ }, {
303
+ height: "space";
304
+ width: "space";
305
+ gap: "space";
306
+ gridGap: "space";
307
+ columnGap: "space";
308
+ gridColumnGap: "space";
309
+ rowGap: "space";
310
+ gridRowGap: "space";
311
+ inset: "space";
312
+ insetBlock: "space";
313
+ insetBlockEnd: "space";
314
+ insetBlockStart: "space";
315
+ insetInline: "space";
316
+ insetInlineEnd: "space";
317
+ insetInlineStart: "space";
318
+ margin: "space";
319
+ marginTop: "space";
320
+ marginRight: "space";
321
+ marginBottom: "space";
322
+ marginLeft: "space";
323
+ marginBlock: "space";
324
+ marginBlockEnd: "space";
325
+ marginBlockStart: "space";
326
+ marginInline: "space";
327
+ marginInlineEnd: "space";
328
+ marginInlineStart: "space";
329
+ padding: "space";
330
+ paddingTop: "space";
331
+ paddingRight: "space";
332
+ paddingBottom: "space";
333
+ paddingLeft: "space";
334
+ paddingBlock: "space";
335
+ paddingBlockEnd: "space";
336
+ paddingBlockStart: "space";
337
+ paddingInline: "space";
338
+ paddingInlineEnd: "space";
339
+ paddingInlineStart: "space";
340
+ scrollMargin: "space";
341
+ scrollMarginTop: "space";
342
+ scrollMarginRight: "space";
343
+ scrollMarginBottom: "space";
344
+ scrollMarginLeft: "space";
345
+ scrollMarginBlock: "space";
346
+ scrollMarginBlockEnd: "space";
347
+ scrollMarginBlockStart: "space";
348
+ scrollMarginInline: "space";
349
+ scrollMarginInlineEnd: "space";
350
+ scrollMarginInlineStart: "space";
351
+ scrollPadding: "space";
352
+ scrollPaddingTop: "space";
353
+ scrollPaddingRight: "space";
354
+ scrollPaddingBottom: "space";
355
+ scrollPaddingLeft: "space";
356
+ scrollPaddingBlock: "space";
357
+ scrollPaddingBlockEnd: "space";
358
+ scrollPaddingBlockStart: "space";
359
+ scrollPaddingInline: "space";
360
+ scrollPaddingInlineEnd: "space";
361
+ scrollPaddingInlineStart: "space";
362
+ top: "space";
363
+ right: "space";
364
+ bottom: "space";
365
+ left: "space";
366
+ fontSize: "fontSizes";
367
+ background: "colors";
368
+ backgroundColor: "colors";
369
+ backgroundImage: "colors";
370
+ borderImage: "colors";
371
+ border: "colors";
372
+ borderBlock: "colors";
373
+ borderBlockEnd: "colors";
374
+ borderBlockStart: "colors";
375
+ borderBottom: "colors";
376
+ borderBottomColor: "colors";
377
+ borderColor: "colors";
378
+ borderInline: "colors";
379
+ borderInlineEnd: "colors";
380
+ borderInlineStart: "colors";
381
+ borderLeft: "colors";
382
+ borderLeftColor: "colors";
383
+ borderRight: "colors";
384
+ borderRightColor: "colors";
385
+ borderTop: "colors";
386
+ borderTopColor: "colors";
387
+ caretColor: "colors";
388
+ color: "colors";
389
+ columnRuleColor: "colors";
390
+ outline: "colors";
391
+ outlineColor: "colors";
392
+ fill: "colors";
393
+ stroke: "colors";
394
+ textDecorationColor: "colors";
395
+ fontFamily: "fonts";
396
+ fontWeight: "fontWeights";
397
+ lineHeight: "lineHeights";
398
+ letterSpacing: "letterSpacings";
399
+ blockSize: "sizes";
400
+ minBlockSize: "sizes";
401
+ maxBlockSize: "sizes";
402
+ inlineSize: "sizes";
403
+ minInlineSize: "sizes";
404
+ maxInlineSize: "sizes";
405
+ minWidth: "sizes";
406
+ maxWidth: "sizes";
407
+ minHeight: "sizes";
408
+ maxHeight: "sizes";
409
+ flexBasis: "sizes";
410
+ gridTemplateColumns: "sizes";
411
+ gridTemplateRows: "sizes";
412
+ borderWidth: "borderWidths";
413
+ borderTopWidth: "borderWidths";
414
+ borderLeftWidth: "borderWidths";
415
+ borderRightWidth: "borderWidths";
416
+ borderBottomWidth: "borderWidths";
417
+ borderStyle: "borderStyles";
418
+ borderTopStyle: "borderStyles";
419
+ borderLeftStyle: "borderStyles";
420
+ borderRightStyle: "borderStyles";
421
+ borderBottomStyle: "borderStyles";
422
+ borderRadius: "radii";
423
+ borderTopLeftRadius: "radii";
424
+ borderTopRightRadius: "radii";
425
+ borderBottomRightRadius: "radii";
426
+ borderBottomLeftRadius: "radii";
427
+ boxShadow: "shadows";
428
+ textShadow: "shadows";
429
+ transition: "transitions";
430
+ zIndex: "zIndices";
431
+ }, {}>>;
432
+ interface TextProps extends ComponentProps$1<typeof Text> {
433
+ as?: ElementType;
434
+ content: string;
435
+ size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
436
+ }
437
+
438
+ declare const styled: <Type extends keyof JSX.IntrinsicElements | React.ComponentType<any> | _stitches_react_types_util.Function, Composers extends (string | React.ComponentType<any> | _stitches_react_types_util.Function | {
439
+ [name: string]: unknown;
440
+ })[], CSS = _stitches_react_types_css_util.CSS<{}, {
441
+ colors: {
442
+ white: string;
443
+ black: string;
444
+ gray100: string;
445
+ gray200: string;
446
+ gray400: string;
447
+ gray800: string;
448
+ dafaz100: string;
449
+ dafaz200: string;
450
+ dafaz400: string;
451
+ dafaz600: string;
452
+ dafaz800: string;
453
+ };
454
+ fontSizes: {
455
+ xxs: string;
456
+ xs: string;
457
+ sm: string;
458
+ md: string;
459
+ lg: string;
460
+ xl: string;
461
+ '2xl': string;
462
+ };
463
+ fontWeights: {
464
+ regular: string;
465
+ medium: string;
466
+ bold: string;
467
+ };
468
+ fonts: {
469
+ default: string;
470
+ app: string;
471
+ web: string;
472
+ offer: string;
473
+ code: string;
474
+ };
475
+ lineHeights: {
476
+ shorter: string;
477
+ short: string;
478
+ base: string;
479
+ tall: string;
480
+ };
481
+ radii: {
482
+ px: string;
483
+ sm: string;
484
+ md: string;
485
+ full: string;
486
+ };
487
+ space: {
488
+ 1: string;
489
+ 2: string;
490
+ 3: string;
491
+ 4: string;
492
+ 5: string;
493
+ 6: string;
494
+ 7: string;
495
+ 8: string;
496
+ 10: string;
497
+ 12: string;
498
+ 16: string;
499
+ 20: string;
500
+ 40: string;
501
+ 64: string;
502
+ 80: string;
503
+ };
504
+ opacities: {
505
+ opacity400: string;
506
+ opacity600: string;
507
+ opacity800: string;
508
+ opacity900: string;
509
+ };
510
+ }, {
511
+ height: "space";
512
+ width: "space";
513
+ gap: "space";
514
+ gridGap: "space";
515
+ columnGap: "space";
516
+ gridColumnGap: "space";
517
+ rowGap: "space";
518
+ gridRowGap: "space";
519
+ inset: "space";
520
+ insetBlock: "space";
521
+ insetBlockEnd: "space";
522
+ insetBlockStart: "space";
523
+ insetInline: "space";
524
+ insetInlineEnd: "space";
525
+ insetInlineStart: "space";
526
+ margin: "space";
527
+ marginTop: "space";
528
+ marginRight: "space";
529
+ marginBottom: "space";
530
+ marginLeft: "space";
531
+ marginBlock: "space";
532
+ marginBlockEnd: "space";
533
+ marginBlockStart: "space";
534
+ marginInline: "space";
535
+ marginInlineEnd: "space";
536
+ marginInlineStart: "space";
537
+ padding: "space";
538
+ paddingTop: "space";
539
+ paddingRight: "space";
540
+ paddingBottom: "space";
541
+ paddingLeft: "space";
542
+ paddingBlock: "space";
543
+ paddingBlockEnd: "space";
544
+ paddingBlockStart: "space";
545
+ paddingInline: "space";
546
+ paddingInlineEnd: "space";
547
+ paddingInlineStart: "space";
548
+ scrollMargin: "space";
549
+ scrollMarginTop: "space";
550
+ scrollMarginRight: "space";
551
+ scrollMarginBottom: "space";
552
+ scrollMarginLeft: "space";
553
+ scrollMarginBlock: "space";
554
+ scrollMarginBlockEnd: "space";
555
+ scrollMarginBlockStart: "space";
556
+ scrollMarginInline: "space";
557
+ scrollMarginInlineEnd: "space";
558
+ scrollMarginInlineStart: "space";
559
+ scrollPadding: "space";
560
+ scrollPaddingTop: "space";
561
+ scrollPaddingRight: "space";
562
+ scrollPaddingBottom: "space";
563
+ scrollPaddingLeft: "space";
564
+ scrollPaddingBlock: "space";
565
+ scrollPaddingBlockEnd: "space";
566
+ scrollPaddingBlockStart: "space";
567
+ scrollPaddingInline: "space";
568
+ scrollPaddingInlineEnd: "space";
569
+ scrollPaddingInlineStart: "space";
570
+ top: "space";
571
+ right: "space";
572
+ bottom: "space";
573
+ left: "space";
574
+ fontSize: "fontSizes";
575
+ background: "colors";
576
+ backgroundColor: "colors";
577
+ backgroundImage: "colors";
578
+ borderImage: "colors";
579
+ border: "colors";
580
+ borderBlock: "colors";
581
+ borderBlockEnd: "colors";
582
+ borderBlockStart: "colors";
583
+ borderBottom: "colors";
584
+ borderBottomColor: "colors";
585
+ borderColor: "colors";
586
+ borderInline: "colors";
587
+ borderInlineEnd: "colors";
588
+ borderInlineStart: "colors";
589
+ borderLeft: "colors";
590
+ borderLeftColor: "colors";
591
+ borderRight: "colors";
592
+ borderRightColor: "colors";
593
+ borderTop: "colors";
594
+ borderTopColor: "colors";
595
+ caretColor: "colors";
596
+ color: "colors";
597
+ columnRuleColor: "colors";
598
+ outline: "colors";
599
+ outlineColor: "colors";
600
+ fill: "colors";
601
+ stroke: "colors";
602
+ textDecorationColor: "colors";
603
+ fontFamily: "fonts";
604
+ fontWeight: "fontWeights";
605
+ lineHeight: "lineHeights";
606
+ letterSpacing: "letterSpacings";
607
+ blockSize: "sizes";
608
+ minBlockSize: "sizes";
609
+ maxBlockSize: "sizes";
610
+ inlineSize: "sizes";
611
+ minInlineSize: "sizes";
612
+ maxInlineSize: "sizes";
613
+ minWidth: "sizes";
614
+ maxWidth: "sizes";
615
+ minHeight: "sizes";
616
+ maxHeight: "sizes";
617
+ flexBasis: "sizes";
618
+ gridTemplateColumns: "sizes";
619
+ gridTemplateRows: "sizes";
620
+ borderWidth: "borderWidths";
621
+ borderTopWidth: "borderWidths";
622
+ borderLeftWidth: "borderWidths";
623
+ borderRightWidth: "borderWidths";
624
+ borderBottomWidth: "borderWidths";
625
+ borderStyle: "borderStyles";
626
+ borderTopStyle: "borderStyles";
627
+ borderLeftStyle: "borderStyles";
628
+ borderRightStyle: "borderStyles";
629
+ borderBottomStyle: "borderStyles";
630
+ borderRadius: "radii";
631
+ borderTopLeftRadius: "radii";
632
+ borderTopRightRadius: "radii";
633
+ borderBottomRightRadius: "radii";
634
+ borderBottomLeftRadius: "radii";
635
+ boxShadow: "shadows";
636
+ textShadow: "shadows";
637
+ transition: "transitions";
638
+ zIndex: "zIndices";
639
+ }, {}>>(type: Type, ...composers: { [K in keyof Composers]: string extends Composers[K] ? Composers[K] : Composers[K] extends string | _stitches_react_types_util.Function | react.ComponentType<any> ? Composers[K] : _stitches_react_types_stitches.RemoveIndex<CSS> & {
640
+ variants?: {
641
+ [x: string]: {
642
+ [x: string]: CSS;
643
+ [x: number]: CSS;
644
+ };
645
+ } | undefined;
646
+ compoundVariants?: (("variants" extends keyof Composers[K] ? { [Name in keyof Composers[K][keyof Composers[K] & "variants"]]?: _stitches_react_types_util.String | _stitches_react_types_util.Widen<keyof Composers[K][keyof Composers[K] & "variants"][Name]> | undefined; } : _stitches_react_types_util.WideObject) & {
647
+ css: CSS;
648
+ })[] | undefined;
649
+ defaultVariants?: ("variants" extends keyof Composers[K] ? { [Name_1 in keyof Composers[K][keyof Composers[K] & "variants"]]?: _stitches_react_types_util.String | _stitches_react_types_util.Widen<keyof Composers[K][keyof Composers[K] & "variants"][Name_1]> | undefined; } : _stitches_react_types_util.WideObject) | undefined;
650
+ } & CSS & { [K2 in keyof Composers[K]]: K2 extends "compoundVariants" | "defaultVariants" | "variants" ? unknown : K2 extends keyof CSS ? CSS[K2] : unknown; }; }) => _stitches_react_types_styled_component.StyledComponent<Type, _stitches_react_types_styled_component.StyledComponentProps<Composers>, {}, _stitches_react_types_css_util.CSS<{}, {
651
+ colors: {
652
+ white: string;
653
+ black: string;
654
+ gray100: string;
655
+ gray200: string;
656
+ gray400: string;
657
+ gray800: string;
658
+ dafaz100: string;
659
+ dafaz200: string;
660
+ dafaz400: string;
661
+ dafaz600: string;
662
+ dafaz800: string;
663
+ };
664
+ fontSizes: {
665
+ xxs: string;
666
+ xs: string;
667
+ sm: string;
668
+ md: string;
669
+ lg: string;
670
+ xl: string;
671
+ '2xl': string;
672
+ };
673
+ fontWeights: {
674
+ regular: string;
675
+ medium: string;
676
+ bold: string;
677
+ };
678
+ fonts: {
679
+ default: string;
680
+ app: string;
681
+ web: string;
682
+ offer: string;
683
+ code: string;
684
+ };
685
+ lineHeights: {
686
+ shorter: string;
687
+ short: string;
688
+ base: string;
689
+ tall: string;
690
+ };
691
+ radii: {
692
+ px: string;
693
+ sm: string;
694
+ md: string;
695
+ full: string;
696
+ };
697
+ space: {
698
+ 1: string;
699
+ 2: string;
700
+ 3: string;
701
+ 4: string;
702
+ 5: string;
703
+ 6: string;
704
+ 7: string;
705
+ 8: string;
706
+ 10: string;
707
+ 12: string;
708
+ 16: string;
709
+ 20: string;
710
+ 40: string;
711
+ 64: string;
712
+ 80: string;
713
+ };
714
+ opacities: {
715
+ opacity400: string;
716
+ opacity600: string;
717
+ opacity800: string;
718
+ opacity900: string;
719
+ };
720
+ }, {
721
+ height: "space";
722
+ width: "space";
723
+ gap: "space";
724
+ gridGap: "space";
725
+ columnGap: "space";
726
+ gridColumnGap: "space";
727
+ rowGap: "space";
728
+ gridRowGap: "space";
729
+ inset: "space";
730
+ insetBlock: "space";
731
+ insetBlockEnd: "space";
732
+ insetBlockStart: "space";
733
+ insetInline: "space";
734
+ insetInlineEnd: "space";
735
+ insetInlineStart: "space";
736
+ margin: "space";
737
+ marginTop: "space";
738
+ marginRight: "space";
739
+ marginBottom: "space";
740
+ marginLeft: "space";
741
+ marginBlock: "space";
742
+ marginBlockEnd: "space";
743
+ marginBlockStart: "space";
744
+ marginInline: "space";
745
+ marginInlineEnd: "space";
746
+ marginInlineStart: "space";
747
+ padding: "space";
748
+ paddingTop: "space";
749
+ paddingRight: "space";
750
+ paddingBottom: "space";
751
+ paddingLeft: "space";
752
+ paddingBlock: "space";
753
+ paddingBlockEnd: "space";
754
+ paddingBlockStart: "space";
755
+ paddingInline: "space";
756
+ paddingInlineEnd: "space";
757
+ paddingInlineStart: "space";
758
+ scrollMargin: "space";
759
+ scrollMarginTop: "space";
760
+ scrollMarginRight: "space";
761
+ scrollMarginBottom: "space";
762
+ scrollMarginLeft: "space";
763
+ scrollMarginBlock: "space";
764
+ scrollMarginBlockEnd: "space";
765
+ scrollMarginBlockStart: "space";
766
+ scrollMarginInline: "space";
767
+ scrollMarginInlineEnd: "space";
768
+ scrollMarginInlineStart: "space";
769
+ scrollPadding: "space";
770
+ scrollPaddingTop: "space";
771
+ scrollPaddingRight: "space";
772
+ scrollPaddingBottom: "space";
773
+ scrollPaddingLeft: "space";
774
+ scrollPaddingBlock: "space";
775
+ scrollPaddingBlockEnd: "space";
776
+ scrollPaddingBlockStart: "space";
777
+ scrollPaddingInline: "space";
778
+ scrollPaddingInlineEnd: "space";
779
+ scrollPaddingInlineStart: "space";
780
+ top: "space";
781
+ right: "space";
782
+ bottom: "space";
783
+ left: "space";
784
+ fontSize: "fontSizes";
785
+ background: "colors";
786
+ backgroundColor: "colors";
787
+ backgroundImage: "colors";
788
+ borderImage: "colors";
789
+ border: "colors";
790
+ borderBlock: "colors";
791
+ borderBlockEnd: "colors";
792
+ borderBlockStart: "colors";
793
+ borderBottom: "colors";
794
+ borderBottomColor: "colors";
795
+ borderColor: "colors";
796
+ borderInline: "colors";
797
+ borderInlineEnd: "colors";
798
+ borderInlineStart: "colors";
799
+ borderLeft: "colors";
800
+ borderLeftColor: "colors";
801
+ borderRight: "colors";
802
+ borderRightColor: "colors";
803
+ borderTop: "colors";
804
+ borderTopColor: "colors";
805
+ caretColor: "colors";
806
+ color: "colors";
807
+ columnRuleColor: "colors";
808
+ outline: "colors";
809
+ outlineColor: "colors";
810
+ fill: "colors";
811
+ stroke: "colors";
812
+ textDecorationColor: "colors";
813
+ fontFamily: "fonts";
814
+ fontWeight: "fontWeights";
815
+ lineHeight: "lineHeights";
816
+ letterSpacing: "letterSpacings";
817
+ blockSize: "sizes";
818
+ minBlockSize: "sizes";
819
+ maxBlockSize: "sizes";
820
+ inlineSize: "sizes";
821
+ minInlineSize: "sizes";
822
+ maxInlineSize: "sizes";
823
+ minWidth: "sizes";
824
+ maxWidth: "sizes";
825
+ minHeight: "sizes";
826
+ maxHeight: "sizes";
827
+ flexBasis: "sizes";
828
+ gridTemplateColumns: "sizes";
829
+ gridTemplateRows: "sizes";
830
+ borderWidth: "borderWidths";
831
+ borderTopWidth: "borderWidths";
832
+ borderLeftWidth: "borderWidths";
833
+ borderRightWidth: "borderWidths";
834
+ borderBottomWidth: "borderWidths";
835
+ borderStyle: "borderStyles";
836
+ borderTopStyle: "borderStyles";
837
+ borderLeftStyle: "borderStyles";
838
+ borderRightStyle: "borderStyles";
839
+ borderBottomStyle: "borderStyles";
840
+ borderRadius: "radii";
841
+ borderTopLeftRadius: "radii";
842
+ borderTopRightRadius: "radii";
843
+ borderBottomRightRadius: "radii";
844
+ borderBottomLeftRadius: "radii";
845
+ boxShadow: "shadows";
846
+ textShadow: "shadows";
847
+ transition: "transitions";
848
+ zIndex: "zIndices";
849
+ }, {}>>;
850
+ declare const css: <Composers extends (string | React.ExoticComponent<any> | React.JSXElementConstructor<any> | _stitches_react_types_util.Function | {
851
+ [name: string]: unknown;
852
+ })[], CSS = _stitches_react_types_css_util.CSS<{}, {
853
+ colors: {
854
+ white: string;
855
+ black: string;
856
+ gray100: string;
857
+ gray200: string;
858
+ gray400: string;
859
+ gray800: string;
860
+ dafaz100: string;
861
+ dafaz200: string;
862
+ dafaz400: string;
863
+ dafaz600: string;
864
+ dafaz800: string;
865
+ };
866
+ fontSizes: {
867
+ xxs: string;
868
+ xs: string;
869
+ sm: string;
870
+ md: string;
871
+ lg: string;
872
+ xl: string;
873
+ '2xl': string;
874
+ };
875
+ fontWeights: {
876
+ regular: string;
877
+ medium: string;
878
+ bold: string;
879
+ };
880
+ fonts: {
881
+ default: string;
882
+ app: string;
883
+ web: string;
884
+ offer: string;
885
+ code: string;
886
+ };
887
+ lineHeights: {
888
+ shorter: string;
889
+ short: string;
890
+ base: string;
891
+ tall: string;
892
+ };
893
+ radii: {
894
+ px: string;
895
+ sm: string;
896
+ md: string;
897
+ full: string;
898
+ };
899
+ space: {
900
+ 1: string;
901
+ 2: string;
902
+ 3: string;
903
+ 4: string;
904
+ 5: string;
905
+ 6: string;
906
+ 7: string;
907
+ 8: string;
908
+ 10: string;
909
+ 12: string;
910
+ 16: string;
911
+ 20: string;
912
+ 40: string;
913
+ 64: string;
914
+ 80: string;
915
+ };
916
+ opacities: {
917
+ opacity400: string;
918
+ opacity600: string;
919
+ opacity800: string;
920
+ opacity900: string;
921
+ };
922
+ }, {
923
+ height: "space";
924
+ width: "space";
925
+ gap: "space";
926
+ gridGap: "space";
927
+ columnGap: "space";
928
+ gridColumnGap: "space";
929
+ rowGap: "space";
930
+ gridRowGap: "space";
931
+ inset: "space";
932
+ insetBlock: "space";
933
+ insetBlockEnd: "space";
934
+ insetBlockStart: "space";
935
+ insetInline: "space";
936
+ insetInlineEnd: "space";
937
+ insetInlineStart: "space";
938
+ margin: "space";
939
+ marginTop: "space";
940
+ marginRight: "space";
941
+ marginBottom: "space";
942
+ marginLeft: "space";
943
+ marginBlock: "space";
944
+ marginBlockEnd: "space";
945
+ marginBlockStart: "space";
946
+ marginInline: "space";
947
+ marginInlineEnd: "space";
948
+ marginInlineStart: "space";
949
+ padding: "space";
950
+ paddingTop: "space";
951
+ paddingRight: "space";
952
+ paddingBottom: "space";
953
+ paddingLeft: "space";
954
+ paddingBlock: "space";
955
+ paddingBlockEnd: "space";
956
+ paddingBlockStart: "space";
957
+ paddingInline: "space";
958
+ paddingInlineEnd: "space";
959
+ paddingInlineStart: "space";
960
+ scrollMargin: "space";
961
+ scrollMarginTop: "space";
962
+ scrollMarginRight: "space";
963
+ scrollMarginBottom: "space";
964
+ scrollMarginLeft: "space";
965
+ scrollMarginBlock: "space";
966
+ scrollMarginBlockEnd: "space";
967
+ scrollMarginBlockStart: "space";
968
+ scrollMarginInline: "space";
969
+ scrollMarginInlineEnd: "space";
970
+ scrollMarginInlineStart: "space";
971
+ scrollPadding: "space";
972
+ scrollPaddingTop: "space";
973
+ scrollPaddingRight: "space";
974
+ scrollPaddingBottom: "space";
975
+ scrollPaddingLeft: "space";
976
+ scrollPaddingBlock: "space";
977
+ scrollPaddingBlockEnd: "space";
978
+ scrollPaddingBlockStart: "space";
979
+ scrollPaddingInline: "space";
980
+ scrollPaddingInlineEnd: "space";
981
+ scrollPaddingInlineStart: "space";
982
+ top: "space";
983
+ right: "space";
984
+ bottom: "space";
985
+ left: "space";
986
+ fontSize: "fontSizes";
987
+ background: "colors";
988
+ backgroundColor: "colors";
989
+ backgroundImage: "colors";
990
+ borderImage: "colors";
991
+ border: "colors";
992
+ borderBlock: "colors";
993
+ borderBlockEnd: "colors";
994
+ borderBlockStart: "colors";
995
+ borderBottom: "colors";
996
+ borderBottomColor: "colors";
997
+ borderColor: "colors";
998
+ borderInline: "colors";
999
+ borderInlineEnd: "colors";
1000
+ borderInlineStart: "colors";
1001
+ borderLeft: "colors";
1002
+ borderLeftColor: "colors";
1003
+ borderRight: "colors";
1004
+ borderRightColor: "colors";
1005
+ borderTop: "colors";
1006
+ borderTopColor: "colors";
1007
+ caretColor: "colors";
1008
+ color: "colors";
1009
+ columnRuleColor: "colors";
1010
+ outline: "colors";
1011
+ outlineColor: "colors";
1012
+ fill: "colors";
1013
+ stroke: "colors";
1014
+ textDecorationColor: "colors";
1015
+ fontFamily: "fonts";
1016
+ fontWeight: "fontWeights";
1017
+ lineHeight: "lineHeights";
1018
+ letterSpacing: "letterSpacings";
1019
+ blockSize: "sizes";
1020
+ minBlockSize: "sizes";
1021
+ maxBlockSize: "sizes";
1022
+ inlineSize: "sizes";
1023
+ minInlineSize: "sizes";
1024
+ maxInlineSize: "sizes";
1025
+ minWidth: "sizes";
1026
+ maxWidth: "sizes";
1027
+ minHeight: "sizes";
1028
+ maxHeight: "sizes";
1029
+ flexBasis: "sizes";
1030
+ gridTemplateColumns: "sizes";
1031
+ gridTemplateRows: "sizes";
1032
+ borderWidth: "borderWidths";
1033
+ borderTopWidth: "borderWidths";
1034
+ borderLeftWidth: "borderWidths";
1035
+ borderRightWidth: "borderWidths";
1036
+ borderBottomWidth: "borderWidths";
1037
+ borderStyle: "borderStyles";
1038
+ borderTopStyle: "borderStyles";
1039
+ borderLeftStyle: "borderStyles";
1040
+ borderRightStyle: "borderStyles";
1041
+ borderBottomStyle: "borderStyles";
1042
+ borderRadius: "radii";
1043
+ borderTopLeftRadius: "radii";
1044
+ borderTopRightRadius: "radii";
1045
+ borderBottomRightRadius: "radii";
1046
+ borderBottomLeftRadius: "radii";
1047
+ boxShadow: "shadows";
1048
+ textShadow: "shadows";
1049
+ transition: "transitions";
1050
+ zIndex: "zIndices";
1051
+ }, {}>>(...composers: { [K in keyof Composers]: string extends Composers[K] ? Composers[K] : Composers[K] extends string | _stitches_react_types_util.Function | react.ExoticComponent<any> | react.JSXElementConstructor<any> ? Composers[K] : _stitches_react_types_stitches.RemoveIndex<CSS> & {
1052
+ variants?: {
1053
+ [x: string]: {
1054
+ [x: string]: CSS;
1055
+ [x: number]: CSS;
1056
+ };
1057
+ } | undefined;
1058
+ compoundVariants?: (("variants" extends keyof Composers[K] ? { [Name in keyof Composers[K][keyof Composers[K] & "variants"]]?: _stitches_react_types_util.String | _stitches_react_types_util.Widen<keyof Composers[K][keyof Composers[K] & "variants"][Name]> | undefined; } : _stitches_react_types_util.WideObject) & {
1059
+ css: CSS;
1060
+ })[] | undefined;
1061
+ defaultVariants?: ("variants" extends keyof Composers[K] ? { [Name_1 in keyof Composers[K][keyof Composers[K] & "variants"]]?: _stitches_react_types_util.String | _stitches_react_types_util.Widen<keyof Composers[K][keyof Composers[K] & "variants"][Name_1]> | undefined; } : _stitches_react_types_util.WideObject) | undefined;
1062
+ } & CSS & { [K2 in keyof Composers[K]]: K2 extends "compoundVariants" | "defaultVariants" | "variants" ? unknown : K2 extends keyof CSS ? CSS[K2] : unknown; }; }) => _stitches_react_types_styled_component.CssComponent<_stitches_react_types_styled_component.StyledComponentType<Composers>, _stitches_react_types_styled_component.StyledComponentProps<Composers>, {}, CSS>;
1063
+ declare const globalCss: <Styles extends {
1064
+ [K: string]: any;
1065
+ }>(...styles: ({
1066
+ '@import'?: unknown;
1067
+ '@font-face'?: unknown;
1068
+ } & { [K in keyof Styles]: K extends "@import" ? string | string[] : K extends "@font-face" ? _stitches_react_types_css.AtRule.FontFace | _stitches_react_types_css.AtRule.FontFace[] : K extends `@keyframes ${string}` ? {
1069
+ [x: string]: _stitches_react_types_css_util.CSS<{}, {
1070
+ colors: {
1071
+ white: string;
1072
+ black: string;
1073
+ gray100: string;
1074
+ gray200: string;
1075
+ gray400: string;
1076
+ gray800: string;
1077
+ dafaz100: string;
1078
+ dafaz200: string;
1079
+ dafaz400: string;
1080
+ dafaz600: string;
1081
+ dafaz800: string;
1082
+ };
1083
+ fontSizes: {
1084
+ xxs: string;
1085
+ xs: string;
1086
+ sm: string;
1087
+ md: string;
1088
+ lg: string;
1089
+ xl: string;
1090
+ '2xl': string;
1091
+ };
1092
+ fontWeights: {
1093
+ regular: string;
1094
+ medium: string;
1095
+ bold: string;
1096
+ };
1097
+ fonts: {
1098
+ default: string;
1099
+ app: string;
1100
+ web: string;
1101
+ offer: string;
1102
+ code: string;
1103
+ };
1104
+ lineHeights: {
1105
+ shorter: string;
1106
+ short: string;
1107
+ base: string;
1108
+ tall: string;
1109
+ };
1110
+ radii: {
1111
+ px: string;
1112
+ sm: string;
1113
+ md: string;
1114
+ full: string;
1115
+ };
1116
+ space: {
1117
+ 1: string;
1118
+ 2: string;
1119
+ 3: string;
1120
+ 4: string;
1121
+ 5: string;
1122
+ 6: string;
1123
+ 7: string;
1124
+ 8: string;
1125
+ 10: string;
1126
+ 12: string;
1127
+ 16: string;
1128
+ 20: string;
1129
+ 40: string;
1130
+ 64: string;
1131
+ 80: string;
1132
+ };
1133
+ opacities: {
1134
+ opacity400: string;
1135
+ opacity600: string;
1136
+ opacity800: string;
1137
+ opacity900: string;
1138
+ };
1139
+ }, {
1140
+ height: "space";
1141
+ width: "space";
1142
+ gap: "space";
1143
+ gridGap: "space";
1144
+ columnGap: "space";
1145
+ gridColumnGap: "space";
1146
+ rowGap: "space";
1147
+ gridRowGap: "space";
1148
+ inset: "space";
1149
+ insetBlock: "space";
1150
+ insetBlockEnd: "space";
1151
+ insetBlockStart: "space";
1152
+ insetInline: "space";
1153
+ insetInlineEnd: "space";
1154
+ insetInlineStart: "space";
1155
+ margin: "space";
1156
+ marginTop: "space";
1157
+ marginRight: "space";
1158
+ marginBottom: "space";
1159
+ marginLeft: "space";
1160
+ marginBlock: "space";
1161
+ marginBlockEnd: "space";
1162
+ marginBlockStart: "space";
1163
+ marginInline: "space";
1164
+ marginInlineEnd: "space";
1165
+ marginInlineStart: "space";
1166
+ padding: "space";
1167
+ paddingTop: "space";
1168
+ paddingRight: "space";
1169
+ paddingBottom: "space";
1170
+ paddingLeft: "space";
1171
+ paddingBlock: "space";
1172
+ paddingBlockEnd: "space";
1173
+ paddingBlockStart: "space";
1174
+ paddingInline: "space";
1175
+ paddingInlineEnd: "space";
1176
+ paddingInlineStart: "space";
1177
+ scrollMargin: "space";
1178
+ scrollMarginTop: "space";
1179
+ scrollMarginRight: "space";
1180
+ scrollMarginBottom: "space";
1181
+ scrollMarginLeft: "space";
1182
+ scrollMarginBlock: "space";
1183
+ scrollMarginBlockEnd: "space";
1184
+ scrollMarginBlockStart: "space";
1185
+ scrollMarginInline: "space";
1186
+ scrollMarginInlineEnd: "space";
1187
+ scrollMarginInlineStart: "space";
1188
+ scrollPadding: "space";
1189
+ scrollPaddingTop: "space";
1190
+ scrollPaddingRight: "space";
1191
+ scrollPaddingBottom: "space";
1192
+ scrollPaddingLeft: "space";
1193
+ scrollPaddingBlock: "space";
1194
+ scrollPaddingBlockEnd: "space";
1195
+ scrollPaddingBlockStart: "space";
1196
+ scrollPaddingInline: "space";
1197
+ scrollPaddingInlineEnd: "space";
1198
+ scrollPaddingInlineStart: "space";
1199
+ top: "space";
1200
+ right: "space";
1201
+ bottom: "space";
1202
+ left: "space";
1203
+ fontSize: "fontSizes";
1204
+ background: "colors";
1205
+ backgroundColor: "colors";
1206
+ backgroundImage: "colors";
1207
+ borderImage: "colors";
1208
+ border: "colors";
1209
+ borderBlock: "colors";
1210
+ borderBlockEnd: "colors";
1211
+ borderBlockStart: "colors";
1212
+ borderBottom: "colors";
1213
+ borderBottomColor: "colors";
1214
+ borderColor: "colors";
1215
+ borderInline: "colors";
1216
+ borderInlineEnd: "colors";
1217
+ borderInlineStart: "colors";
1218
+ borderLeft: "colors";
1219
+ borderLeftColor: "colors";
1220
+ borderRight: "colors";
1221
+ borderRightColor: "colors";
1222
+ borderTop: "colors";
1223
+ borderTopColor: "colors";
1224
+ caretColor: "colors";
1225
+ color: "colors";
1226
+ columnRuleColor: "colors";
1227
+ outline: "colors";
1228
+ outlineColor: "colors";
1229
+ fill: "colors";
1230
+ stroke: "colors";
1231
+ textDecorationColor: "colors";
1232
+ fontFamily: "fonts";
1233
+ fontWeight: "fontWeights";
1234
+ lineHeight: "lineHeights";
1235
+ letterSpacing: "letterSpacings";
1236
+ blockSize: "sizes";
1237
+ minBlockSize: "sizes";
1238
+ maxBlockSize: "sizes";
1239
+ inlineSize: "sizes";
1240
+ minInlineSize: "sizes";
1241
+ maxInlineSize: "sizes";
1242
+ minWidth: "sizes";
1243
+ maxWidth: "sizes";
1244
+ minHeight: "sizes";
1245
+ maxHeight: "sizes";
1246
+ flexBasis: "sizes";
1247
+ gridTemplateColumns: "sizes";
1248
+ gridTemplateRows: "sizes";
1249
+ borderWidth: "borderWidths";
1250
+ borderTopWidth: "borderWidths";
1251
+ borderLeftWidth: "borderWidths";
1252
+ borderRightWidth: "borderWidths";
1253
+ borderBottomWidth: "borderWidths";
1254
+ borderStyle: "borderStyles";
1255
+ borderTopStyle: "borderStyles";
1256
+ borderLeftStyle: "borderStyles";
1257
+ borderRightStyle: "borderStyles";
1258
+ borderBottomStyle: "borderStyles";
1259
+ borderRadius: "radii";
1260
+ borderTopLeftRadius: "radii";
1261
+ borderTopRightRadius: "radii";
1262
+ borderBottomRightRadius: "radii";
1263
+ borderBottomLeftRadius: "radii";
1264
+ boxShadow: "shadows";
1265
+ textShadow: "shadows";
1266
+ transition: "transitions";
1267
+ zIndex: "zIndices";
1268
+ }, {}>;
1269
+ } : K extends `@property ${string}` ? _stitches_react_types_css.AtRule.Property : _stitches_react_types_css_util.CSS<{}, {
1270
+ colors: {
1271
+ white: string;
1272
+ black: string;
1273
+ gray100: string;
1274
+ gray200: string;
1275
+ gray400: string;
1276
+ gray800: string;
1277
+ dafaz100: string;
1278
+ dafaz200: string;
1279
+ dafaz400: string;
1280
+ dafaz600: string;
1281
+ dafaz800: string;
1282
+ };
1283
+ fontSizes: {
1284
+ xxs: string;
1285
+ xs: string;
1286
+ sm: string;
1287
+ md: string;
1288
+ lg: string;
1289
+ xl: string;
1290
+ '2xl': string;
1291
+ };
1292
+ fontWeights: {
1293
+ regular: string;
1294
+ medium: string;
1295
+ bold: string;
1296
+ };
1297
+ fonts: {
1298
+ default: string;
1299
+ app: string;
1300
+ web: string;
1301
+ offer: string;
1302
+ code: string;
1303
+ };
1304
+ lineHeights: {
1305
+ shorter: string;
1306
+ short: string;
1307
+ base: string;
1308
+ tall: string;
1309
+ };
1310
+ radii: {
1311
+ px: string;
1312
+ sm: string;
1313
+ md: string;
1314
+ full: string;
1315
+ };
1316
+ space: {
1317
+ 1: string;
1318
+ 2: string;
1319
+ 3: string;
1320
+ 4: string;
1321
+ 5: string;
1322
+ 6: string;
1323
+ 7: string;
1324
+ 8: string;
1325
+ 10: string;
1326
+ 12: string;
1327
+ 16: string;
1328
+ 20: string;
1329
+ 40: string;
1330
+ 64: string;
1331
+ 80: string;
1332
+ };
1333
+ opacities: {
1334
+ opacity400: string;
1335
+ opacity600: string;
1336
+ opacity800: string;
1337
+ opacity900: string;
1338
+ };
1339
+ }, {
1340
+ height: "space";
1341
+ width: "space";
1342
+ gap: "space";
1343
+ gridGap: "space";
1344
+ columnGap: "space";
1345
+ gridColumnGap: "space";
1346
+ rowGap: "space";
1347
+ gridRowGap: "space";
1348
+ inset: "space";
1349
+ insetBlock: "space";
1350
+ insetBlockEnd: "space";
1351
+ insetBlockStart: "space";
1352
+ insetInline: "space";
1353
+ insetInlineEnd: "space";
1354
+ insetInlineStart: "space";
1355
+ margin: "space";
1356
+ marginTop: "space";
1357
+ marginRight: "space";
1358
+ marginBottom: "space";
1359
+ marginLeft: "space";
1360
+ marginBlock: "space";
1361
+ marginBlockEnd: "space";
1362
+ marginBlockStart: "space";
1363
+ marginInline: "space";
1364
+ marginInlineEnd: "space";
1365
+ marginInlineStart: "space";
1366
+ padding: "space";
1367
+ paddingTop: "space";
1368
+ paddingRight: "space";
1369
+ paddingBottom: "space";
1370
+ paddingLeft: "space";
1371
+ paddingBlock: "space";
1372
+ paddingBlockEnd: "space";
1373
+ paddingBlockStart: "space";
1374
+ paddingInline: "space";
1375
+ paddingInlineEnd: "space";
1376
+ paddingInlineStart: "space";
1377
+ scrollMargin: "space";
1378
+ scrollMarginTop: "space";
1379
+ scrollMarginRight: "space";
1380
+ scrollMarginBottom: "space";
1381
+ scrollMarginLeft: "space";
1382
+ scrollMarginBlock: "space";
1383
+ scrollMarginBlockEnd: "space";
1384
+ scrollMarginBlockStart: "space";
1385
+ scrollMarginInline: "space";
1386
+ scrollMarginInlineEnd: "space";
1387
+ scrollMarginInlineStart: "space";
1388
+ scrollPadding: "space";
1389
+ scrollPaddingTop: "space";
1390
+ scrollPaddingRight: "space";
1391
+ scrollPaddingBottom: "space";
1392
+ scrollPaddingLeft: "space";
1393
+ scrollPaddingBlock: "space";
1394
+ scrollPaddingBlockEnd: "space";
1395
+ scrollPaddingBlockStart: "space";
1396
+ scrollPaddingInline: "space";
1397
+ scrollPaddingInlineEnd: "space";
1398
+ scrollPaddingInlineStart: "space";
1399
+ top: "space";
1400
+ right: "space";
1401
+ bottom: "space";
1402
+ left: "space";
1403
+ fontSize: "fontSizes";
1404
+ background: "colors";
1405
+ backgroundColor: "colors";
1406
+ backgroundImage: "colors";
1407
+ borderImage: "colors";
1408
+ border: "colors";
1409
+ borderBlock: "colors";
1410
+ borderBlockEnd: "colors";
1411
+ borderBlockStart: "colors";
1412
+ borderBottom: "colors";
1413
+ borderBottomColor: "colors";
1414
+ borderColor: "colors";
1415
+ borderInline: "colors";
1416
+ borderInlineEnd: "colors";
1417
+ borderInlineStart: "colors";
1418
+ borderLeft: "colors";
1419
+ borderLeftColor: "colors";
1420
+ borderRight: "colors";
1421
+ borderRightColor: "colors";
1422
+ borderTop: "colors";
1423
+ borderTopColor: "colors";
1424
+ caretColor: "colors";
1425
+ color: "colors";
1426
+ columnRuleColor: "colors";
1427
+ outline: "colors";
1428
+ outlineColor: "colors";
1429
+ fill: "colors";
1430
+ stroke: "colors";
1431
+ textDecorationColor: "colors";
1432
+ fontFamily: "fonts";
1433
+ fontWeight: "fontWeights";
1434
+ lineHeight: "lineHeights";
1435
+ letterSpacing: "letterSpacings";
1436
+ blockSize: "sizes";
1437
+ minBlockSize: "sizes";
1438
+ maxBlockSize: "sizes";
1439
+ inlineSize: "sizes";
1440
+ minInlineSize: "sizes";
1441
+ maxInlineSize: "sizes";
1442
+ minWidth: "sizes";
1443
+ maxWidth: "sizes";
1444
+ minHeight: "sizes";
1445
+ maxHeight: "sizes";
1446
+ flexBasis: "sizes";
1447
+ gridTemplateColumns: "sizes";
1448
+ gridTemplateRows: "sizes";
1449
+ borderWidth: "borderWidths";
1450
+ borderTopWidth: "borderWidths";
1451
+ borderLeftWidth: "borderWidths";
1452
+ borderRightWidth: "borderWidths";
1453
+ borderBottomWidth: "borderWidths";
1454
+ borderStyle: "borderStyles";
1455
+ borderTopStyle: "borderStyles";
1456
+ borderLeftStyle: "borderStyles";
1457
+ borderRightStyle: "borderStyles";
1458
+ borderBottomStyle: "borderStyles";
1459
+ borderRadius: "radii";
1460
+ borderTopLeftRadius: "radii";
1461
+ borderTopRightRadius: "radii";
1462
+ borderBottomRightRadius: "radii";
1463
+ borderBottomLeftRadius: "radii";
1464
+ boxShadow: "shadows";
1465
+ textShadow: "shadows";
1466
+ transition: "transitions";
1467
+ zIndex: "zIndices";
1468
+ }, {}>; })[]) => {
1469
+ (): string;
1470
+ };
1471
+ declare const keyframes: (style: {
1472
+ [offset: string]: _stitches_react_types_css_util.CSS<{}, {
1473
+ colors: {
1474
+ white: string;
1475
+ black: string;
1476
+ gray100: string;
1477
+ gray200: string;
1478
+ gray400: string;
1479
+ gray800: string;
1480
+ dafaz100: string;
1481
+ dafaz200: string;
1482
+ dafaz400: string;
1483
+ dafaz600: string;
1484
+ dafaz800: string;
1485
+ };
1486
+ fontSizes: {
1487
+ xxs: string;
1488
+ xs: string;
1489
+ sm: string;
1490
+ md: string;
1491
+ lg: string;
1492
+ xl: string;
1493
+ '2xl': string;
1494
+ };
1495
+ fontWeights: {
1496
+ regular: string;
1497
+ medium: string;
1498
+ bold: string;
1499
+ };
1500
+ fonts: {
1501
+ default: string;
1502
+ app: string;
1503
+ web: string;
1504
+ offer: string;
1505
+ code: string;
1506
+ };
1507
+ lineHeights: {
1508
+ shorter: string;
1509
+ short: string;
1510
+ base: string;
1511
+ tall: string;
1512
+ };
1513
+ radii: {
1514
+ px: string;
1515
+ sm: string;
1516
+ md: string;
1517
+ full: string;
1518
+ };
1519
+ space: {
1520
+ 1: string;
1521
+ 2: string;
1522
+ 3: string;
1523
+ 4: string;
1524
+ 5: string;
1525
+ 6: string;
1526
+ 7: string;
1527
+ 8: string;
1528
+ 10: string;
1529
+ 12: string;
1530
+ 16: string;
1531
+ 20: string;
1532
+ 40: string;
1533
+ 64: string;
1534
+ 80: string;
1535
+ };
1536
+ opacities: {
1537
+ opacity400: string;
1538
+ opacity600: string;
1539
+ opacity800: string;
1540
+ opacity900: string;
1541
+ };
1542
+ }, {
1543
+ height: "space";
1544
+ width: "space";
1545
+ gap: "space";
1546
+ gridGap: "space";
1547
+ columnGap: "space";
1548
+ gridColumnGap: "space";
1549
+ rowGap: "space";
1550
+ gridRowGap: "space";
1551
+ inset: "space";
1552
+ insetBlock: "space";
1553
+ insetBlockEnd: "space";
1554
+ insetBlockStart: "space";
1555
+ insetInline: "space";
1556
+ insetInlineEnd: "space";
1557
+ insetInlineStart: "space";
1558
+ margin: "space";
1559
+ marginTop: "space";
1560
+ marginRight: "space";
1561
+ marginBottom: "space";
1562
+ marginLeft: "space";
1563
+ marginBlock: "space";
1564
+ marginBlockEnd: "space";
1565
+ marginBlockStart: "space";
1566
+ marginInline: "space";
1567
+ marginInlineEnd: "space";
1568
+ marginInlineStart: "space";
1569
+ padding: "space";
1570
+ paddingTop: "space";
1571
+ paddingRight: "space";
1572
+ paddingBottom: "space";
1573
+ paddingLeft: "space";
1574
+ paddingBlock: "space";
1575
+ paddingBlockEnd: "space";
1576
+ paddingBlockStart: "space";
1577
+ paddingInline: "space";
1578
+ paddingInlineEnd: "space";
1579
+ paddingInlineStart: "space";
1580
+ scrollMargin: "space";
1581
+ scrollMarginTop: "space";
1582
+ scrollMarginRight: "space";
1583
+ scrollMarginBottom: "space";
1584
+ scrollMarginLeft: "space";
1585
+ scrollMarginBlock: "space";
1586
+ scrollMarginBlockEnd: "space";
1587
+ scrollMarginBlockStart: "space";
1588
+ scrollMarginInline: "space";
1589
+ scrollMarginInlineEnd: "space";
1590
+ scrollMarginInlineStart: "space";
1591
+ scrollPadding: "space";
1592
+ scrollPaddingTop: "space";
1593
+ scrollPaddingRight: "space";
1594
+ scrollPaddingBottom: "space";
1595
+ scrollPaddingLeft: "space";
1596
+ scrollPaddingBlock: "space";
1597
+ scrollPaddingBlockEnd: "space";
1598
+ scrollPaddingBlockStart: "space";
1599
+ scrollPaddingInline: "space";
1600
+ scrollPaddingInlineEnd: "space";
1601
+ scrollPaddingInlineStart: "space";
1602
+ top: "space";
1603
+ right: "space";
1604
+ bottom: "space";
1605
+ left: "space";
1606
+ fontSize: "fontSizes";
1607
+ background: "colors";
1608
+ backgroundColor: "colors";
1609
+ backgroundImage: "colors";
1610
+ borderImage: "colors";
1611
+ border: "colors";
1612
+ borderBlock: "colors";
1613
+ borderBlockEnd: "colors";
1614
+ borderBlockStart: "colors";
1615
+ borderBottom: "colors";
1616
+ borderBottomColor: "colors";
1617
+ borderColor: "colors";
1618
+ borderInline: "colors";
1619
+ borderInlineEnd: "colors";
1620
+ borderInlineStart: "colors";
1621
+ borderLeft: "colors";
1622
+ borderLeftColor: "colors";
1623
+ borderRight: "colors";
1624
+ borderRightColor: "colors";
1625
+ borderTop: "colors";
1626
+ borderTopColor: "colors";
1627
+ caretColor: "colors";
1628
+ color: "colors";
1629
+ columnRuleColor: "colors";
1630
+ outline: "colors";
1631
+ outlineColor: "colors";
1632
+ fill: "colors";
1633
+ stroke: "colors";
1634
+ textDecorationColor: "colors";
1635
+ fontFamily: "fonts";
1636
+ fontWeight: "fontWeights";
1637
+ lineHeight: "lineHeights";
1638
+ letterSpacing: "letterSpacings";
1639
+ blockSize: "sizes";
1640
+ minBlockSize: "sizes";
1641
+ maxBlockSize: "sizes";
1642
+ inlineSize: "sizes";
1643
+ minInlineSize: "sizes";
1644
+ maxInlineSize: "sizes";
1645
+ minWidth: "sizes";
1646
+ maxWidth: "sizes";
1647
+ minHeight: "sizes";
1648
+ maxHeight: "sizes";
1649
+ flexBasis: "sizes";
1650
+ gridTemplateColumns: "sizes";
1651
+ gridTemplateRows: "sizes";
1652
+ borderWidth: "borderWidths";
1653
+ borderTopWidth: "borderWidths";
1654
+ borderLeftWidth: "borderWidths";
1655
+ borderRightWidth: "borderWidths";
1656
+ borderBottomWidth: "borderWidths";
1657
+ borderStyle: "borderStyles";
1658
+ borderTopStyle: "borderStyles";
1659
+ borderLeftStyle: "borderStyles";
1660
+ borderRightStyle: "borderStyles";
1661
+ borderBottomStyle: "borderStyles";
1662
+ borderRadius: "radii";
1663
+ borderTopLeftRadius: "radii";
1664
+ borderTopRightRadius: "radii";
1665
+ borderBottomRightRadius: "radii";
1666
+ borderBottomLeftRadius: "radii";
1667
+ boxShadow: "shadows";
1668
+ textShadow: "shadows";
1669
+ transition: "transitions";
1670
+ zIndex: "zIndices";
1671
+ }, {}>;
1672
+ }) => {
1673
+ (): string;
1674
+ name: string;
1675
+ };
1676
+ declare const getCssText: () => string;
1677
+ declare const theme: string & {
1678
+ className: string;
1679
+ selector: string;
1680
+ } & {
1681
+ colors: {
1682
+ white: _stitches_react_types_theme.Token<"white", string, "colors", "">;
1683
+ black: _stitches_react_types_theme.Token<"black", string, "colors", "">;
1684
+ gray100: _stitches_react_types_theme.Token<"gray100", string, "colors", "">;
1685
+ gray200: _stitches_react_types_theme.Token<"gray200", string, "colors", "">;
1686
+ gray400: _stitches_react_types_theme.Token<"gray400", string, "colors", "">;
1687
+ gray800: _stitches_react_types_theme.Token<"gray800", string, "colors", "">;
1688
+ dafaz100: _stitches_react_types_theme.Token<"dafaz100", string, "colors", "">;
1689
+ dafaz200: _stitches_react_types_theme.Token<"dafaz200", string, "colors", "">;
1690
+ dafaz400: _stitches_react_types_theme.Token<"dafaz400", string, "colors", "">;
1691
+ dafaz600: _stitches_react_types_theme.Token<"dafaz600", string, "colors", "">;
1692
+ dafaz800: _stitches_react_types_theme.Token<"dafaz800", string, "colors", "">;
1693
+ };
1694
+ fontSizes: {
1695
+ xxs: _stitches_react_types_theme.Token<"xxs", string, "fontSizes", "">;
1696
+ xs: _stitches_react_types_theme.Token<"xs", string, "fontSizes", "">;
1697
+ sm: _stitches_react_types_theme.Token<"sm", string, "fontSizes", "">;
1698
+ md: _stitches_react_types_theme.Token<"md", string, "fontSizes", "">;
1699
+ lg: _stitches_react_types_theme.Token<"lg", string, "fontSizes", "">;
1700
+ xl: _stitches_react_types_theme.Token<"xl", string, "fontSizes", "">;
1701
+ '2xl': _stitches_react_types_theme.Token<"2xl", string, "fontSizes", "">;
1702
+ };
1703
+ fontWeights: {
1704
+ regular: _stitches_react_types_theme.Token<"regular", string, "fontWeights", "">;
1705
+ medium: _stitches_react_types_theme.Token<"medium", string, "fontWeights", "">;
1706
+ bold: _stitches_react_types_theme.Token<"bold", string, "fontWeights", "">;
1707
+ };
1708
+ fonts: {
1709
+ default: _stitches_react_types_theme.Token<"default", string, "fonts", "">;
1710
+ app: _stitches_react_types_theme.Token<"app", string, "fonts", "">;
1711
+ web: _stitches_react_types_theme.Token<"web", string, "fonts", "">;
1712
+ offer: _stitches_react_types_theme.Token<"offer", string, "fonts", "">;
1713
+ code: _stitches_react_types_theme.Token<"code", string, "fonts", "">;
1714
+ };
1715
+ lineHeights: {
1716
+ shorter: _stitches_react_types_theme.Token<"shorter", string, "lineHeights", "">;
1717
+ short: _stitches_react_types_theme.Token<"short", string, "lineHeights", "">;
1718
+ base: _stitches_react_types_theme.Token<"base", string, "lineHeights", "">;
1719
+ tall: _stitches_react_types_theme.Token<"tall", string, "lineHeights", "">;
1720
+ };
1721
+ radii: {
1722
+ px: _stitches_react_types_theme.Token<"px", string, "radii", "">;
1723
+ sm: _stitches_react_types_theme.Token<"sm", string, "radii", "">;
1724
+ md: _stitches_react_types_theme.Token<"md", string, "radii", "">;
1725
+ full: _stitches_react_types_theme.Token<"full", string, "radii", "">;
1726
+ };
1727
+ space: {
1728
+ 1: _stitches_react_types_theme.Token<"1", string, "space", "">;
1729
+ 2: _stitches_react_types_theme.Token<"2", string, "space", "">;
1730
+ 3: _stitches_react_types_theme.Token<"3", string, "space", "">;
1731
+ 4: _stitches_react_types_theme.Token<"4", string, "space", "">;
1732
+ 5: _stitches_react_types_theme.Token<"5", string, "space", "">;
1733
+ 6: _stitches_react_types_theme.Token<"6", string, "space", "">;
1734
+ 7: _stitches_react_types_theme.Token<"7", string, "space", "">;
1735
+ 8: _stitches_react_types_theme.Token<"8", string, "space", "">;
1736
+ 10: _stitches_react_types_theme.Token<"10", string, "space", "">;
1737
+ 12: _stitches_react_types_theme.Token<"12", string, "space", "">;
1738
+ 16: _stitches_react_types_theme.Token<"16", string, "space", "">;
1739
+ 20: _stitches_react_types_theme.Token<"20", string, "space", "">;
1740
+ 40: _stitches_react_types_theme.Token<"40", string, "space", "">;
1741
+ 64: _stitches_react_types_theme.Token<"64", string, "space", "">;
1742
+ 80: _stitches_react_types_theme.Token<"80", string, "space", "">;
1743
+ };
1744
+ opacities: {
1745
+ opacity400: _stitches_react_types_theme.Token<"opacity400", string, "opacities", "">;
1746
+ opacity600: _stitches_react_types_theme.Token<"opacity600", string, "opacities", "">;
1747
+ opacity800: _stitches_react_types_theme.Token<"opacity800", string, "opacities", "">;
1748
+ opacity900: _stitches_react_types_theme.Token<"opacity900", string, "opacities", "">;
1749
+ };
1750
+ };
1751
+ declare const createTheme: <Argument0 extends string | ({
1752
+ colors?: {
1753
+ white?: string | number | boolean | undefined;
1754
+ black?: string | number | boolean | undefined;
1755
+ gray100?: string | number | boolean | undefined;
1756
+ gray200?: string | number | boolean | undefined;
1757
+ gray400?: string | number | boolean | undefined;
1758
+ gray800?: string | number | boolean | undefined;
1759
+ dafaz100?: string | number | boolean | undefined;
1760
+ dafaz200?: string | number | boolean | undefined;
1761
+ dafaz400?: string | number | boolean | undefined;
1762
+ dafaz600?: string | number | boolean | undefined;
1763
+ dafaz800?: string | number | boolean | undefined;
1764
+ } | undefined;
1765
+ fontSizes?: {
1766
+ xxs?: string | number | boolean | undefined;
1767
+ xs?: string | number | boolean | undefined;
1768
+ sm?: string | number | boolean | undefined;
1769
+ md?: string | number | boolean | undefined;
1770
+ lg?: string | number | boolean | undefined;
1771
+ xl?: string | number | boolean | undefined;
1772
+ '2xl'?: string | number | boolean | undefined;
1773
+ } | undefined;
1774
+ fontWeights?: {
1775
+ regular?: string | number | boolean | undefined;
1776
+ medium?: string | number | boolean | undefined;
1777
+ bold?: string | number | boolean | undefined;
1778
+ } | undefined;
1779
+ fonts?: {
1780
+ default?: string | number | boolean | undefined;
1781
+ app?: string | number | boolean | undefined;
1782
+ web?: string | number | boolean | undefined;
1783
+ offer?: string | number | boolean | undefined;
1784
+ code?: string | number | boolean | undefined;
1785
+ } | undefined;
1786
+ lineHeights?: {
1787
+ shorter?: string | number | boolean | undefined;
1788
+ short?: string | number | boolean | undefined;
1789
+ base?: string | number | boolean | undefined;
1790
+ tall?: string | number | boolean | undefined;
1791
+ } | undefined;
1792
+ radii?: {
1793
+ px?: string | number | boolean | undefined;
1794
+ sm?: string | number | boolean | undefined;
1795
+ md?: string | number | boolean | undefined;
1796
+ full?: string | number | boolean | undefined;
1797
+ } | undefined;
1798
+ space?: {
1799
+ 1?: string | number | boolean | undefined;
1800
+ 2?: string | number | boolean | undefined;
1801
+ 3?: string | number | boolean | undefined;
1802
+ 4?: string | number | boolean | undefined;
1803
+ 5?: string | number | boolean | undefined;
1804
+ 6?: string | number | boolean | undefined;
1805
+ 7?: string | number | boolean | undefined;
1806
+ 8?: string | number | boolean | undefined;
1807
+ 10?: string | number | boolean | undefined;
1808
+ 12?: string | number | boolean | undefined;
1809
+ 16?: string | number | boolean | undefined;
1810
+ 20?: string | number | boolean | undefined;
1811
+ 40?: string | number | boolean | undefined;
1812
+ 64?: string | number | boolean | undefined;
1813
+ 80?: string | number | boolean | undefined;
1814
+ } | undefined;
1815
+ opacities?: {
1816
+ opacity400?: string | number | boolean | undefined;
1817
+ opacity600?: string | number | boolean | undefined;
1818
+ opacity800?: string | number | boolean | undefined;
1819
+ opacity900?: string | number | boolean | undefined;
1820
+ } | undefined;
1821
+ } & {
1822
+ [x: string]: {
1823
+ [x: string]: string | number | boolean;
1824
+ [x: number]: string | number | boolean;
1825
+ };
1826
+ }), Argument1 extends string | ({
1827
+ colors?: {
1828
+ white?: string | number | boolean | undefined;
1829
+ black?: string | number | boolean | undefined;
1830
+ gray100?: string | number | boolean | undefined;
1831
+ gray200?: string | number | boolean | undefined;
1832
+ gray400?: string | number | boolean | undefined;
1833
+ gray800?: string | number | boolean | undefined;
1834
+ dafaz100?: string | number | boolean | undefined;
1835
+ dafaz200?: string | number | boolean | undefined;
1836
+ dafaz400?: string | number | boolean | undefined;
1837
+ dafaz600?: string | number | boolean | undefined;
1838
+ dafaz800?: string | number | boolean | undefined;
1839
+ } | undefined;
1840
+ fontSizes?: {
1841
+ xxs?: string | number | boolean | undefined;
1842
+ xs?: string | number | boolean | undefined;
1843
+ sm?: string | number | boolean | undefined;
1844
+ md?: string | number | boolean | undefined;
1845
+ lg?: string | number | boolean | undefined;
1846
+ xl?: string | number | boolean | undefined;
1847
+ '2xl'?: string | number | boolean | undefined;
1848
+ } | undefined;
1849
+ fontWeights?: {
1850
+ regular?: string | number | boolean | undefined;
1851
+ medium?: string | number | boolean | undefined;
1852
+ bold?: string | number | boolean | undefined;
1853
+ } | undefined;
1854
+ fonts?: {
1855
+ default?: string | number | boolean | undefined;
1856
+ app?: string | number | boolean | undefined;
1857
+ web?: string | number | boolean | undefined;
1858
+ offer?: string | number | boolean | undefined;
1859
+ code?: string | number | boolean | undefined;
1860
+ } | undefined;
1861
+ lineHeights?: {
1862
+ shorter?: string | number | boolean | undefined;
1863
+ short?: string | number | boolean | undefined;
1864
+ base?: string | number | boolean | undefined;
1865
+ tall?: string | number | boolean | undefined;
1866
+ } | undefined;
1867
+ radii?: {
1868
+ px?: string | number | boolean | undefined;
1869
+ sm?: string | number | boolean | undefined;
1870
+ md?: string | number | boolean | undefined;
1871
+ full?: string | number | boolean | undefined;
1872
+ } | undefined;
1873
+ space?: {
1874
+ 1?: string | number | boolean | undefined;
1875
+ 2?: string | number | boolean | undefined;
1876
+ 3?: string | number | boolean | undefined;
1877
+ 4?: string | number | boolean | undefined;
1878
+ 5?: string | number | boolean | undefined;
1879
+ 6?: string | number | boolean | undefined;
1880
+ 7?: string | number | boolean | undefined;
1881
+ 8?: string | number | boolean | undefined;
1882
+ 10?: string | number | boolean | undefined;
1883
+ 12?: string | number | boolean | undefined;
1884
+ 16?: string | number | boolean | undefined;
1885
+ 20?: string | number | boolean | undefined;
1886
+ 40?: string | number | boolean | undefined;
1887
+ 64?: string | number | boolean | undefined;
1888
+ 80?: string | number | boolean | undefined;
1889
+ } | undefined;
1890
+ opacities?: {
1891
+ opacity400?: string | number | boolean | undefined;
1892
+ opacity600?: string | number | boolean | undefined;
1893
+ opacity800?: string | number | boolean | undefined;
1894
+ opacity900?: string | number | boolean | undefined;
1895
+ } | undefined;
1896
+ } & {
1897
+ [x: string]: {
1898
+ [x: string]: string | number | boolean;
1899
+ [x: number]: string | number | boolean;
1900
+ };
1901
+ })>(nameOrScalesArg0: Argument0, nameOrScalesArg1?: Argument1 | undefined) => string & {
1902
+ className: string;
1903
+ selector: string;
1904
+ } & (Argument0 extends string ? _stitches_react_types_stitches.ThemeTokens<Argument1, ""> : _stitches_react_types_stitches.ThemeTokens<Argument0, "">);
1905
+ declare const config: {
1906
+ prefix: "";
1907
+ media: {};
1908
+ theme: {
1909
+ colors: {
1910
+ white: string;
1911
+ black: string;
1912
+ gray100: string;
1913
+ gray200: string;
1914
+ gray400: string;
1915
+ gray800: string;
1916
+ dafaz100: string;
1917
+ dafaz200: string;
1918
+ dafaz400: string;
1919
+ dafaz600: string;
1920
+ dafaz800: string;
1921
+ };
1922
+ fontSizes: {
1923
+ xxs: string;
1924
+ xs: string;
1925
+ sm: string;
1926
+ md: string;
1927
+ lg: string;
1928
+ xl: string;
1929
+ '2xl': string;
1930
+ };
1931
+ fontWeights: {
1932
+ regular: string;
1933
+ medium: string;
1934
+ bold: string;
1935
+ };
1936
+ fonts: {
1937
+ default: string;
1938
+ app: string;
1939
+ web: string;
1940
+ offer: string;
1941
+ code: string;
1942
+ };
1943
+ lineHeights: {
1944
+ shorter: string;
1945
+ short: string;
1946
+ base: string;
1947
+ tall: string;
1948
+ };
1949
+ radii: {
1950
+ px: string;
1951
+ sm: string;
1952
+ md: string;
1953
+ full: string;
1954
+ };
1955
+ space: {
1956
+ 1: string;
1957
+ 2: string;
1958
+ 3: string;
1959
+ 4: string;
1960
+ 5: string;
1961
+ 6: string;
1962
+ 7: string;
1963
+ 8: string;
1964
+ 10: string;
1965
+ 12: string;
1966
+ 16: string;
1967
+ 20: string;
1968
+ 40: string;
1969
+ 64: string;
1970
+ 80: string;
1971
+ };
1972
+ opacities: {
1973
+ opacity400: string;
1974
+ opacity600: string;
1975
+ opacity800: string;
1976
+ opacity900: string;
1977
+ };
1978
+ };
1979
+ themeMap: {
1980
+ height: "space";
1981
+ width: "space";
1982
+ gap: "space";
1983
+ gridGap: "space";
1984
+ columnGap: "space";
1985
+ gridColumnGap: "space";
1986
+ rowGap: "space";
1987
+ gridRowGap: "space";
1988
+ inset: "space";
1989
+ insetBlock: "space";
1990
+ insetBlockEnd: "space";
1991
+ insetBlockStart: "space";
1992
+ insetInline: "space";
1993
+ insetInlineEnd: "space";
1994
+ insetInlineStart: "space";
1995
+ margin: "space";
1996
+ marginTop: "space";
1997
+ marginRight: "space";
1998
+ marginBottom: "space";
1999
+ marginLeft: "space";
2000
+ marginBlock: "space";
2001
+ marginBlockEnd: "space";
2002
+ marginBlockStart: "space";
2003
+ marginInline: "space";
2004
+ marginInlineEnd: "space";
2005
+ marginInlineStart: "space";
2006
+ padding: "space";
2007
+ paddingTop: "space";
2008
+ paddingRight: "space";
2009
+ paddingBottom: "space";
2010
+ paddingLeft: "space";
2011
+ paddingBlock: "space";
2012
+ paddingBlockEnd: "space";
2013
+ paddingBlockStart: "space";
2014
+ paddingInline: "space";
2015
+ paddingInlineEnd: "space";
2016
+ paddingInlineStart: "space";
2017
+ scrollMargin: "space";
2018
+ scrollMarginTop: "space";
2019
+ scrollMarginRight: "space";
2020
+ scrollMarginBottom: "space";
2021
+ scrollMarginLeft: "space";
2022
+ scrollMarginBlock: "space";
2023
+ scrollMarginBlockEnd: "space";
2024
+ scrollMarginBlockStart: "space";
2025
+ scrollMarginInline: "space";
2026
+ scrollMarginInlineEnd: "space";
2027
+ scrollMarginInlineStart: "space";
2028
+ scrollPadding: "space";
2029
+ scrollPaddingTop: "space";
2030
+ scrollPaddingRight: "space";
2031
+ scrollPaddingBottom: "space";
2032
+ scrollPaddingLeft: "space";
2033
+ scrollPaddingBlock: "space";
2034
+ scrollPaddingBlockEnd: "space";
2035
+ scrollPaddingBlockStart: "space";
2036
+ scrollPaddingInline: "space";
2037
+ scrollPaddingInlineEnd: "space";
2038
+ scrollPaddingInlineStart: "space";
2039
+ top: "space";
2040
+ right: "space";
2041
+ bottom: "space";
2042
+ left: "space";
2043
+ fontSize: "fontSizes";
2044
+ background: "colors";
2045
+ backgroundColor: "colors";
2046
+ backgroundImage: "colors";
2047
+ borderImage: "colors";
2048
+ border: "colors";
2049
+ borderBlock: "colors";
2050
+ borderBlockEnd: "colors";
2051
+ borderBlockStart: "colors";
2052
+ borderBottom: "colors";
2053
+ borderBottomColor: "colors";
2054
+ borderColor: "colors";
2055
+ borderInline: "colors";
2056
+ borderInlineEnd: "colors";
2057
+ borderInlineStart: "colors";
2058
+ borderLeft: "colors";
2059
+ borderLeftColor: "colors";
2060
+ borderRight: "colors";
2061
+ borderRightColor: "colors";
2062
+ borderTop: "colors";
2063
+ borderTopColor: "colors";
2064
+ caretColor: "colors";
2065
+ color: "colors";
2066
+ columnRuleColor: "colors";
2067
+ outline: "colors";
2068
+ outlineColor: "colors";
2069
+ fill: "colors";
2070
+ stroke: "colors";
2071
+ textDecorationColor: "colors";
2072
+ fontFamily: "fonts";
2073
+ fontWeight: "fontWeights";
2074
+ lineHeight: "lineHeights";
2075
+ letterSpacing: "letterSpacings";
2076
+ blockSize: "sizes";
2077
+ minBlockSize: "sizes";
2078
+ maxBlockSize: "sizes";
2079
+ inlineSize: "sizes";
2080
+ minInlineSize: "sizes";
2081
+ maxInlineSize: "sizes";
2082
+ minWidth: "sizes";
2083
+ maxWidth: "sizes";
2084
+ minHeight: "sizes";
2085
+ maxHeight: "sizes";
2086
+ flexBasis: "sizes";
2087
+ gridTemplateColumns: "sizes";
2088
+ gridTemplateRows: "sizes";
2089
+ borderWidth: "borderWidths";
2090
+ borderTopWidth: "borderWidths";
2091
+ borderLeftWidth: "borderWidths";
2092
+ borderRightWidth: "borderWidths";
2093
+ borderBottomWidth: "borderWidths";
2094
+ borderStyle: "borderStyles";
2095
+ borderTopStyle: "borderStyles";
2096
+ borderLeftStyle: "borderStyles";
2097
+ borderRightStyle: "borderStyles";
2098
+ borderBottomStyle: "borderStyles";
2099
+ borderRadius: "radii";
2100
+ borderTopLeftRadius: "radii";
2101
+ borderTopRightRadius: "radii";
2102
+ borderBottomRightRadius: "radii";
2103
+ borderBottomLeftRadius: "radii";
2104
+ boxShadow: "shadows";
2105
+ textShadow: "shadows";
2106
+ transition: "transitions";
2107
+ zIndex: "zIndices";
2108
+ };
2109
+ utils: {};
2110
+ };
2111
+
2112
+ export { Button, type ButtonProps, Text, type TextProps, config, createTheme, css, getCssText, globalCss, keyframes, styled, theme };