@giv-igniteui/react 2.0.0 → 2.0.1

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.
package/dist/index.d.ts CHANGED
@@ -5,6 +5,10 @@ import { ComponentProps, ElementType } from 'react';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
6
  import * as Avatar$1 from '@radix-ui/react-avatar';
7
7
  import * as Checkbox$1 from '@radix-ui/react-checkbox';
8
+ import * as _stitches_react_types_theme from '@stitches/react/types/theme';
9
+ import * as _stitches_react_types_css from '@stitches/react/types/css';
10
+ import * as _stitches_react_types_stitches from '@stitches/react/types/stitches';
11
+ import * as _stitches_react_types_util from '@stitches/react/types/util';
8
12
 
9
13
  declare const Box: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
10
14
  colors: {
@@ -22,6 +26,7 @@ declare const Box: _stitches_react_types_styled_component.StyledComponent<"div",
22
26
  ignite500: string;
23
27
  ignite700: string;
24
28
  ignite900: string;
29
+ test: string;
25
30
  };
26
31
  fontSizes: {
27
32
  xxs: string;
@@ -229,6 +234,7 @@ declare const Text: _stitches_react_types_styled_component.StyledComponent<"p",
229
234
  ignite500: string;
230
235
  ignite700: string;
231
236
  ignite900: string;
237
+ test: string;
232
238
  };
233
239
  fontSizes: {
234
240
  xxs: string;
@@ -436,6 +442,7 @@ declare const Heading: _stitches_react_types_styled_component.StyledComponent<"h
436
442
  ignite500: string;
437
443
  ignite700: string;
438
444
  ignite900: string;
445
+ test: string;
439
446
  };
440
447
  fontSizes: {
441
448
  xxs: string;
@@ -641,6 +648,7 @@ declare const AvatarImage: _stitches_react_types_styled_component.StyledComponen
641
648
  ignite500: string;
642
649
  ignite700: string;
643
650
  ignite900: string;
651
+ test: string;
644
652
  };
645
653
  fontSizes: {
646
654
  xxs: string;
@@ -854,6 +862,7 @@ declare const Button: _stitches_react_types_styled_component.StyledComponent<"bu
854
862
  ignite500: string;
855
863
  ignite700: string;
856
864
  ignite900: string;
865
+ test: string;
857
866
  };
858
867
  fontSizes: {
859
868
  xxs: string;
@@ -1060,6 +1069,7 @@ declare const Input: _stitches_react_types_styled_component.StyledComponent<"inp
1060
1069
  ignite500: string;
1061
1070
  ignite700: string;
1062
1071
  ignite900: string;
1072
+ test: string;
1063
1073
  };
1064
1074
  fontSizes: {
1065
1075
  xxs: string;
@@ -1250,10 +1260,7 @@ declare const Input: _stitches_react_types_styled_component.StyledComponent<"inp
1250
1260
  interface TextInputProps extends ComponentProps<typeof Input> {
1251
1261
  prefix?: string;
1252
1262
  }
1253
- declare function TextInput({ prefix, ...props }: TextInputProps): react_jsx_runtime.JSX.Element;
1254
- declare namespace TextInput {
1255
- var displayName: string;
1256
- }
1263
+ declare const TextInput: react.ForwardRefExoticComponent<Omit<TextInputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1257
1264
 
1258
1265
  declare const TextArea: _stitches_react_types_styled_component.StyledComponent<"textarea", {}, {}, _stitches_react_types_css_util.CSS<{}, {
1259
1266
  colors: {
@@ -1271,6 +1278,7 @@ declare const TextArea: _stitches_react_types_styled_component.StyledComponent<"
1271
1278
  ignite500: string;
1272
1279
  ignite700: string;
1273
1280
  ignite900: string;
1281
+ test: string;
1274
1282
  };
1275
1283
  fontSizes: {
1276
1284
  xxs: string;
@@ -1476,6 +1484,7 @@ declare const CheckboxContainer: _stitches_react_types_styled_component.StyledCo
1476
1484
  ignite500: string;
1477
1485
  ignite700: string;
1478
1486
  ignite900: string;
1487
+ test: string;
1479
1488
  };
1480
1489
  fontSizes: {
1481
1490
  xxs: string;
@@ -1679,4 +1688,1708 @@ declare namespace MultiStep {
1679
1688
  var displayName: string;
1680
1689
  }
1681
1690
 
1682
- export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Heading, type HeadingProps, MultiStep, type MultiStepProps, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps };
1691
+ 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 | {
1692
+ [name: string]: unknown;
1693
+ })[], CSS = _stitches_react_types_css_util.CSS<{}, {
1694
+ colors: {
1695
+ white: string;
1696
+ black: string;
1697
+ gray100: string;
1698
+ gray200: string;
1699
+ gray400: string;
1700
+ gray500: string;
1701
+ gray600: string;
1702
+ gray700: string;
1703
+ gray800: string;
1704
+ gray900: string;
1705
+ ignite300: string;
1706
+ ignite500: string;
1707
+ ignite700: string;
1708
+ ignite900: string;
1709
+ test: string;
1710
+ };
1711
+ fontSizes: {
1712
+ xxs: string;
1713
+ xs: string;
1714
+ sm: string;
1715
+ md: string;
1716
+ lg: string;
1717
+ xl: string;
1718
+ '2xl': string;
1719
+ '4xl': string;
1720
+ '5xl': string;
1721
+ '6xl': string;
1722
+ '7xl': string;
1723
+ '8xl': string;
1724
+ '9xl': string;
1725
+ };
1726
+ fontWeights: {
1727
+ regular: string;
1728
+ medium: string;
1729
+ bold: string;
1730
+ };
1731
+ fonts: {
1732
+ default: string;
1733
+ code: string;
1734
+ };
1735
+ lineHeights: {
1736
+ shorter: string;
1737
+ short: string;
1738
+ base: string;
1739
+ tall: string;
1740
+ };
1741
+ radii: {
1742
+ px: string;
1743
+ xs: string;
1744
+ sm: string;
1745
+ md: string;
1746
+ lg: string;
1747
+ full: string;
1748
+ };
1749
+ space: {
1750
+ 1: string;
1751
+ 2: string;
1752
+ 3: string;
1753
+ 4: string;
1754
+ 5: string;
1755
+ 6: string;
1756
+ 7: string;
1757
+ 8: string;
1758
+ 10: string;
1759
+ 12: string;
1760
+ 16: string;
1761
+ 20: string;
1762
+ 40: string;
1763
+ 64: string;
1764
+ 80: string;
1765
+ };
1766
+ }, {
1767
+ height: "space";
1768
+ width: "space";
1769
+ gap: "space";
1770
+ gridGap: "space";
1771
+ columnGap: "space";
1772
+ gridColumnGap: "space";
1773
+ rowGap: "space";
1774
+ gridRowGap: "space";
1775
+ inset: "space";
1776
+ insetBlock: "space";
1777
+ insetBlockEnd: "space";
1778
+ insetBlockStart: "space";
1779
+ insetInline: "space";
1780
+ insetInlineEnd: "space";
1781
+ insetInlineStart: "space";
1782
+ margin: "space";
1783
+ marginTop: "space";
1784
+ marginRight: "space";
1785
+ marginBottom: "space";
1786
+ marginLeft: "space";
1787
+ marginBlock: "space";
1788
+ marginBlockEnd: "space";
1789
+ marginBlockStart: "space";
1790
+ marginInline: "space";
1791
+ marginInlineEnd: "space";
1792
+ marginInlineStart: "space";
1793
+ padding: "space";
1794
+ paddingTop: "space";
1795
+ paddingRight: "space";
1796
+ paddingBottom: "space";
1797
+ paddingLeft: "space";
1798
+ paddingBlock: "space";
1799
+ paddingBlockEnd: "space";
1800
+ paddingBlockStart: "space";
1801
+ paddingInline: "space";
1802
+ paddingInlineEnd: "space";
1803
+ paddingInlineStart: "space";
1804
+ scrollMargin: "space";
1805
+ scrollMarginTop: "space";
1806
+ scrollMarginRight: "space";
1807
+ scrollMarginBottom: "space";
1808
+ scrollMarginLeft: "space";
1809
+ scrollMarginBlock: "space";
1810
+ scrollMarginBlockEnd: "space";
1811
+ scrollMarginBlockStart: "space";
1812
+ scrollMarginInline: "space";
1813
+ scrollMarginInlineEnd: "space";
1814
+ scrollMarginInlineStart: "space";
1815
+ scrollPadding: "space";
1816
+ scrollPaddingTop: "space";
1817
+ scrollPaddingRight: "space";
1818
+ scrollPaddingBottom: "space";
1819
+ scrollPaddingLeft: "space";
1820
+ scrollPaddingBlock: "space";
1821
+ scrollPaddingBlockEnd: "space";
1822
+ scrollPaddingBlockStart: "space";
1823
+ scrollPaddingInline: "space";
1824
+ scrollPaddingInlineEnd: "space";
1825
+ scrollPaddingInlineStart: "space";
1826
+ top: "space";
1827
+ right: "space";
1828
+ bottom: "space";
1829
+ left: "space";
1830
+ fontSize: "fontSizes";
1831
+ background: "colors";
1832
+ backgroundColor: "colors";
1833
+ backgroundImage: "colors";
1834
+ borderImage: "colors";
1835
+ border: "colors";
1836
+ borderBlock: "colors";
1837
+ borderBlockEnd: "colors";
1838
+ borderBlockStart: "colors";
1839
+ borderBottom: "colors";
1840
+ borderBottomColor: "colors";
1841
+ borderColor: "colors";
1842
+ borderInline: "colors";
1843
+ borderInlineEnd: "colors";
1844
+ borderInlineStart: "colors";
1845
+ borderLeft: "colors";
1846
+ borderLeftColor: "colors";
1847
+ borderRight: "colors";
1848
+ borderRightColor: "colors";
1849
+ borderTop: "colors";
1850
+ borderTopColor: "colors";
1851
+ caretColor: "colors";
1852
+ color: "colors";
1853
+ columnRuleColor: "colors";
1854
+ outline: "colors";
1855
+ outlineColor: "colors";
1856
+ fill: "colors";
1857
+ stroke: "colors";
1858
+ textDecorationColor: "colors";
1859
+ fontFamily: "fonts";
1860
+ fontWeight: "fontWeights";
1861
+ lineHeight: "lineHeights";
1862
+ letterSpacing: "letterSpacings";
1863
+ blockSize: "sizes";
1864
+ minBlockSize: "sizes";
1865
+ maxBlockSize: "sizes";
1866
+ inlineSize: "sizes";
1867
+ minInlineSize: "sizes";
1868
+ maxInlineSize: "sizes";
1869
+ minWidth: "sizes";
1870
+ maxWidth: "sizes";
1871
+ minHeight: "sizes";
1872
+ maxHeight: "sizes";
1873
+ flexBasis: "sizes";
1874
+ gridTemplateColumns: "sizes";
1875
+ gridTemplateRows: "sizes";
1876
+ borderWidth: "borderWidths";
1877
+ borderTopWidth: "borderWidths";
1878
+ borderLeftWidth: "borderWidths";
1879
+ borderRightWidth: "borderWidths";
1880
+ borderBottomWidth: "borderWidths";
1881
+ borderStyle: "borderStyles";
1882
+ borderTopStyle: "borderStyles";
1883
+ borderLeftStyle: "borderStyles";
1884
+ borderRightStyle: "borderStyles";
1885
+ borderBottomStyle: "borderStyles";
1886
+ borderRadius: "radii";
1887
+ borderTopLeftRadius: "radii";
1888
+ borderTopRightRadius: "radii";
1889
+ borderBottomRightRadius: "radii";
1890
+ borderBottomLeftRadius: "radii";
1891
+ boxShadow: "shadows";
1892
+ textShadow: "shadows";
1893
+ transition: "transitions";
1894
+ zIndex: "zIndices";
1895
+ }, {}>>(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> & {
1896
+ variants?: {
1897
+ [x: string]: {
1898
+ [x: string]: CSS;
1899
+ [x: number]: CSS;
1900
+ };
1901
+ } | undefined;
1902
+ 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) & {
1903
+ css: CSS;
1904
+ })[] | undefined;
1905
+ 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;
1906
+ } & 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<{}, {
1907
+ colors: {
1908
+ white: string;
1909
+ black: string;
1910
+ gray100: string;
1911
+ gray200: string;
1912
+ gray400: string;
1913
+ gray500: string;
1914
+ gray600: string;
1915
+ gray700: string;
1916
+ gray800: string;
1917
+ gray900: string;
1918
+ ignite300: string;
1919
+ ignite500: string;
1920
+ ignite700: string;
1921
+ ignite900: string;
1922
+ test: string;
1923
+ };
1924
+ fontSizes: {
1925
+ xxs: string;
1926
+ xs: string;
1927
+ sm: string;
1928
+ md: string;
1929
+ lg: string;
1930
+ xl: string;
1931
+ '2xl': string;
1932
+ '4xl': string;
1933
+ '5xl': string;
1934
+ '6xl': string;
1935
+ '7xl': string;
1936
+ '8xl': string;
1937
+ '9xl': string;
1938
+ };
1939
+ fontWeights: {
1940
+ regular: string;
1941
+ medium: string;
1942
+ bold: string;
1943
+ };
1944
+ fonts: {
1945
+ default: string;
1946
+ code: string;
1947
+ };
1948
+ lineHeights: {
1949
+ shorter: string;
1950
+ short: string;
1951
+ base: string;
1952
+ tall: string;
1953
+ };
1954
+ radii: {
1955
+ px: string;
1956
+ xs: string;
1957
+ sm: string;
1958
+ md: string;
1959
+ lg: string;
1960
+ full: string;
1961
+ };
1962
+ space: {
1963
+ 1: string;
1964
+ 2: string;
1965
+ 3: string;
1966
+ 4: string;
1967
+ 5: string;
1968
+ 6: string;
1969
+ 7: string;
1970
+ 8: string;
1971
+ 10: string;
1972
+ 12: string;
1973
+ 16: string;
1974
+ 20: string;
1975
+ 40: string;
1976
+ 64: string;
1977
+ 80: string;
1978
+ };
1979
+ }, {
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
+ declare const css: <Composers extends (string | React.ExoticComponent<any> | React.JSXElementConstructor<any> | _stitches_react_types_util.Function | {
2110
+ [name: string]: unknown;
2111
+ })[], CSS = _stitches_react_types_css_util.CSS<{}, {
2112
+ colors: {
2113
+ white: string;
2114
+ black: string;
2115
+ gray100: string;
2116
+ gray200: string;
2117
+ gray400: string;
2118
+ gray500: string;
2119
+ gray600: string;
2120
+ gray700: string;
2121
+ gray800: string;
2122
+ gray900: string;
2123
+ ignite300: string;
2124
+ ignite500: string;
2125
+ ignite700: string;
2126
+ ignite900: string;
2127
+ test: string;
2128
+ };
2129
+ fontSizes: {
2130
+ xxs: string;
2131
+ xs: string;
2132
+ sm: string;
2133
+ md: string;
2134
+ lg: string;
2135
+ xl: string;
2136
+ '2xl': string;
2137
+ '4xl': string;
2138
+ '5xl': string;
2139
+ '6xl': string;
2140
+ '7xl': string;
2141
+ '8xl': string;
2142
+ '9xl': string;
2143
+ };
2144
+ fontWeights: {
2145
+ regular: string;
2146
+ medium: string;
2147
+ bold: string;
2148
+ };
2149
+ fonts: {
2150
+ default: string;
2151
+ code: string;
2152
+ };
2153
+ lineHeights: {
2154
+ shorter: string;
2155
+ short: string;
2156
+ base: string;
2157
+ tall: string;
2158
+ };
2159
+ radii: {
2160
+ px: string;
2161
+ xs: string;
2162
+ sm: string;
2163
+ md: string;
2164
+ lg: string;
2165
+ full: string;
2166
+ };
2167
+ space: {
2168
+ 1: string;
2169
+ 2: string;
2170
+ 3: string;
2171
+ 4: string;
2172
+ 5: string;
2173
+ 6: string;
2174
+ 7: string;
2175
+ 8: string;
2176
+ 10: string;
2177
+ 12: string;
2178
+ 16: string;
2179
+ 20: string;
2180
+ 40: string;
2181
+ 64: string;
2182
+ 80: string;
2183
+ };
2184
+ }, {
2185
+ height: "space";
2186
+ width: "space";
2187
+ gap: "space";
2188
+ gridGap: "space";
2189
+ columnGap: "space";
2190
+ gridColumnGap: "space";
2191
+ rowGap: "space";
2192
+ gridRowGap: "space";
2193
+ inset: "space";
2194
+ insetBlock: "space";
2195
+ insetBlockEnd: "space";
2196
+ insetBlockStart: "space";
2197
+ insetInline: "space";
2198
+ insetInlineEnd: "space";
2199
+ insetInlineStart: "space";
2200
+ margin: "space";
2201
+ marginTop: "space";
2202
+ marginRight: "space";
2203
+ marginBottom: "space";
2204
+ marginLeft: "space";
2205
+ marginBlock: "space";
2206
+ marginBlockEnd: "space";
2207
+ marginBlockStart: "space";
2208
+ marginInline: "space";
2209
+ marginInlineEnd: "space";
2210
+ marginInlineStart: "space";
2211
+ padding: "space";
2212
+ paddingTop: "space";
2213
+ paddingRight: "space";
2214
+ paddingBottom: "space";
2215
+ paddingLeft: "space";
2216
+ paddingBlock: "space";
2217
+ paddingBlockEnd: "space";
2218
+ paddingBlockStart: "space";
2219
+ paddingInline: "space";
2220
+ paddingInlineEnd: "space";
2221
+ paddingInlineStart: "space";
2222
+ scrollMargin: "space";
2223
+ scrollMarginTop: "space";
2224
+ scrollMarginRight: "space";
2225
+ scrollMarginBottom: "space";
2226
+ scrollMarginLeft: "space";
2227
+ scrollMarginBlock: "space";
2228
+ scrollMarginBlockEnd: "space";
2229
+ scrollMarginBlockStart: "space";
2230
+ scrollMarginInline: "space";
2231
+ scrollMarginInlineEnd: "space";
2232
+ scrollMarginInlineStart: "space";
2233
+ scrollPadding: "space";
2234
+ scrollPaddingTop: "space";
2235
+ scrollPaddingRight: "space";
2236
+ scrollPaddingBottom: "space";
2237
+ scrollPaddingLeft: "space";
2238
+ scrollPaddingBlock: "space";
2239
+ scrollPaddingBlockEnd: "space";
2240
+ scrollPaddingBlockStart: "space";
2241
+ scrollPaddingInline: "space";
2242
+ scrollPaddingInlineEnd: "space";
2243
+ scrollPaddingInlineStart: "space";
2244
+ top: "space";
2245
+ right: "space";
2246
+ bottom: "space";
2247
+ left: "space";
2248
+ fontSize: "fontSizes";
2249
+ background: "colors";
2250
+ backgroundColor: "colors";
2251
+ backgroundImage: "colors";
2252
+ borderImage: "colors";
2253
+ border: "colors";
2254
+ borderBlock: "colors";
2255
+ borderBlockEnd: "colors";
2256
+ borderBlockStart: "colors";
2257
+ borderBottom: "colors";
2258
+ borderBottomColor: "colors";
2259
+ borderColor: "colors";
2260
+ borderInline: "colors";
2261
+ borderInlineEnd: "colors";
2262
+ borderInlineStart: "colors";
2263
+ borderLeft: "colors";
2264
+ borderLeftColor: "colors";
2265
+ borderRight: "colors";
2266
+ borderRightColor: "colors";
2267
+ borderTop: "colors";
2268
+ borderTopColor: "colors";
2269
+ caretColor: "colors";
2270
+ color: "colors";
2271
+ columnRuleColor: "colors";
2272
+ outline: "colors";
2273
+ outlineColor: "colors";
2274
+ fill: "colors";
2275
+ stroke: "colors";
2276
+ textDecorationColor: "colors";
2277
+ fontFamily: "fonts";
2278
+ fontWeight: "fontWeights";
2279
+ lineHeight: "lineHeights";
2280
+ letterSpacing: "letterSpacings";
2281
+ blockSize: "sizes";
2282
+ minBlockSize: "sizes";
2283
+ maxBlockSize: "sizes";
2284
+ inlineSize: "sizes";
2285
+ minInlineSize: "sizes";
2286
+ maxInlineSize: "sizes";
2287
+ minWidth: "sizes";
2288
+ maxWidth: "sizes";
2289
+ minHeight: "sizes";
2290
+ maxHeight: "sizes";
2291
+ flexBasis: "sizes";
2292
+ gridTemplateColumns: "sizes";
2293
+ gridTemplateRows: "sizes";
2294
+ borderWidth: "borderWidths";
2295
+ borderTopWidth: "borderWidths";
2296
+ borderLeftWidth: "borderWidths";
2297
+ borderRightWidth: "borderWidths";
2298
+ borderBottomWidth: "borderWidths";
2299
+ borderStyle: "borderStyles";
2300
+ borderTopStyle: "borderStyles";
2301
+ borderLeftStyle: "borderStyles";
2302
+ borderRightStyle: "borderStyles";
2303
+ borderBottomStyle: "borderStyles";
2304
+ borderRadius: "radii";
2305
+ borderTopLeftRadius: "radii";
2306
+ borderTopRightRadius: "radii";
2307
+ borderBottomRightRadius: "radii";
2308
+ borderBottomLeftRadius: "radii";
2309
+ boxShadow: "shadows";
2310
+ textShadow: "shadows";
2311
+ transition: "transitions";
2312
+ zIndex: "zIndices";
2313
+ }, {}>>(...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> & {
2314
+ variants?: {
2315
+ [x: string]: {
2316
+ [x: string]: CSS;
2317
+ [x: number]: CSS;
2318
+ };
2319
+ } | undefined;
2320
+ 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) & {
2321
+ css: CSS;
2322
+ })[] | undefined;
2323
+ 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;
2324
+ } & 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>;
2325
+ declare const globalCss: <Styles extends {
2326
+ [K: string]: any;
2327
+ }>(...styles: ({
2328
+ '@import'?: unknown;
2329
+ '@font-face'?: unknown;
2330
+ } & { [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}` ? {
2331
+ [x: string]: _stitches_react_types_css_util.CSS<{}, {
2332
+ colors: {
2333
+ white: string;
2334
+ black: string;
2335
+ gray100: string;
2336
+ gray200: string;
2337
+ gray400: string;
2338
+ gray500: string;
2339
+ gray600: string;
2340
+ gray700: string;
2341
+ gray800: string;
2342
+ gray900: string;
2343
+ ignite300: string;
2344
+ ignite500: string;
2345
+ ignite700: string;
2346
+ ignite900: string;
2347
+ test: string;
2348
+ };
2349
+ fontSizes: {
2350
+ xxs: string;
2351
+ xs: string;
2352
+ sm: string;
2353
+ md: string;
2354
+ lg: string;
2355
+ xl: string;
2356
+ '2xl': string;
2357
+ '4xl': string;
2358
+ '5xl': string;
2359
+ '6xl': string;
2360
+ '7xl': string;
2361
+ '8xl': string;
2362
+ '9xl': string;
2363
+ };
2364
+ fontWeights: {
2365
+ regular: string;
2366
+ medium: string;
2367
+ bold: string;
2368
+ };
2369
+ fonts: {
2370
+ default: string;
2371
+ code: string;
2372
+ };
2373
+ lineHeights: {
2374
+ shorter: string;
2375
+ short: string;
2376
+ base: string;
2377
+ tall: string;
2378
+ };
2379
+ radii: {
2380
+ px: string;
2381
+ xs: string;
2382
+ sm: string;
2383
+ md: string;
2384
+ lg: string;
2385
+ full: string;
2386
+ };
2387
+ space: {
2388
+ 1: string;
2389
+ 2: string;
2390
+ 3: string;
2391
+ 4: string;
2392
+ 5: string;
2393
+ 6: string;
2394
+ 7: string;
2395
+ 8: string;
2396
+ 10: string;
2397
+ 12: string;
2398
+ 16: string;
2399
+ 20: string;
2400
+ 40: string;
2401
+ 64: string;
2402
+ 80: string;
2403
+ };
2404
+ }, {
2405
+ height: "space";
2406
+ width: "space";
2407
+ gap: "space";
2408
+ gridGap: "space";
2409
+ columnGap: "space";
2410
+ gridColumnGap: "space";
2411
+ rowGap: "space";
2412
+ gridRowGap: "space";
2413
+ inset: "space";
2414
+ insetBlock: "space";
2415
+ insetBlockEnd: "space";
2416
+ insetBlockStart: "space";
2417
+ insetInline: "space";
2418
+ insetInlineEnd: "space";
2419
+ insetInlineStart: "space";
2420
+ margin: "space";
2421
+ marginTop: "space";
2422
+ marginRight: "space";
2423
+ marginBottom: "space";
2424
+ marginLeft: "space";
2425
+ marginBlock: "space";
2426
+ marginBlockEnd: "space";
2427
+ marginBlockStart: "space";
2428
+ marginInline: "space";
2429
+ marginInlineEnd: "space";
2430
+ marginInlineStart: "space";
2431
+ padding: "space";
2432
+ paddingTop: "space";
2433
+ paddingRight: "space";
2434
+ paddingBottom: "space";
2435
+ paddingLeft: "space";
2436
+ paddingBlock: "space";
2437
+ paddingBlockEnd: "space";
2438
+ paddingBlockStart: "space";
2439
+ paddingInline: "space";
2440
+ paddingInlineEnd: "space";
2441
+ paddingInlineStart: "space";
2442
+ scrollMargin: "space";
2443
+ scrollMarginTop: "space";
2444
+ scrollMarginRight: "space";
2445
+ scrollMarginBottom: "space";
2446
+ scrollMarginLeft: "space";
2447
+ scrollMarginBlock: "space";
2448
+ scrollMarginBlockEnd: "space";
2449
+ scrollMarginBlockStart: "space";
2450
+ scrollMarginInline: "space";
2451
+ scrollMarginInlineEnd: "space";
2452
+ scrollMarginInlineStart: "space";
2453
+ scrollPadding: "space";
2454
+ scrollPaddingTop: "space";
2455
+ scrollPaddingRight: "space";
2456
+ scrollPaddingBottom: "space";
2457
+ scrollPaddingLeft: "space";
2458
+ scrollPaddingBlock: "space";
2459
+ scrollPaddingBlockEnd: "space";
2460
+ scrollPaddingBlockStart: "space";
2461
+ scrollPaddingInline: "space";
2462
+ scrollPaddingInlineEnd: "space";
2463
+ scrollPaddingInlineStart: "space";
2464
+ top: "space";
2465
+ right: "space";
2466
+ bottom: "space";
2467
+ left: "space";
2468
+ fontSize: "fontSizes";
2469
+ background: "colors";
2470
+ backgroundColor: "colors";
2471
+ backgroundImage: "colors";
2472
+ borderImage: "colors";
2473
+ border: "colors";
2474
+ borderBlock: "colors";
2475
+ borderBlockEnd: "colors";
2476
+ borderBlockStart: "colors";
2477
+ borderBottom: "colors";
2478
+ borderBottomColor: "colors";
2479
+ borderColor: "colors";
2480
+ borderInline: "colors";
2481
+ borderInlineEnd: "colors";
2482
+ borderInlineStart: "colors";
2483
+ borderLeft: "colors";
2484
+ borderLeftColor: "colors";
2485
+ borderRight: "colors";
2486
+ borderRightColor: "colors";
2487
+ borderTop: "colors";
2488
+ borderTopColor: "colors";
2489
+ caretColor: "colors";
2490
+ color: "colors";
2491
+ columnRuleColor: "colors";
2492
+ outline: "colors";
2493
+ outlineColor: "colors";
2494
+ fill: "colors";
2495
+ stroke: "colors";
2496
+ textDecorationColor: "colors";
2497
+ fontFamily: "fonts";
2498
+ fontWeight: "fontWeights";
2499
+ lineHeight: "lineHeights";
2500
+ letterSpacing: "letterSpacings";
2501
+ blockSize: "sizes";
2502
+ minBlockSize: "sizes";
2503
+ maxBlockSize: "sizes";
2504
+ inlineSize: "sizes";
2505
+ minInlineSize: "sizes";
2506
+ maxInlineSize: "sizes";
2507
+ minWidth: "sizes";
2508
+ maxWidth: "sizes";
2509
+ minHeight: "sizes";
2510
+ maxHeight: "sizes";
2511
+ flexBasis: "sizes";
2512
+ gridTemplateColumns: "sizes";
2513
+ gridTemplateRows: "sizes";
2514
+ borderWidth: "borderWidths";
2515
+ borderTopWidth: "borderWidths";
2516
+ borderLeftWidth: "borderWidths";
2517
+ borderRightWidth: "borderWidths";
2518
+ borderBottomWidth: "borderWidths";
2519
+ borderStyle: "borderStyles";
2520
+ borderTopStyle: "borderStyles";
2521
+ borderLeftStyle: "borderStyles";
2522
+ borderRightStyle: "borderStyles";
2523
+ borderBottomStyle: "borderStyles";
2524
+ borderRadius: "radii";
2525
+ borderTopLeftRadius: "radii";
2526
+ borderTopRightRadius: "radii";
2527
+ borderBottomRightRadius: "radii";
2528
+ borderBottomLeftRadius: "radii";
2529
+ boxShadow: "shadows";
2530
+ textShadow: "shadows";
2531
+ transition: "transitions";
2532
+ zIndex: "zIndices";
2533
+ }, {}>;
2534
+ } : K extends `@property ${string}` ? _stitches_react_types_css.AtRule.Property : _stitches_react_types_css_util.CSS<{}, {
2535
+ colors: {
2536
+ white: string;
2537
+ black: string;
2538
+ gray100: string;
2539
+ gray200: string;
2540
+ gray400: string;
2541
+ gray500: string;
2542
+ gray600: string;
2543
+ gray700: string;
2544
+ gray800: string;
2545
+ gray900: string;
2546
+ ignite300: string;
2547
+ ignite500: string;
2548
+ ignite700: string;
2549
+ ignite900: string;
2550
+ test: string;
2551
+ };
2552
+ fontSizes: {
2553
+ xxs: string;
2554
+ xs: string;
2555
+ sm: string;
2556
+ md: string;
2557
+ lg: string;
2558
+ xl: string;
2559
+ '2xl': string;
2560
+ '4xl': string;
2561
+ '5xl': string;
2562
+ '6xl': string;
2563
+ '7xl': string;
2564
+ '8xl': string;
2565
+ '9xl': string;
2566
+ };
2567
+ fontWeights: {
2568
+ regular: string;
2569
+ medium: string;
2570
+ bold: string;
2571
+ };
2572
+ fonts: {
2573
+ default: string;
2574
+ code: string;
2575
+ };
2576
+ lineHeights: {
2577
+ shorter: string;
2578
+ short: string;
2579
+ base: string;
2580
+ tall: string;
2581
+ };
2582
+ radii: {
2583
+ px: string;
2584
+ xs: string;
2585
+ sm: string;
2586
+ md: string;
2587
+ lg: string;
2588
+ full: string;
2589
+ };
2590
+ space: {
2591
+ 1: string;
2592
+ 2: string;
2593
+ 3: string;
2594
+ 4: string;
2595
+ 5: string;
2596
+ 6: string;
2597
+ 7: string;
2598
+ 8: string;
2599
+ 10: string;
2600
+ 12: string;
2601
+ 16: string;
2602
+ 20: string;
2603
+ 40: string;
2604
+ 64: string;
2605
+ 80: string;
2606
+ };
2607
+ }, {
2608
+ height: "space";
2609
+ width: "space";
2610
+ gap: "space";
2611
+ gridGap: "space";
2612
+ columnGap: "space";
2613
+ gridColumnGap: "space";
2614
+ rowGap: "space";
2615
+ gridRowGap: "space";
2616
+ inset: "space";
2617
+ insetBlock: "space";
2618
+ insetBlockEnd: "space";
2619
+ insetBlockStart: "space";
2620
+ insetInline: "space";
2621
+ insetInlineEnd: "space";
2622
+ insetInlineStart: "space";
2623
+ margin: "space";
2624
+ marginTop: "space";
2625
+ marginRight: "space";
2626
+ marginBottom: "space";
2627
+ marginLeft: "space";
2628
+ marginBlock: "space";
2629
+ marginBlockEnd: "space";
2630
+ marginBlockStart: "space";
2631
+ marginInline: "space";
2632
+ marginInlineEnd: "space";
2633
+ marginInlineStart: "space";
2634
+ padding: "space";
2635
+ paddingTop: "space";
2636
+ paddingRight: "space";
2637
+ paddingBottom: "space";
2638
+ paddingLeft: "space";
2639
+ paddingBlock: "space";
2640
+ paddingBlockEnd: "space";
2641
+ paddingBlockStart: "space";
2642
+ paddingInline: "space";
2643
+ paddingInlineEnd: "space";
2644
+ paddingInlineStart: "space";
2645
+ scrollMargin: "space";
2646
+ scrollMarginTop: "space";
2647
+ scrollMarginRight: "space";
2648
+ scrollMarginBottom: "space";
2649
+ scrollMarginLeft: "space";
2650
+ scrollMarginBlock: "space";
2651
+ scrollMarginBlockEnd: "space";
2652
+ scrollMarginBlockStart: "space";
2653
+ scrollMarginInline: "space";
2654
+ scrollMarginInlineEnd: "space";
2655
+ scrollMarginInlineStart: "space";
2656
+ scrollPadding: "space";
2657
+ scrollPaddingTop: "space";
2658
+ scrollPaddingRight: "space";
2659
+ scrollPaddingBottom: "space";
2660
+ scrollPaddingLeft: "space";
2661
+ scrollPaddingBlock: "space";
2662
+ scrollPaddingBlockEnd: "space";
2663
+ scrollPaddingBlockStart: "space";
2664
+ scrollPaddingInline: "space";
2665
+ scrollPaddingInlineEnd: "space";
2666
+ scrollPaddingInlineStart: "space";
2667
+ top: "space";
2668
+ right: "space";
2669
+ bottom: "space";
2670
+ left: "space";
2671
+ fontSize: "fontSizes";
2672
+ background: "colors";
2673
+ backgroundColor: "colors";
2674
+ backgroundImage: "colors";
2675
+ borderImage: "colors";
2676
+ border: "colors";
2677
+ borderBlock: "colors";
2678
+ borderBlockEnd: "colors";
2679
+ borderBlockStart: "colors";
2680
+ borderBottom: "colors";
2681
+ borderBottomColor: "colors";
2682
+ borderColor: "colors";
2683
+ borderInline: "colors";
2684
+ borderInlineEnd: "colors";
2685
+ borderInlineStart: "colors";
2686
+ borderLeft: "colors";
2687
+ borderLeftColor: "colors";
2688
+ borderRight: "colors";
2689
+ borderRightColor: "colors";
2690
+ borderTop: "colors";
2691
+ borderTopColor: "colors";
2692
+ caretColor: "colors";
2693
+ color: "colors";
2694
+ columnRuleColor: "colors";
2695
+ outline: "colors";
2696
+ outlineColor: "colors";
2697
+ fill: "colors";
2698
+ stroke: "colors";
2699
+ textDecorationColor: "colors";
2700
+ fontFamily: "fonts";
2701
+ fontWeight: "fontWeights";
2702
+ lineHeight: "lineHeights";
2703
+ letterSpacing: "letterSpacings";
2704
+ blockSize: "sizes";
2705
+ minBlockSize: "sizes";
2706
+ maxBlockSize: "sizes";
2707
+ inlineSize: "sizes";
2708
+ minInlineSize: "sizes";
2709
+ maxInlineSize: "sizes";
2710
+ minWidth: "sizes";
2711
+ maxWidth: "sizes";
2712
+ minHeight: "sizes";
2713
+ maxHeight: "sizes";
2714
+ flexBasis: "sizes";
2715
+ gridTemplateColumns: "sizes";
2716
+ gridTemplateRows: "sizes";
2717
+ borderWidth: "borderWidths";
2718
+ borderTopWidth: "borderWidths";
2719
+ borderLeftWidth: "borderWidths";
2720
+ borderRightWidth: "borderWidths";
2721
+ borderBottomWidth: "borderWidths";
2722
+ borderStyle: "borderStyles";
2723
+ borderTopStyle: "borderStyles";
2724
+ borderLeftStyle: "borderStyles";
2725
+ borderRightStyle: "borderStyles";
2726
+ borderBottomStyle: "borderStyles";
2727
+ borderRadius: "radii";
2728
+ borderTopLeftRadius: "radii";
2729
+ borderTopRightRadius: "radii";
2730
+ borderBottomRightRadius: "radii";
2731
+ borderBottomLeftRadius: "radii";
2732
+ boxShadow: "shadows";
2733
+ textShadow: "shadows";
2734
+ transition: "transitions";
2735
+ zIndex: "zIndices";
2736
+ }, {}>; })[]) => {
2737
+ (): string;
2738
+ };
2739
+ declare const keyframes: (style: {
2740
+ [offset: string]: _stitches_react_types_css_util.CSS<{}, {
2741
+ colors: {
2742
+ white: string;
2743
+ black: string;
2744
+ gray100: string;
2745
+ gray200: string;
2746
+ gray400: string;
2747
+ gray500: string;
2748
+ gray600: string;
2749
+ gray700: string;
2750
+ gray800: string;
2751
+ gray900: string;
2752
+ ignite300: string;
2753
+ ignite500: string;
2754
+ ignite700: string;
2755
+ ignite900: string;
2756
+ test: string;
2757
+ };
2758
+ fontSizes: {
2759
+ xxs: string;
2760
+ xs: string;
2761
+ sm: string;
2762
+ md: string;
2763
+ lg: string;
2764
+ xl: string;
2765
+ '2xl': string;
2766
+ '4xl': string;
2767
+ '5xl': string;
2768
+ '6xl': string;
2769
+ '7xl': string;
2770
+ '8xl': string;
2771
+ '9xl': string;
2772
+ };
2773
+ fontWeights: {
2774
+ regular: string;
2775
+ medium: string;
2776
+ bold: string;
2777
+ };
2778
+ fonts: {
2779
+ default: string;
2780
+ code: string;
2781
+ };
2782
+ lineHeights: {
2783
+ shorter: string;
2784
+ short: string;
2785
+ base: string;
2786
+ tall: string;
2787
+ };
2788
+ radii: {
2789
+ px: string;
2790
+ xs: string;
2791
+ sm: string;
2792
+ md: string;
2793
+ lg: string;
2794
+ full: string;
2795
+ };
2796
+ space: {
2797
+ 1: string;
2798
+ 2: string;
2799
+ 3: string;
2800
+ 4: string;
2801
+ 5: string;
2802
+ 6: string;
2803
+ 7: string;
2804
+ 8: string;
2805
+ 10: string;
2806
+ 12: string;
2807
+ 16: string;
2808
+ 20: string;
2809
+ 40: string;
2810
+ 64: string;
2811
+ 80: string;
2812
+ };
2813
+ }, {
2814
+ height: "space";
2815
+ width: "space";
2816
+ gap: "space";
2817
+ gridGap: "space";
2818
+ columnGap: "space";
2819
+ gridColumnGap: "space";
2820
+ rowGap: "space";
2821
+ gridRowGap: "space";
2822
+ inset: "space";
2823
+ insetBlock: "space";
2824
+ insetBlockEnd: "space";
2825
+ insetBlockStart: "space";
2826
+ insetInline: "space";
2827
+ insetInlineEnd: "space";
2828
+ insetInlineStart: "space";
2829
+ margin: "space";
2830
+ marginTop: "space";
2831
+ marginRight: "space";
2832
+ marginBottom: "space";
2833
+ marginLeft: "space";
2834
+ marginBlock: "space";
2835
+ marginBlockEnd: "space";
2836
+ marginBlockStart: "space";
2837
+ marginInline: "space";
2838
+ marginInlineEnd: "space";
2839
+ marginInlineStart: "space";
2840
+ padding: "space";
2841
+ paddingTop: "space";
2842
+ paddingRight: "space";
2843
+ paddingBottom: "space";
2844
+ paddingLeft: "space";
2845
+ paddingBlock: "space";
2846
+ paddingBlockEnd: "space";
2847
+ paddingBlockStart: "space";
2848
+ paddingInline: "space";
2849
+ paddingInlineEnd: "space";
2850
+ paddingInlineStart: "space";
2851
+ scrollMargin: "space";
2852
+ scrollMarginTop: "space";
2853
+ scrollMarginRight: "space";
2854
+ scrollMarginBottom: "space";
2855
+ scrollMarginLeft: "space";
2856
+ scrollMarginBlock: "space";
2857
+ scrollMarginBlockEnd: "space";
2858
+ scrollMarginBlockStart: "space";
2859
+ scrollMarginInline: "space";
2860
+ scrollMarginInlineEnd: "space";
2861
+ scrollMarginInlineStart: "space";
2862
+ scrollPadding: "space";
2863
+ scrollPaddingTop: "space";
2864
+ scrollPaddingRight: "space";
2865
+ scrollPaddingBottom: "space";
2866
+ scrollPaddingLeft: "space";
2867
+ scrollPaddingBlock: "space";
2868
+ scrollPaddingBlockEnd: "space";
2869
+ scrollPaddingBlockStart: "space";
2870
+ scrollPaddingInline: "space";
2871
+ scrollPaddingInlineEnd: "space";
2872
+ scrollPaddingInlineStart: "space";
2873
+ top: "space";
2874
+ right: "space";
2875
+ bottom: "space";
2876
+ left: "space";
2877
+ fontSize: "fontSizes";
2878
+ background: "colors";
2879
+ backgroundColor: "colors";
2880
+ backgroundImage: "colors";
2881
+ borderImage: "colors";
2882
+ border: "colors";
2883
+ borderBlock: "colors";
2884
+ borderBlockEnd: "colors";
2885
+ borderBlockStart: "colors";
2886
+ borderBottom: "colors";
2887
+ borderBottomColor: "colors";
2888
+ borderColor: "colors";
2889
+ borderInline: "colors";
2890
+ borderInlineEnd: "colors";
2891
+ borderInlineStart: "colors";
2892
+ borderLeft: "colors";
2893
+ borderLeftColor: "colors";
2894
+ borderRight: "colors";
2895
+ borderRightColor: "colors";
2896
+ borderTop: "colors";
2897
+ borderTopColor: "colors";
2898
+ caretColor: "colors";
2899
+ color: "colors";
2900
+ columnRuleColor: "colors";
2901
+ outline: "colors";
2902
+ outlineColor: "colors";
2903
+ fill: "colors";
2904
+ stroke: "colors";
2905
+ textDecorationColor: "colors";
2906
+ fontFamily: "fonts";
2907
+ fontWeight: "fontWeights";
2908
+ lineHeight: "lineHeights";
2909
+ letterSpacing: "letterSpacings";
2910
+ blockSize: "sizes";
2911
+ minBlockSize: "sizes";
2912
+ maxBlockSize: "sizes";
2913
+ inlineSize: "sizes";
2914
+ minInlineSize: "sizes";
2915
+ maxInlineSize: "sizes";
2916
+ minWidth: "sizes";
2917
+ maxWidth: "sizes";
2918
+ minHeight: "sizes";
2919
+ maxHeight: "sizes";
2920
+ flexBasis: "sizes";
2921
+ gridTemplateColumns: "sizes";
2922
+ gridTemplateRows: "sizes";
2923
+ borderWidth: "borderWidths";
2924
+ borderTopWidth: "borderWidths";
2925
+ borderLeftWidth: "borderWidths";
2926
+ borderRightWidth: "borderWidths";
2927
+ borderBottomWidth: "borderWidths";
2928
+ borderStyle: "borderStyles";
2929
+ borderTopStyle: "borderStyles";
2930
+ borderLeftStyle: "borderStyles";
2931
+ borderRightStyle: "borderStyles";
2932
+ borderBottomStyle: "borderStyles";
2933
+ borderRadius: "radii";
2934
+ borderTopLeftRadius: "radii";
2935
+ borderTopRightRadius: "radii";
2936
+ borderBottomRightRadius: "radii";
2937
+ borderBottomLeftRadius: "radii";
2938
+ boxShadow: "shadows";
2939
+ textShadow: "shadows";
2940
+ transition: "transitions";
2941
+ zIndex: "zIndices";
2942
+ }, {}>;
2943
+ }) => {
2944
+ (): string;
2945
+ name: string;
2946
+ };
2947
+ declare const getCssText: () => string;
2948
+ declare const theme: string & {
2949
+ className: string;
2950
+ selector: string;
2951
+ } & {
2952
+ colors: {
2953
+ white: _stitches_react_types_theme.Token<"white", string, "colors", "">;
2954
+ black: _stitches_react_types_theme.Token<"black", string, "colors", "">;
2955
+ gray100: _stitches_react_types_theme.Token<"gray100", string, "colors", "">;
2956
+ gray200: _stitches_react_types_theme.Token<"gray200", string, "colors", "">;
2957
+ gray400: _stitches_react_types_theme.Token<"gray400", string, "colors", "">;
2958
+ gray500: _stitches_react_types_theme.Token<"gray500", string, "colors", "">;
2959
+ gray600: _stitches_react_types_theme.Token<"gray600", string, "colors", "">;
2960
+ gray700: _stitches_react_types_theme.Token<"gray700", string, "colors", "">;
2961
+ gray800: _stitches_react_types_theme.Token<"gray800", string, "colors", "">;
2962
+ gray900: _stitches_react_types_theme.Token<"gray900", string, "colors", "">;
2963
+ ignite300: _stitches_react_types_theme.Token<"ignite300", string, "colors", "">;
2964
+ ignite500: _stitches_react_types_theme.Token<"ignite500", string, "colors", "">;
2965
+ ignite700: _stitches_react_types_theme.Token<"ignite700", string, "colors", "">;
2966
+ ignite900: _stitches_react_types_theme.Token<"ignite900", string, "colors", "">;
2967
+ test: _stitches_react_types_theme.Token<"test", string, "colors", "">;
2968
+ };
2969
+ fontSizes: {
2970
+ xxs: _stitches_react_types_theme.Token<"xxs", string, "fontSizes", "">;
2971
+ xs: _stitches_react_types_theme.Token<"xs", string, "fontSizes", "">;
2972
+ sm: _stitches_react_types_theme.Token<"sm", string, "fontSizes", "">;
2973
+ md: _stitches_react_types_theme.Token<"md", string, "fontSizes", "">;
2974
+ lg: _stitches_react_types_theme.Token<"lg", string, "fontSizes", "">;
2975
+ xl: _stitches_react_types_theme.Token<"xl", string, "fontSizes", "">;
2976
+ '2xl': _stitches_react_types_theme.Token<"2xl", string, "fontSizes", "">;
2977
+ '4xl': _stitches_react_types_theme.Token<"4xl", string, "fontSizes", "">;
2978
+ '5xl': _stitches_react_types_theme.Token<"5xl", string, "fontSizes", "">;
2979
+ '6xl': _stitches_react_types_theme.Token<"6xl", string, "fontSizes", "">;
2980
+ '7xl': _stitches_react_types_theme.Token<"7xl", string, "fontSizes", "">;
2981
+ '8xl': _stitches_react_types_theme.Token<"8xl", string, "fontSizes", "">;
2982
+ '9xl': _stitches_react_types_theme.Token<"9xl", string, "fontSizes", "">;
2983
+ };
2984
+ fontWeights: {
2985
+ regular: _stitches_react_types_theme.Token<"regular", string, "fontWeights", "">;
2986
+ medium: _stitches_react_types_theme.Token<"medium", string, "fontWeights", "">;
2987
+ bold: _stitches_react_types_theme.Token<"bold", string, "fontWeights", "">;
2988
+ };
2989
+ fonts: {
2990
+ default: _stitches_react_types_theme.Token<"default", string, "fonts", "">;
2991
+ code: _stitches_react_types_theme.Token<"code", string, "fonts", "">;
2992
+ };
2993
+ lineHeights: {
2994
+ shorter: _stitches_react_types_theme.Token<"shorter", string, "lineHeights", "">;
2995
+ short: _stitches_react_types_theme.Token<"short", string, "lineHeights", "">;
2996
+ base: _stitches_react_types_theme.Token<"base", string, "lineHeights", "">;
2997
+ tall: _stitches_react_types_theme.Token<"tall", string, "lineHeights", "">;
2998
+ };
2999
+ radii: {
3000
+ px: _stitches_react_types_theme.Token<"px", string, "radii", "">;
3001
+ xs: _stitches_react_types_theme.Token<"xs", string, "radii", "">;
3002
+ sm: _stitches_react_types_theme.Token<"sm", string, "radii", "">;
3003
+ md: _stitches_react_types_theme.Token<"md", string, "radii", "">;
3004
+ lg: _stitches_react_types_theme.Token<"lg", string, "radii", "">;
3005
+ full: _stitches_react_types_theme.Token<"full", string, "radii", "">;
3006
+ };
3007
+ space: {
3008
+ 1: _stitches_react_types_theme.Token<"1", string, "space", "">;
3009
+ 2: _stitches_react_types_theme.Token<"2", string, "space", "">;
3010
+ 3: _stitches_react_types_theme.Token<"3", string, "space", "">;
3011
+ 4: _stitches_react_types_theme.Token<"4", string, "space", "">;
3012
+ 5: _stitches_react_types_theme.Token<"5", string, "space", "">;
3013
+ 6: _stitches_react_types_theme.Token<"6", string, "space", "">;
3014
+ 7: _stitches_react_types_theme.Token<"7", string, "space", "">;
3015
+ 8: _stitches_react_types_theme.Token<"8", string, "space", "">;
3016
+ 10: _stitches_react_types_theme.Token<"10", string, "space", "">;
3017
+ 12: _stitches_react_types_theme.Token<"12", string, "space", "">;
3018
+ 16: _stitches_react_types_theme.Token<"16", string, "space", "">;
3019
+ 20: _stitches_react_types_theme.Token<"20", string, "space", "">;
3020
+ 40: _stitches_react_types_theme.Token<"40", string, "space", "">;
3021
+ 64: _stitches_react_types_theme.Token<"64", string, "space", "">;
3022
+ 80: _stitches_react_types_theme.Token<"80", string, "space", "">;
3023
+ };
3024
+ };
3025
+ declare const createTheme: <Argument0 extends string | ({
3026
+ colors?: {
3027
+ white?: string | number | boolean | undefined;
3028
+ black?: string | number | boolean | undefined;
3029
+ gray100?: string | number | boolean | undefined;
3030
+ gray200?: string | number | boolean | undefined;
3031
+ gray400?: string | number | boolean | undefined;
3032
+ gray500?: string | number | boolean | undefined;
3033
+ gray600?: string | number | boolean | undefined;
3034
+ gray700?: string | number | boolean | undefined;
3035
+ gray800?: string | number | boolean | undefined;
3036
+ gray900?: string | number | boolean | undefined;
3037
+ ignite300?: string | number | boolean | undefined;
3038
+ ignite500?: string | number | boolean | undefined;
3039
+ ignite700?: string | number | boolean | undefined;
3040
+ ignite900?: string | number | boolean | undefined;
3041
+ test?: string | number | boolean | undefined;
3042
+ } | undefined;
3043
+ fontSizes?: {
3044
+ xxs?: string | number | boolean | undefined;
3045
+ xs?: string | number | boolean | undefined;
3046
+ sm?: string | number | boolean | undefined;
3047
+ md?: string | number | boolean | undefined;
3048
+ lg?: string | number | boolean | undefined;
3049
+ xl?: string | number | boolean | undefined;
3050
+ '2xl'?: string | number | boolean | undefined;
3051
+ '4xl'?: string | number | boolean | undefined;
3052
+ '5xl'?: string | number | boolean | undefined;
3053
+ '6xl'?: string | number | boolean | undefined;
3054
+ '7xl'?: string | number | boolean | undefined;
3055
+ '8xl'?: string | number | boolean | undefined;
3056
+ '9xl'?: string | number | boolean | undefined;
3057
+ } | undefined;
3058
+ fontWeights?: {
3059
+ regular?: string | number | boolean | undefined;
3060
+ medium?: string | number | boolean | undefined;
3061
+ bold?: string | number | boolean | undefined;
3062
+ } | undefined;
3063
+ fonts?: {
3064
+ default?: string | number | boolean | undefined;
3065
+ code?: string | number | boolean | undefined;
3066
+ } | undefined;
3067
+ lineHeights?: {
3068
+ shorter?: string | number | boolean | undefined;
3069
+ short?: string | number | boolean | undefined;
3070
+ base?: string | number | boolean | undefined;
3071
+ tall?: string | number | boolean | undefined;
3072
+ } | undefined;
3073
+ radii?: {
3074
+ px?: string | number | boolean | undefined;
3075
+ xs?: string | number | boolean | undefined;
3076
+ sm?: string | number | boolean | undefined;
3077
+ md?: string | number | boolean | undefined;
3078
+ lg?: string | number | boolean | undefined;
3079
+ full?: string | number | boolean | undefined;
3080
+ } | undefined;
3081
+ space?: {
3082
+ 1?: string | number | boolean | undefined;
3083
+ 2?: string | number | boolean | undefined;
3084
+ 3?: string | number | boolean | undefined;
3085
+ 4?: string | number | boolean | undefined;
3086
+ 5?: string | number | boolean | undefined;
3087
+ 6?: string | number | boolean | undefined;
3088
+ 7?: string | number | boolean | undefined;
3089
+ 8?: string | number | boolean | undefined;
3090
+ 10?: string | number | boolean | undefined;
3091
+ 12?: string | number | boolean | undefined;
3092
+ 16?: string | number | boolean | undefined;
3093
+ 20?: string | number | boolean | undefined;
3094
+ 40?: string | number | boolean | undefined;
3095
+ 64?: string | number | boolean | undefined;
3096
+ 80?: string | number | boolean | undefined;
3097
+ } | undefined;
3098
+ } & {
3099
+ [x: string]: {
3100
+ [x: string]: string | number | boolean;
3101
+ [x: number]: string | number | boolean;
3102
+ };
3103
+ }), Argument1 extends string | ({
3104
+ colors?: {
3105
+ white?: string | number | boolean | undefined;
3106
+ black?: string | number | boolean | undefined;
3107
+ gray100?: string | number | boolean | undefined;
3108
+ gray200?: string | number | boolean | undefined;
3109
+ gray400?: string | number | boolean | undefined;
3110
+ gray500?: string | number | boolean | undefined;
3111
+ gray600?: string | number | boolean | undefined;
3112
+ gray700?: string | number | boolean | undefined;
3113
+ gray800?: string | number | boolean | undefined;
3114
+ gray900?: string | number | boolean | undefined;
3115
+ ignite300?: string | number | boolean | undefined;
3116
+ ignite500?: string | number | boolean | undefined;
3117
+ ignite700?: string | number | boolean | undefined;
3118
+ ignite900?: string | number | boolean | undefined;
3119
+ test?: string | number | boolean | undefined;
3120
+ } | undefined;
3121
+ fontSizes?: {
3122
+ xxs?: string | number | boolean | undefined;
3123
+ xs?: string | number | boolean | undefined;
3124
+ sm?: string | number | boolean | undefined;
3125
+ md?: string | number | boolean | undefined;
3126
+ lg?: string | number | boolean | undefined;
3127
+ xl?: string | number | boolean | undefined;
3128
+ '2xl'?: string | number | boolean | undefined;
3129
+ '4xl'?: string | number | boolean | undefined;
3130
+ '5xl'?: string | number | boolean | undefined;
3131
+ '6xl'?: string | number | boolean | undefined;
3132
+ '7xl'?: string | number | boolean | undefined;
3133
+ '8xl'?: string | number | boolean | undefined;
3134
+ '9xl'?: string | number | boolean | undefined;
3135
+ } | undefined;
3136
+ fontWeights?: {
3137
+ regular?: string | number | boolean | undefined;
3138
+ medium?: string | number | boolean | undefined;
3139
+ bold?: string | number | boolean | undefined;
3140
+ } | undefined;
3141
+ fonts?: {
3142
+ default?: string | number | boolean | undefined;
3143
+ code?: string | number | boolean | undefined;
3144
+ } | undefined;
3145
+ lineHeights?: {
3146
+ shorter?: string | number | boolean | undefined;
3147
+ short?: string | number | boolean | undefined;
3148
+ base?: string | number | boolean | undefined;
3149
+ tall?: string | number | boolean | undefined;
3150
+ } | undefined;
3151
+ radii?: {
3152
+ px?: string | number | boolean | undefined;
3153
+ xs?: string | number | boolean | undefined;
3154
+ sm?: string | number | boolean | undefined;
3155
+ md?: string | number | boolean | undefined;
3156
+ lg?: string | number | boolean | undefined;
3157
+ full?: string | number | boolean | undefined;
3158
+ } | undefined;
3159
+ space?: {
3160
+ 1?: string | number | boolean | undefined;
3161
+ 2?: string | number | boolean | undefined;
3162
+ 3?: string | number | boolean | undefined;
3163
+ 4?: string | number | boolean | undefined;
3164
+ 5?: string | number | boolean | undefined;
3165
+ 6?: string | number | boolean | undefined;
3166
+ 7?: string | number | boolean | undefined;
3167
+ 8?: string | number | boolean | undefined;
3168
+ 10?: string | number | boolean | undefined;
3169
+ 12?: string | number | boolean | undefined;
3170
+ 16?: string | number | boolean | undefined;
3171
+ 20?: string | number | boolean | undefined;
3172
+ 40?: string | number | boolean | undefined;
3173
+ 64?: string | number | boolean | undefined;
3174
+ 80?: string | number | boolean | undefined;
3175
+ } | undefined;
3176
+ } & {
3177
+ [x: string]: {
3178
+ [x: string]: string | number | boolean;
3179
+ [x: number]: string | number | boolean;
3180
+ };
3181
+ })>(nameOrScalesArg0: Argument0, nameOrScalesArg1?: Argument1 | undefined) => string & {
3182
+ className: string;
3183
+ selector: string;
3184
+ } & (Argument0 extends string ? _stitches_react_types_stitches.ThemeTokens<Argument1, ""> : _stitches_react_types_stitches.ThemeTokens<Argument0, "">);
3185
+ declare const config: {
3186
+ prefix: "";
3187
+ media: {};
3188
+ theme: {
3189
+ colors: {
3190
+ white: string;
3191
+ black: string;
3192
+ gray100: string;
3193
+ gray200: string;
3194
+ gray400: string;
3195
+ gray500: string;
3196
+ gray600: string;
3197
+ gray700: string;
3198
+ gray800: string;
3199
+ gray900: string;
3200
+ ignite300: string;
3201
+ ignite500: string;
3202
+ ignite700: string;
3203
+ ignite900: string;
3204
+ test: string;
3205
+ };
3206
+ fontSizes: {
3207
+ xxs: string;
3208
+ xs: string;
3209
+ sm: string;
3210
+ md: string;
3211
+ lg: string;
3212
+ xl: string;
3213
+ '2xl': string;
3214
+ '4xl': string;
3215
+ '5xl': string;
3216
+ '6xl': string;
3217
+ '7xl': string;
3218
+ '8xl': string;
3219
+ '9xl': string;
3220
+ };
3221
+ fontWeights: {
3222
+ regular: string;
3223
+ medium: string;
3224
+ bold: string;
3225
+ };
3226
+ fonts: {
3227
+ default: string;
3228
+ code: string;
3229
+ };
3230
+ lineHeights: {
3231
+ shorter: string;
3232
+ short: string;
3233
+ base: string;
3234
+ tall: string;
3235
+ };
3236
+ radii: {
3237
+ px: string;
3238
+ xs: string;
3239
+ sm: string;
3240
+ md: string;
3241
+ lg: string;
3242
+ full: string;
3243
+ };
3244
+ space: {
3245
+ 1: string;
3246
+ 2: string;
3247
+ 3: string;
3248
+ 4: string;
3249
+ 5: string;
3250
+ 6: string;
3251
+ 7: string;
3252
+ 8: string;
3253
+ 10: string;
3254
+ 12: string;
3255
+ 16: string;
3256
+ 20: string;
3257
+ 40: string;
3258
+ 64: string;
3259
+ 80: string;
3260
+ };
3261
+ };
3262
+ themeMap: {
3263
+ height: "space";
3264
+ width: "space";
3265
+ gap: "space";
3266
+ gridGap: "space";
3267
+ columnGap: "space";
3268
+ gridColumnGap: "space";
3269
+ rowGap: "space";
3270
+ gridRowGap: "space";
3271
+ inset: "space";
3272
+ insetBlock: "space";
3273
+ insetBlockEnd: "space";
3274
+ insetBlockStart: "space";
3275
+ insetInline: "space";
3276
+ insetInlineEnd: "space";
3277
+ insetInlineStart: "space";
3278
+ margin: "space";
3279
+ marginTop: "space";
3280
+ marginRight: "space";
3281
+ marginBottom: "space";
3282
+ marginLeft: "space";
3283
+ marginBlock: "space";
3284
+ marginBlockEnd: "space";
3285
+ marginBlockStart: "space";
3286
+ marginInline: "space";
3287
+ marginInlineEnd: "space";
3288
+ marginInlineStart: "space";
3289
+ padding: "space";
3290
+ paddingTop: "space";
3291
+ paddingRight: "space";
3292
+ paddingBottom: "space";
3293
+ paddingLeft: "space";
3294
+ paddingBlock: "space";
3295
+ paddingBlockEnd: "space";
3296
+ paddingBlockStart: "space";
3297
+ paddingInline: "space";
3298
+ paddingInlineEnd: "space";
3299
+ paddingInlineStart: "space";
3300
+ scrollMargin: "space";
3301
+ scrollMarginTop: "space";
3302
+ scrollMarginRight: "space";
3303
+ scrollMarginBottom: "space";
3304
+ scrollMarginLeft: "space";
3305
+ scrollMarginBlock: "space";
3306
+ scrollMarginBlockEnd: "space";
3307
+ scrollMarginBlockStart: "space";
3308
+ scrollMarginInline: "space";
3309
+ scrollMarginInlineEnd: "space";
3310
+ scrollMarginInlineStart: "space";
3311
+ scrollPadding: "space";
3312
+ scrollPaddingTop: "space";
3313
+ scrollPaddingRight: "space";
3314
+ scrollPaddingBottom: "space";
3315
+ scrollPaddingLeft: "space";
3316
+ scrollPaddingBlock: "space";
3317
+ scrollPaddingBlockEnd: "space";
3318
+ scrollPaddingBlockStart: "space";
3319
+ scrollPaddingInline: "space";
3320
+ scrollPaddingInlineEnd: "space";
3321
+ scrollPaddingInlineStart: "space";
3322
+ top: "space";
3323
+ right: "space";
3324
+ bottom: "space";
3325
+ left: "space";
3326
+ fontSize: "fontSizes";
3327
+ background: "colors";
3328
+ backgroundColor: "colors";
3329
+ backgroundImage: "colors";
3330
+ borderImage: "colors";
3331
+ border: "colors";
3332
+ borderBlock: "colors";
3333
+ borderBlockEnd: "colors";
3334
+ borderBlockStart: "colors";
3335
+ borderBottom: "colors";
3336
+ borderBottomColor: "colors";
3337
+ borderColor: "colors";
3338
+ borderInline: "colors";
3339
+ borderInlineEnd: "colors";
3340
+ borderInlineStart: "colors";
3341
+ borderLeft: "colors";
3342
+ borderLeftColor: "colors";
3343
+ borderRight: "colors";
3344
+ borderRightColor: "colors";
3345
+ borderTop: "colors";
3346
+ borderTopColor: "colors";
3347
+ caretColor: "colors";
3348
+ color: "colors";
3349
+ columnRuleColor: "colors";
3350
+ outline: "colors";
3351
+ outlineColor: "colors";
3352
+ fill: "colors";
3353
+ stroke: "colors";
3354
+ textDecorationColor: "colors";
3355
+ fontFamily: "fonts";
3356
+ fontWeight: "fontWeights";
3357
+ lineHeight: "lineHeights";
3358
+ letterSpacing: "letterSpacings";
3359
+ blockSize: "sizes";
3360
+ minBlockSize: "sizes";
3361
+ maxBlockSize: "sizes";
3362
+ inlineSize: "sizes";
3363
+ minInlineSize: "sizes";
3364
+ maxInlineSize: "sizes";
3365
+ minWidth: "sizes";
3366
+ maxWidth: "sizes";
3367
+ minHeight: "sizes";
3368
+ maxHeight: "sizes";
3369
+ flexBasis: "sizes";
3370
+ gridTemplateColumns: "sizes";
3371
+ gridTemplateRows: "sizes";
3372
+ borderWidth: "borderWidths";
3373
+ borderTopWidth: "borderWidths";
3374
+ borderLeftWidth: "borderWidths";
3375
+ borderRightWidth: "borderWidths";
3376
+ borderBottomWidth: "borderWidths";
3377
+ borderStyle: "borderStyles";
3378
+ borderTopStyle: "borderStyles";
3379
+ borderLeftStyle: "borderStyles";
3380
+ borderRightStyle: "borderStyles";
3381
+ borderBottomStyle: "borderStyles";
3382
+ borderRadius: "radii";
3383
+ borderTopLeftRadius: "radii";
3384
+ borderTopRightRadius: "radii";
3385
+ borderBottomRightRadius: "radii";
3386
+ borderBottomLeftRadius: "radii";
3387
+ boxShadow: "shadows";
3388
+ textShadow: "shadows";
3389
+ transition: "transitions";
3390
+ zIndex: "zIndices";
3391
+ };
3392
+ utils: {};
3393
+ };
3394
+
3395
+ export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Heading, type HeadingProps, MultiStep, type MultiStepProps, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps, config, createTheme, css, getCssText, globalCss, keyframes, styled, theme };