@spies-ui/react 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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", {
10
14
  background?: "gray600" | "gray700" | "gray800" | "gray900" | "default" | undefined;
@@ -16,6 +20,7 @@ declare const Box: _stitches_react_types_styled_component.StyledComponent<"div",
16
20
  richBlack: string;
17
21
  gray100: string;
18
22
  gray200: string;
23
+ gray300: string;
19
24
  gray400: string;
20
25
  gray500: string;
21
26
  gray600: string;
@@ -235,6 +240,7 @@ declare const Text: _stitches_react_types_styled_component.StyledComponent<"p",
235
240
  richBlack: string;
236
241
  gray100: string;
237
242
  gray200: string;
243
+ gray300: string;
238
244
  gray400: string;
239
245
  gray500: string;
240
246
  gray600: string;
@@ -453,6 +459,7 @@ declare const Heading: _stitches_react_types_styled_component.StyledComponent<"h
453
459
  richBlack: string;
454
460
  gray100: string;
455
461
  gray200: string;
462
+ gray300: string;
456
463
  gray400: string;
457
464
  gray500: string;
458
465
  gray600: string;
@@ -669,6 +676,7 @@ declare const AvatarImage: _stitches_react_types_styled_component.StyledComponen
669
676
  richBlack: string;
670
677
  gray100: string;
671
678
  gray200: string;
679
+ gray300: string;
672
680
  gray400: string;
673
681
  gray500: string;
674
682
  gray600: string;
@@ -893,6 +901,7 @@ declare const Button: _stitches_react_types_styled_component.StyledComponent<"bu
893
901
  richBlack: string;
894
902
  gray100: string;
895
903
  gray200: string;
904
+ gray300: string;
896
905
  gray400: string;
897
906
  gray500: string;
898
907
  gray600: string;
@@ -1109,6 +1118,7 @@ declare const Input: _stitches_react_types_styled_component.StyledComponent<"inp
1109
1118
  richBlack: string;
1110
1119
  gray100: string;
1111
1120
  gray200: string;
1121
+ gray300: string;
1112
1122
  gray400: string;
1113
1123
  gray500: string;
1114
1124
  gray600: string;
@@ -1314,15 +1324,13 @@ declare const Input: _stitches_react_types_styled_component.StyledComponent<"inp
1314
1324
  zIndex: "zIndices";
1315
1325
  }, {}>>;
1316
1326
 
1317
- interface TextInputProps extends ComponentProps<typeof Input> {
1327
+ interface TextInputProps extends Omit<ComponentProps<typeof Input>, 'size'> {
1318
1328
  label?: string;
1319
1329
  prefix?: string;
1320
1330
  error?: string;
1331
+ size?: 'default' | 'small';
1321
1332
  }
1322
- declare function TextInput({ label, prefix, error, ...props }: TextInputProps): react_jsx_runtime.JSX.Element;
1323
- declare namespace TextInput {
1324
- var displayName: string;
1325
- }
1333
+ declare const TextInput: react.ForwardRefExoticComponent<Omit<TextInputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1326
1334
 
1327
1335
  declare const TextAreaInput: _stitches_react_types_styled_component.StyledComponent<"textarea", {
1328
1336
  errored?: boolean | "true" | undefined;
@@ -1334,6 +1342,7 @@ declare const TextAreaInput: _stitches_react_types_styled_component.StyledCompon
1334
1342
  richBlack: string;
1335
1343
  gray100: string;
1336
1344
  gray200: string;
1345
+ gray300: string;
1337
1346
  gray400: string;
1338
1347
  gray500: string;
1339
1348
  gray600: string;
@@ -1543,10 +1552,7 @@ interface TextAreaProps extends ComponentProps<typeof TextAreaInput> {
1543
1552
  label?: string;
1544
1553
  error?: string;
1545
1554
  }
1546
- declare function TextArea({ label, error, ...props }: TextAreaProps): react_jsx_runtime.JSX.Element;
1547
- declare namespace TextArea {
1548
- var displayName: string;
1549
- }
1555
+ declare const TextArea: react.ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & react.RefAttributes<HTMLTextAreaElement>>;
1550
1556
 
1551
1557
  declare const CheckboxContainer: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Checkbox$1.CheckboxProps & react.RefAttributes<HTMLButtonElement>>, {
1552
1558
  errored?: boolean | "true" | undefined;
@@ -1558,6 +1564,7 @@ declare const CheckboxContainer: _stitches_react_types_styled_component.StyledCo
1558
1564
  richBlack: string;
1559
1565
  gray100: string;
1560
1566
  gray200: string;
1567
+ gray300: string;
1561
1568
  gray400: string;
1562
1569
  gray500: string;
1563
1570
  gray600: string;
@@ -1787,4 +1794,1806 @@ declare namespace Dropdown {
1787
1794
  var displayName: string;
1788
1795
  }
1789
1796
 
1790
- export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Dropdown, type DropdownProps, Heading, type HeadingProps, type Option, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps };
1797
+ declare const styled: <Type extends _stitches_react_types_util.Function | keyof JSX.IntrinsicElements | react.ComponentType<any>, Composers extends (string | _stitches_react_types_util.Function | react.ComponentType<any> | {
1798
+ [name: string]: unknown;
1799
+ })[], CSS = _stitches_react_types_css_util.CSS<{}, {
1800
+ colors: {
1801
+ black: string;
1802
+ white: string;
1803
+ smokedWhite: string;
1804
+ richBlack: string;
1805
+ gray100: string;
1806
+ gray200: string;
1807
+ gray300: string;
1808
+ gray400: string;
1809
+ gray500: string;
1810
+ gray600: string;
1811
+ gray700: string;
1812
+ gray800: string;
1813
+ gray900: string;
1814
+ primary: string;
1815
+ primaryLight: string;
1816
+ success: string;
1817
+ warning: string;
1818
+ danger: string;
1819
+ };
1820
+ fontSizes: {
1821
+ xxs: string;
1822
+ xs: string;
1823
+ sm: string;
1824
+ md: string;
1825
+ lg: string;
1826
+ xl: string;
1827
+ '2xl': string;
1828
+ '4xl': string;
1829
+ '5xl': string;
1830
+ '6xl': string;
1831
+ '7xl': string;
1832
+ '8xl': string;
1833
+ '9xl': string;
1834
+ };
1835
+ fontWeights: {
1836
+ thin: string;
1837
+ extralight: string;
1838
+ light: string;
1839
+ regular: string;
1840
+ medium: string;
1841
+ semibold: string;
1842
+ bold: string;
1843
+ extrabold: string;
1844
+ black: string;
1845
+ };
1846
+ fonts: {
1847
+ default: string;
1848
+ heading: string;
1849
+ code: string;
1850
+ };
1851
+ lineHeights: {
1852
+ shorter: string;
1853
+ short: string;
1854
+ base: string;
1855
+ tall: string;
1856
+ };
1857
+ radii: {
1858
+ px: string;
1859
+ xs: string;
1860
+ sm: string;
1861
+ md: string;
1862
+ lg: string;
1863
+ full: string;
1864
+ };
1865
+ space: {
1866
+ 1: string;
1867
+ 2: string;
1868
+ 3: string;
1869
+ 4: string;
1870
+ 5: string;
1871
+ 6: string;
1872
+ 7: string;
1873
+ 8: string;
1874
+ 10: string;
1875
+ 12: string;
1876
+ 16: string;
1877
+ 20: string;
1878
+ 40: string;
1879
+ 64: string;
1880
+ 80: string;
1881
+ };
1882
+ }, {
1883
+ height: "space";
1884
+ width: "space";
1885
+ gap: "space";
1886
+ gridGap: "space";
1887
+ columnGap: "space";
1888
+ gridColumnGap: "space";
1889
+ rowGap: "space";
1890
+ gridRowGap: "space";
1891
+ inset: "space";
1892
+ insetBlock: "space";
1893
+ insetBlockEnd: "space";
1894
+ insetBlockStart: "space";
1895
+ insetInline: "space";
1896
+ insetInlineEnd: "space";
1897
+ insetInlineStart: "space";
1898
+ margin: "space";
1899
+ marginTop: "space";
1900
+ marginRight: "space";
1901
+ marginBottom: "space";
1902
+ marginLeft: "space";
1903
+ marginBlock: "space";
1904
+ marginBlockEnd: "space";
1905
+ marginBlockStart: "space";
1906
+ marginInline: "space";
1907
+ marginInlineEnd: "space";
1908
+ marginInlineStart: "space";
1909
+ padding: "space";
1910
+ paddingTop: "space";
1911
+ paddingRight: "space";
1912
+ paddingBottom: "space";
1913
+ paddingLeft: "space";
1914
+ paddingBlock: "space";
1915
+ paddingBlockEnd: "space";
1916
+ paddingBlockStart: "space";
1917
+ paddingInline: "space";
1918
+ paddingInlineEnd: "space";
1919
+ paddingInlineStart: "space";
1920
+ scrollMargin: "space";
1921
+ scrollMarginTop: "space";
1922
+ scrollMarginRight: "space";
1923
+ scrollMarginBottom: "space";
1924
+ scrollMarginLeft: "space";
1925
+ scrollMarginBlock: "space";
1926
+ scrollMarginBlockEnd: "space";
1927
+ scrollMarginBlockStart: "space";
1928
+ scrollMarginInline: "space";
1929
+ scrollMarginInlineEnd: "space";
1930
+ scrollMarginInlineStart: "space";
1931
+ scrollPadding: "space";
1932
+ scrollPaddingTop: "space";
1933
+ scrollPaddingRight: "space";
1934
+ scrollPaddingBottom: "space";
1935
+ scrollPaddingLeft: "space";
1936
+ scrollPaddingBlock: "space";
1937
+ scrollPaddingBlockEnd: "space";
1938
+ scrollPaddingBlockStart: "space";
1939
+ scrollPaddingInline: "space";
1940
+ scrollPaddingInlineEnd: "space";
1941
+ scrollPaddingInlineStart: "space";
1942
+ top: "space";
1943
+ right: "space";
1944
+ bottom: "space";
1945
+ left: "space";
1946
+ fontSize: "fontSizes";
1947
+ background: "colors";
1948
+ backgroundColor: "colors";
1949
+ backgroundImage: "colors";
1950
+ borderImage: "colors";
1951
+ border: "colors";
1952
+ borderBlock: "colors";
1953
+ borderBlockEnd: "colors";
1954
+ borderBlockStart: "colors";
1955
+ borderBottom: "colors";
1956
+ borderBottomColor: "colors";
1957
+ borderColor: "colors";
1958
+ borderInline: "colors";
1959
+ borderInlineEnd: "colors";
1960
+ borderInlineStart: "colors";
1961
+ borderLeft: "colors";
1962
+ borderLeftColor: "colors";
1963
+ borderRight: "colors";
1964
+ borderRightColor: "colors";
1965
+ borderTop: "colors";
1966
+ borderTopColor: "colors";
1967
+ caretColor: "colors";
1968
+ color: "colors";
1969
+ columnRuleColor: "colors";
1970
+ outline: "colors";
1971
+ outlineColor: "colors";
1972
+ fill: "colors";
1973
+ stroke: "colors";
1974
+ textDecorationColor: "colors";
1975
+ fontFamily: "fonts";
1976
+ fontWeight: "fontWeights";
1977
+ lineHeight: "lineHeights";
1978
+ letterSpacing: "letterSpacings";
1979
+ blockSize: "sizes";
1980
+ minBlockSize: "sizes";
1981
+ maxBlockSize: "sizes";
1982
+ inlineSize: "sizes";
1983
+ minInlineSize: "sizes";
1984
+ maxInlineSize: "sizes";
1985
+ minWidth: "sizes";
1986
+ maxWidth: "sizes";
1987
+ minHeight: "sizes";
1988
+ maxHeight: "sizes";
1989
+ flexBasis: "sizes";
1990
+ gridTemplateColumns: "sizes";
1991
+ gridTemplateRows: "sizes";
1992
+ borderWidth: "borderWidths";
1993
+ borderTopWidth: "borderWidths";
1994
+ borderLeftWidth: "borderWidths";
1995
+ borderRightWidth: "borderWidths";
1996
+ borderBottomWidth: "borderWidths";
1997
+ borderStyle: "borderStyles";
1998
+ borderTopStyle: "borderStyles";
1999
+ borderLeftStyle: "borderStyles";
2000
+ borderRightStyle: "borderStyles";
2001
+ borderBottomStyle: "borderStyles";
2002
+ borderRadius: "radii";
2003
+ borderTopLeftRadius: "radii";
2004
+ borderTopRightRadius: "radii";
2005
+ borderBottomRightRadius: "radii";
2006
+ borderBottomLeftRadius: "radii";
2007
+ boxShadow: "shadows";
2008
+ textShadow: "shadows";
2009
+ transition: "transitions";
2010
+ zIndex: "zIndices";
2011
+ }, {}>>(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> & {
2012
+ variants?: {
2013
+ [x: string]: {
2014
+ [x: string]: CSS;
2015
+ [x: number]: CSS;
2016
+ };
2017
+ } | undefined;
2018
+ 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) & {
2019
+ css: CSS;
2020
+ })[] | undefined;
2021
+ 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;
2022
+ } & 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<{}, {
2023
+ colors: {
2024
+ black: string;
2025
+ white: string;
2026
+ smokedWhite: string;
2027
+ richBlack: string;
2028
+ gray100: string;
2029
+ gray200: string;
2030
+ gray300: string;
2031
+ gray400: string;
2032
+ gray500: string;
2033
+ gray600: string;
2034
+ gray700: string;
2035
+ gray800: string;
2036
+ gray900: string;
2037
+ primary: string;
2038
+ primaryLight: string;
2039
+ success: string;
2040
+ warning: string;
2041
+ danger: string;
2042
+ };
2043
+ fontSizes: {
2044
+ xxs: string;
2045
+ xs: string;
2046
+ sm: string;
2047
+ md: string;
2048
+ lg: string;
2049
+ xl: string;
2050
+ '2xl': string;
2051
+ '4xl': string;
2052
+ '5xl': string;
2053
+ '6xl': string;
2054
+ '7xl': string;
2055
+ '8xl': string;
2056
+ '9xl': string;
2057
+ };
2058
+ fontWeights: {
2059
+ thin: string;
2060
+ extralight: string;
2061
+ light: string;
2062
+ regular: string;
2063
+ medium: string;
2064
+ semibold: string;
2065
+ bold: string;
2066
+ extrabold: string;
2067
+ black: string;
2068
+ };
2069
+ fonts: {
2070
+ default: string;
2071
+ heading: string;
2072
+ code: string;
2073
+ };
2074
+ lineHeights: {
2075
+ shorter: string;
2076
+ short: string;
2077
+ base: string;
2078
+ tall: string;
2079
+ };
2080
+ radii: {
2081
+ px: string;
2082
+ xs: string;
2083
+ sm: string;
2084
+ md: string;
2085
+ lg: string;
2086
+ full: string;
2087
+ };
2088
+ space: {
2089
+ 1: string;
2090
+ 2: string;
2091
+ 3: string;
2092
+ 4: string;
2093
+ 5: string;
2094
+ 6: string;
2095
+ 7: string;
2096
+ 8: string;
2097
+ 10: string;
2098
+ 12: string;
2099
+ 16: string;
2100
+ 20: string;
2101
+ 40: string;
2102
+ 64: string;
2103
+ 80: string;
2104
+ };
2105
+ }, {
2106
+ height: "space";
2107
+ width: "space";
2108
+ gap: "space";
2109
+ gridGap: "space";
2110
+ columnGap: "space";
2111
+ gridColumnGap: "space";
2112
+ rowGap: "space";
2113
+ gridRowGap: "space";
2114
+ inset: "space";
2115
+ insetBlock: "space";
2116
+ insetBlockEnd: "space";
2117
+ insetBlockStart: "space";
2118
+ insetInline: "space";
2119
+ insetInlineEnd: "space";
2120
+ insetInlineStart: "space";
2121
+ margin: "space";
2122
+ marginTop: "space";
2123
+ marginRight: "space";
2124
+ marginBottom: "space";
2125
+ marginLeft: "space";
2126
+ marginBlock: "space";
2127
+ marginBlockEnd: "space";
2128
+ marginBlockStart: "space";
2129
+ marginInline: "space";
2130
+ marginInlineEnd: "space";
2131
+ marginInlineStart: "space";
2132
+ padding: "space";
2133
+ paddingTop: "space";
2134
+ paddingRight: "space";
2135
+ paddingBottom: "space";
2136
+ paddingLeft: "space";
2137
+ paddingBlock: "space";
2138
+ paddingBlockEnd: "space";
2139
+ paddingBlockStart: "space";
2140
+ paddingInline: "space";
2141
+ paddingInlineEnd: "space";
2142
+ paddingInlineStart: "space";
2143
+ scrollMargin: "space";
2144
+ scrollMarginTop: "space";
2145
+ scrollMarginRight: "space";
2146
+ scrollMarginBottom: "space";
2147
+ scrollMarginLeft: "space";
2148
+ scrollMarginBlock: "space";
2149
+ scrollMarginBlockEnd: "space";
2150
+ scrollMarginBlockStart: "space";
2151
+ scrollMarginInline: "space";
2152
+ scrollMarginInlineEnd: "space";
2153
+ scrollMarginInlineStart: "space";
2154
+ scrollPadding: "space";
2155
+ scrollPaddingTop: "space";
2156
+ scrollPaddingRight: "space";
2157
+ scrollPaddingBottom: "space";
2158
+ scrollPaddingLeft: "space";
2159
+ scrollPaddingBlock: "space";
2160
+ scrollPaddingBlockEnd: "space";
2161
+ scrollPaddingBlockStart: "space";
2162
+ scrollPaddingInline: "space";
2163
+ scrollPaddingInlineEnd: "space";
2164
+ scrollPaddingInlineStart: "space";
2165
+ top: "space";
2166
+ right: "space";
2167
+ bottom: "space";
2168
+ left: "space";
2169
+ fontSize: "fontSizes";
2170
+ background: "colors";
2171
+ backgroundColor: "colors";
2172
+ backgroundImage: "colors";
2173
+ borderImage: "colors";
2174
+ border: "colors";
2175
+ borderBlock: "colors";
2176
+ borderBlockEnd: "colors";
2177
+ borderBlockStart: "colors";
2178
+ borderBottom: "colors";
2179
+ borderBottomColor: "colors";
2180
+ borderColor: "colors";
2181
+ borderInline: "colors";
2182
+ borderInlineEnd: "colors";
2183
+ borderInlineStart: "colors";
2184
+ borderLeft: "colors";
2185
+ borderLeftColor: "colors";
2186
+ borderRight: "colors";
2187
+ borderRightColor: "colors";
2188
+ borderTop: "colors";
2189
+ borderTopColor: "colors";
2190
+ caretColor: "colors";
2191
+ color: "colors";
2192
+ columnRuleColor: "colors";
2193
+ outline: "colors";
2194
+ outlineColor: "colors";
2195
+ fill: "colors";
2196
+ stroke: "colors";
2197
+ textDecorationColor: "colors";
2198
+ fontFamily: "fonts";
2199
+ fontWeight: "fontWeights";
2200
+ lineHeight: "lineHeights";
2201
+ letterSpacing: "letterSpacings";
2202
+ blockSize: "sizes";
2203
+ minBlockSize: "sizes";
2204
+ maxBlockSize: "sizes";
2205
+ inlineSize: "sizes";
2206
+ minInlineSize: "sizes";
2207
+ maxInlineSize: "sizes";
2208
+ minWidth: "sizes";
2209
+ maxWidth: "sizes";
2210
+ minHeight: "sizes";
2211
+ maxHeight: "sizes";
2212
+ flexBasis: "sizes";
2213
+ gridTemplateColumns: "sizes";
2214
+ gridTemplateRows: "sizes";
2215
+ borderWidth: "borderWidths";
2216
+ borderTopWidth: "borderWidths";
2217
+ borderLeftWidth: "borderWidths";
2218
+ borderRightWidth: "borderWidths";
2219
+ borderBottomWidth: "borderWidths";
2220
+ borderStyle: "borderStyles";
2221
+ borderTopStyle: "borderStyles";
2222
+ borderLeftStyle: "borderStyles";
2223
+ borderRightStyle: "borderStyles";
2224
+ borderBottomStyle: "borderStyles";
2225
+ borderRadius: "radii";
2226
+ borderTopLeftRadius: "radii";
2227
+ borderTopRightRadius: "radii";
2228
+ borderBottomRightRadius: "radii";
2229
+ borderBottomLeftRadius: "radii";
2230
+ boxShadow: "shadows";
2231
+ textShadow: "shadows";
2232
+ transition: "transitions";
2233
+ zIndex: "zIndices";
2234
+ }, {}>>;
2235
+ declare const css: <Composers extends (string | _stitches_react_types_util.Function | react.JSXElementConstructor<any> | react.ExoticComponent<any> | {
2236
+ [name: string]: unknown;
2237
+ })[], CSS = _stitches_react_types_css_util.CSS<{}, {
2238
+ colors: {
2239
+ black: string;
2240
+ white: string;
2241
+ smokedWhite: string;
2242
+ richBlack: string;
2243
+ gray100: string;
2244
+ gray200: string;
2245
+ gray300: string;
2246
+ gray400: string;
2247
+ gray500: string;
2248
+ gray600: string;
2249
+ gray700: string;
2250
+ gray800: string;
2251
+ gray900: string;
2252
+ primary: string;
2253
+ primaryLight: string;
2254
+ success: string;
2255
+ warning: string;
2256
+ danger: string;
2257
+ };
2258
+ fontSizes: {
2259
+ xxs: string;
2260
+ xs: string;
2261
+ sm: string;
2262
+ md: string;
2263
+ lg: string;
2264
+ xl: string;
2265
+ '2xl': string;
2266
+ '4xl': string;
2267
+ '5xl': string;
2268
+ '6xl': string;
2269
+ '7xl': string;
2270
+ '8xl': string;
2271
+ '9xl': string;
2272
+ };
2273
+ fontWeights: {
2274
+ thin: string;
2275
+ extralight: string;
2276
+ light: string;
2277
+ regular: string;
2278
+ medium: string;
2279
+ semibold: string;
2280
+ bold: string;
2281
+ extrabold: string;
2282
+ black: string;
2283
+ };
2284
+ fonts: {
2285
+ default: string;
2286
+ heading: string;
2287
+ code: string;
2288
+ };
2289
+ lineHeights: {
2290
+ shorter: string;
2291
+ short: string;
2292
+ base: string;
2293
+ tall: string;
2294
+ };
2295
+ radii: {
2296
+ px: string;
2297
+ xs: string;
2298
+ sm: string;
2299
+ md: string;
2300
+ lg: string;
2301
+ full: string;
2302
+ };
2303
+ space: {
2304
+ 1: string;
2305
+ 2: string;
2306
+ 3: string;
2307
+ 4: string;
2308
+ 5: string;
2309
+ 6: string;
2310
+ 7: string;
2311
+ 8: string;
2312
+ 10: string;
2313
+ 12: string;
2314
+ 16: string;
2315
+ 20: string;
2316
+ 40: string;
2317
+ 64: string;
2318
+ 80: string;
2319
+ };
2320
+ }, {
2321
+ height: "space";
2322
+ width: "space";
2323
+ gap: "space";
2324
+ gridGap: "space";
2325
+ columnGap: "space";
2326
+ gridColumnGap: "space";
2327
+ rowGap: "space";
2328
+ gridRowGap: "space";
2329
+ inset: "space";
2330
+ insetBlock: "space";
2331
+ insetBlockEnd: "space";
2332
+ insetBlockStart: "space";
2333
+ insetInline: "space";
2334
+ insetInlineEnd: "space";
2335
+ insetInlineStart: "space";
2336
+ margin: "space";
2337
+ marginTop: "space";
2338
+ marginRight: "space";
2339
+ marginBottom: "space";
2340
+ marginLeft: "space";
2341
+ marginBlock: "space";
2342
+ marginBlockEnd: "space";
2343
+ marginBlockStart: "space";
2344
+ marginInline: "space";
2345
+ marginInlineEnd: "space";
2346
+ marginInlineStart: "space";
2347
+ padding: "space";
2348
+ paddingTop: "space";
2349
+ paddingRight: "space";
2350
+ paddingBottom: "space";
2351
+ paddingLeft: "space";
2352
+ paddingBlock: "space";
2353
+ paddingBlockEnd: "space";
2354
+ paddingBlockStart: "space";
2355
+ paddingInline: "space";
2356
+ paddingInlineEnd: "space";
2357
+ paddingInlineStart: "space";
2358
+ scrollMargin: "space";
2359
+ scrollMarginTop: "space";
2360
+ scrollMarginRight: "space";
2361
+ scrollMarginBottom: "space";
2362
+ scrollMarginLeft: "space";
2363
+ scrollMarginBlock: "space";
2364
+ scrollMarginBlockEnd: "space";
2365
+ scrollMarginBlockStart: "space";
2366
+ scrollMarginInline: "space";
2367
+ scrollMarginInlineEnd: "space";
2368
+ scrollMarginInlineStart: "space";
2369
+ scrollPadding: "space";
2370
+ scrollPaddingTop: "space";
2371
+ scrollPaddingRight: "space";
2372
+ scrollPaddingBottom: "space";
2373
+ scrollPaddingLeft: "space";
2374
+ scrollPaddingBlock: "space";
2375
+ scrollPaddingBlockEnd: "space";
2376
+ scrollPaddingBlockStart: "space";
2377
+ scrollPaddingInline: "space";
2378
+ scrollPaddingInlineEnd: "space";
2379
+ scrollPaddingInlineStart: "space";
2380
+ top: "space";
2381
+ right: "space";
2382
+ bottom: "space";
2383
+ left: "space";
2384
+ fontSize: "fontSizes";
2385
+ background: "colors";
2386
+ backgroundColor: "colors";
2387
+ backgroundImage: "colors";
2388
+ borderImage: "colors";
2389
+ border: "colors";
2390
+ borderBlock: "colors";
2391
+ borderBlockEnd: "colors";
2392
+ borderBlockStart: "colors";
2393
+ borderBottom: "colors";
2394
+ borderBottomColor: "colors";
2395
+ borderColor: "colors";
2396
+ borderInline: "colors";
2397
+ borderInlineEnd: "colors";
2398
+ borderInlineStart: "colors";
2399
+ borderLeft: "colors";
2400
+ borderLeftColor: "colors";
2401
+ borderRight: "colors";
2402
+ borderRightColor: "colors";
2403
+ borderTop: "colors";
2404
+ borderTopColor: "colors";
2405
+ caretColor: "colors";
2406
+ color: "colors";
2407
+ columnRuleColor: "colors";
2408
+ outline: "colors";
2409
+ outlineColor: "colors";
2410
+ fill: "colors";
2411
+ stroke: "colors";
2412
+ textDecorationColor: "colors";
2413
+ fontFamily: "fonts";
2414
+ fontWeight: "fontWeights";
2415
+ lineHeight: "lineHeights";
2416
+ letterSpacing: "letterSpacings";
2417
+ blockSize: "sizes";
2418
+ minBlockSize: "sizes";
2419
+ maxBlockSize: "sizes";
2420
+ inlineSize: "sizes";
2421
+ minInlineSize: "sizes";
2422
+ maxInlineSize: "sizes";
2423
+ minWidth: "sizes";
2424
+ maxWidth: "sizes";
2425
+ minHeight: "sizes";
2426
+ maxHeight: "sizes";
2427
+ flexBasis: "sizes";
2428
+ gridTemplateColumns: "sizes";
2429
+ gridTemplateRows: "sizes";
2430
+ borderWidth: "borderWidths";
2431
+ borderTopWidth: "borderWidths";
2432
+ borderLeftWidth: "borderWidths";
2433
+ borderRightWidth: "borderWidths";
2434
+ borderBottomWidth: "borderWidths";
2435
+ borderStyle: "borderStyles";
2436
+ borderTopStyle: "borderStyles";
2437
+ borderLeftStyle: "borderStyles";
2438
+ borderRightStyle: "borderStyles";
2439
+ borderBottomStyle: "borderStyles";
2440
+ borderRadius: "radii";
2441
+ borderTopLeftRadius: "radii";
2442
+ borderTopRightRadius: "radii";
2443
+ borderBottomRightRadius: "radii";
2444
+ borderBottomLeftRadius: "radii";
2445
+ boxShadow: "shadows";
2446
+ textShadow: "shadows";
2447
+ transition: "transitions";
2448
+ zIndex: "zIndices";
2449
+ }, {}>>(...composers: { [K in keyof Composers]: string extends Composers[K] ? Composers[K] : Composers[K] extends string | _stitches_react_types_util.Function | react.JSXElementConstructor<any> | react.ExoticComponent<any> ? Composers[K] : _stitches_react_types_stitches.RemoveIndex<CSS> & {
2450
+ variants?: {
2451
+ [x: string]: {
2452
+ [x: string]: CSS;
2453
+ [x: number]: CSS;
2454
+ };
2455
+ } | undefined;
2456
+ 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) & {
2457
+ css: CSS;
2458
+ })[] | undefined;
2459
+ 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;
2460
+ } & 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>;
2461
+ declare const globalCss: <Styles extends {
2462
+ [K: string]: any;
2463
+ }>(...styles: ({
2464
+ '@import'?: unknown;
2465
+ '@font-face'?: unknown;
2466
+ } & { [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}` ? {
2467
+ [x: string]: _stitches_react_types_css_util.CSS<{}, {
2468
+ colors: {
2469
+ black: string;
2470
+ white: string;
2471
+ smokedWhite: string;
2472
+ richBlack: string;
2473
+ gray100: string;
2474
+ gray200: string;
2475
+ gray300: string;
2476
+ gray400: string;
2477
+ gray500: string;
2478
+ gray600: string;
2479
+ gray700: string;
2480
+ gray800: string;
2481
+ gray900: string;
2482
+ primary: string;
2483
+ primaryLight: string;
2484
+ success: string;
2485
+ warning: string;
2486
+ danger: string;
2487
+ };
2488
+ fontSizes: {
2489
+ xxs: string;
2490
+ xs: string;
2491
+ sm: string;
2492
+ md: string;
2493
+ lg: string;
2494
+ xl: string;
2495
+ '2xl': string;
2496
+ '4xl': string;
2497
+ '5xl': string;
2498
+ '6xl': string;
2499
+ '7xl': string;
2500
+ '8xl': string;
2501
+ '9xl': string;
2502
+ };
2503
+ fontWeights: {
2504
+ thin: string;
2505
+ extralight: string;
2506
+ light: string;
2507
+ regular: string;
2508
+ medium: string;
2509
+ semibold: string;
2510
+ bold: string;
2511
+ extrabold: string;
2512
+ black: string;
2513
+ };
2514
+ fonts: {
2515
+ default: string;
2516
+ heading: string;
2517
+ code: string;
2518
+ };
2519
+ lineHeights: {
2520
+ shorter: string;
2521
+ short: string;
2522
+ base: string;
2523
+ tall: string;
2524
+ };
2525
+ radii: {
2526
+ px: string;
2527
+ xs: string;
2528
+ sm: string;
2529
+ md: string;
2530
+ lg: string;
2531
+ full: string;
2532
+ };
2533
+ space: {
2534
+ 1: string;
2535
+ 2: string;
2536
+ 3: string;
2537
+ 4: string;
2538
+ 5: string;
2539
+ 6: string;
2540
+ 7: string;
2541
+ 8: string;
2542
+ 10: string;
2543
+ 12: string;
2544
+ 16: string;
2545
+ 20: string;
2546
+ 40: string;
2547
+ 64: string;
2548
+ 80: string;
2549
+ };
2550
+ }, {
2551
+ height: "space";
2552
+ width: "space";
2553
+ gap: "space";
2554
+ gridGap: "space";
2555
+ columnGap: "space";
2556
+ gridColumnGap: "space";
2557
+ rowGap: "space";
2558
+ gridRowGap: "space";
2559
+ inset: "space";
2560
+ insetBlock: "space";
2561
+ insetBlockEnd: "space";
2562
+ insetBlockStart: "space";
2563
+ insetInline: "space";
2564
+ insetInlineEnd: "space";
2565
+ insetInlineStart: "space";
2566
+ margin: "space";
2567
+ marginTop: "space";
2568
+ marginRight: "space";
2569
+ marginBottom: "space";
2570
+ marginLeft: "space";
2571
+ marginBlock: "space";
2572
+ marginBlockEnd: "space";
2573
+ marginBlockStart: "space";
2574
+ marginInline: "space";
2575
+ marginInlineEnd: "space";
2576
+ marginInlineStart: "space";
2577
+ padding: "space";
2578
+ paddingTop: "space";
2579
+ paddingRight: "space";
2580
+ paddingBottom: "space";
2581
+ paddingLeft: "space";
2582
+ paddingBlock: "space";
2583
+ paddingBlockEnd: "space";
2584
+ paddingBlockStart: "space";
2585
+ paddingInline: "space";
2586
+ paddingInlineEnd: "space";
2587
+ paddingInlineStart: "space";
2588
+ scrollMargin: "space";
2589
+ scrollMarginTop: "space";
2590
+ scrollMarginRight: "space";
2591
+ scrollMarginBottom: "space";
2592
+ scrollMarginLeft: "space";
2593
+ scrollMarginBlock: "space";
2594
+ scrollMarginBlockEnd: "space";
2595
+ scrollMarginBlockStart: "space";
2596
+ scrollMarginInline: "space";
2597
+ scrollMarginInlineEnd: "space";
2598
+ scrollMarginInlineStart: "space";
2599
+ scrollPadding: "space";
2600
+ scrollPaddingTop: "space";
2601
+ scrollPaddingRight: "space";
2602
+ scrollPaddingBottom: "space";
2603
+ scrollPaddingLeft: "space";
2604
+ scrollPaddingBlock: "space";
2605
+ scrollPaddingBlockEnd: "space";
2606
+ scrollPaddingBlockStart: "space";
2607
+ scrollPaddingInline: "space";
2608
+ scrollPaddingInlineEnd: "space";
2609
+ scrollPaddingInlineStart: "space";
2610
+ top: "space";
2611
+ right: "space";
2612
+ bottom: "space";
2613
+ left: "space";
2614
+ fontSize: "fontSizes";
2615
+ background: "colors";
2616
+ backgroundColor: "colors";
2617
+ backgroundImage: "colors";
2618
+ borderImage: "colors";
2619
+ border: "colors";
2620
+ borderBlock: "colors";
2621
+ borderBlockEnd: "colors";
2622
+ borderBlockStart: "colors";
2623
+ borderBottom: "colors";
2624
+ borderBottomColor: "colors";
2625
+ borderColor: "colors";
2626
+ borderInline: "colors";
2627
+ borderInlineEnd: "colors";
2628
+ borderInlineStart: "colors";
2629
+ borderLeft: "colors";
2630
+ borderLeftColor: "colors";
2631
+ borderRight: "colors";
2632
+ borderRightColor: "colors";
2633
+ borderTop: "colors";
2634
+ borderTopColor: "colors";
2635
+ caretColor: "colors";
2636
+ color: "colors";
2637
+ columnRuleColor: "colors";
2638
+ outline: "colors";
2639
+ outlineColor: "colors";
2640
+ fill: "colors";
2641
+ stroke: "colors";
2642
+ textDecorationColor: "colors";
2643
+ fontFamily: "fonts";
2644
+ fontWeight: "fontWeights";
2645
+ lineHeight: "lineHeights";
2646
+ letterSpacing: "letterSpacings";
2647
+ blockSize: "sizes";
2648
+ minBlockSize: "sizes";
2649
+ maxBlockSize: "sizes";
2650
+ inlineSize: "sizes";
2651
+ minInlineSize: "sizes";
2652
+ maxInlineSize: "sizes";
2653
+ minWidth: "sizes";
2654
+ maxWidth: "sizes";
2655
+ minHeight: "sizes";
2656
+ maxHeight: "sizes";
2657
+ flexBasis: "sizes";
2658
+ gridTemplateColumns: "sizes";
2659
+ gridTemplateRows: "sizes";
2660
+ borderWidth: "borderWidths";
2661
+ borderTopWidth: "borderWidths";
2662
+ borderLeftWidth: "borderWidths";
2663
+ borderRightWidth: "borderWidths";
2664
+ borderBottomWidth: "borderWidths";
2665
+ borderStyle: "borderStyles";
2666
+ borderTopStyle: "borderStyles";
2667
+ borderLeftStyle: "borderStyles";
2668
+ borderRightStyle: "borderStyles";
2669
+ borderBottomStyle: "borderStyles";
2670
+ borderRadius: "radii";
2671
+ borderTopLeftRadius: "radii";
2672
+ borderTopRightRadius: "radii";
2673
+ borderBottomRightRadius: "radii";
2674
+ borderBottomLeftRadius: "radii";
2675
+ boxShadow: "shadows";
2676
+ textShadow: "shadows";
2677
+ transition: "transitions";
2678
+ zIndex: "zIndices";
2679
+ }, {}>;
2680
+ } : K extends `@property ${string}` ? _stitches_react_types_css.AtRule.Property : _stitches_react_types_css_util.CSS<{}, {
2681
+ colors: {
2682
+ black: string;
2683
+ white: string;
2684
+ smokedWhite: string;
2685
+ richBlack: string;
2686
+ gray100: string;
2687
+ gray200: string;
2688
+ gray300: string;
2689
+ gray400: string;
2690
+ gray500: string;
2691
+ gray600: string;
2692
+ gray700: string;
2693
+ gray800: string;
2694
+ gray900: string;
2695
+ primary: string;
2696
+ primaryLight: string;
2697
+ success: string;
2698
+ warning: string;
2699
+ danger: string;
2700
+ };
2701
+ fontSizes: {
2702
+ xxs: string;
2703
+ xs: string;
2704
+ sm: string;
2705
+ md: string;
2706
+ lg: string;
2707
+ xl: string;
2708
+ '2xl': string;
2709
+ '4xl': string;
2710
+ '5xl': string;
2711
+ '6xl': string;
2712
+ '7xl': string;
2713
+ '8xl': string;
2714
+ '9xl': string;
2715
+ };
2716
+ fontWeights: {
2717
+ thin: string;
2718
+ extralight: string;
2719
+ light: string;
2720
+ regular: string;
2721
+ medium: string;
2722
+ semibold: string;
2723
+ bold: string;
2724
+ extrabold: string;
2725
+ black: string;
2726
+ };
2727
+ fonts: {
2728
+ default: string;
2729
+ heading: string;
2730
+ code: string;
2731
+ };
2732
+ lineHeights: {
2733
+ shorter: string;
2734
+ short: string;
2735
+ base: string;
2736
+ tall: string;
2737
+ };
2738
+ radii: {
2739
+ px: string;
2740
+ xs: string;
2741
+ sm: string;
2742
+ md: string;
2743
+ lg: string;
2744
+ full: string;
2745
+ };
2746
+ space: {
2747
+ 1: string;
2748
+ 2: string;
2749
+ 3: string;
2750
+ 4: string;
2751
+ 5: string;
2752
+ 6: string;
2753
+ 7: string;
2754
+ 8: string;
2755
+ 10: string;
2756
+ 12: string;
2757
+ 16: string;
2758
+ 20: string;
2759
+ 40: string;
2760
+ 64: string;
2761
+ 80: string;
2762
+ };
2763
+ }, {
2764
+ height: "space";
2765
+ width: "space";
2766
+ gap: "space";
2767
+ gridGap: "space";
2768
+ columnGap: "space";
2769
+ gridColumnGap: "space";
2770
+ rowGap: "space";
2771
+ gridRowGap: "space";
2772
+ inset: "space";
2773
+ insetBlock: "space";
2774
+ insetBlockEnd: "space";
2775
+ insetBlockStart: "space";
2776
+ insetInline: "space";
2777
+ insetInlineEnd: "space";
2778
+ insetInlineStart: "space";
2779
+ margin: "space";
2780
+ marginTop: "space";
2781
+ marginRight: "space";
2782
+ marginBottom: "space";
2783
+ marginLeft: "space";
2784
+ marginBlock: "space";
2785
+ marginBlockEnd: "space";
2786
+ marginBlockStart: "space";
2787
+ marginInline: "space";
2788
+ marginInlineEnd: "space";
2789
+ marginInlineStart: "space";
2790
+ padding: "space";
2791
+ paddingTop: "space";
2792
+ paddingRight: "space";
2793
+ paddingBottom: "space";
2794
+ paddingLeft: "space";
2795
+ paddingBlock: "space";
2796
+ paddingBlockEnd: "space";
2797
+ paddingBlockStart: "space";
2798
+ paddingInline: "space";
2799
+ paddingInlineEnd: "space";
2800
+ paddingInlineStart: "space";
2801
+ scrollMargin: "space";
2802
+ scrollMarginTop: "space";
2803
+ scrollMarginRight: "space";
2804
+ scrollMarginBottom: "space";
2805
+ scrollMarginLeft: "space";
2806
+ scrollMarginBlock: "space";
2807
+ scrollMarginBlockEnd: "space";
2808
+ scrollMarginBlockStart: "space";
2809
+ scrollMarginInline: "space";
2810
+ scrollMarginInlineEnd: "space";
2811
+ scrollMarginInlineStart: "space";
2812
+ scrollPadding: "space";
2813
+ scrollPaddingTop: "space";
2814
+ scrollPaddingRight: "space";
2815
+ scrollPaddingBottom: "space";
2816
+ scrollPaddingLeft: "space";
2817
+ scrollPaddingBlock: "space";
2818
+ scrollPaddingBlockEnd: "space";
2819
+ scrollPaddingBlockStart: "space";
2820
+ scrollPaddingInline: "space";
2821
+ scrollPaddingInlineEnd: "space";
2822
+ scrollPaddingInlineStart: "space";
2823
+ top: "space";
2824
+ right: "space";
2825
+ bottom: "space";
2826
+ left: "space";
2827
+ fontSize: "fontSizes";
2828
+ background: "colors";
2829
+ backgroundColor: "colors";
2830
+ backgroundImage: "colors";
2831
+ borderImage: "colors";
2832
+ border: "colors";
2833
+ borderBlock: "colors";
2834
+ borderBlockEnd: "colors";
2835
+ borderBlockStart: "colors";
2836
+ borderBottom: "colors";
2837
+ borderBottomColor: "colors";
2838
+ borderColor: "colors";
2839
+ borderInline: "colors";
2840
+ borderInlineEnd: "colors";
2841
+ borderInlineStart: "colors";
2842
+ borderLeft: "colors";
2843
+ borderLeftColor: "colors";
2844
+ borderRight: "colors";
2845
+ borderRightColor: "colors";
2846
+ borderTop: "colors";
2847
+ borderTopColor: "colors";
2848
+ caretColor: "colors";
2849
+ color: "colors";
2850
+ columnRuleColor: "colors";
2851
+ outline: "colors";
2852
+ outlineColor: "colors";
2853
+ fill: "colors";
2854
+ stroke: "colors";
2855
+ textDecorationColor: "colors";
2856
+ fontFamily: "fonts";
2857
+ fontWeight: "fontWeights";
2858
+ lineHeight: "lineHeights";
2859
+ letterSpacing: "letterSpacings";
2860
+ blockSize: "sizes";
2861
+ minBlockSize: "sizes";
2862
+ maxBlockSize: "sizes";
2863
+ inlineSize: "sizes";
2864
+ minInlineSize: "sizes";
2865
+ maxInlineSize: "sizes";
2866
+ minWidth: "sizes";
2867
+ maxWidth: "sizes";
2868
+ minHeight: "sizes";
2869
+ maxHeight: "sizes";
2870
+ flexBasis: "sizes";
2871
+ gridTemplateColumns: "sizes";
2872
+ gridTemplateRows: "sizes";
2873
+ borderWidth: "borderWidths";
2874
+ borderTopWidth: "borderWidths";
2875
+ borderLeftWidth: "borderWidths";
2876
+ borderRightWidth: "borderWidths";
2877
+ borderBottomWidth: "borderWidths";
2878
+ borderStyle: "borderStyles";
2879
+ borderTopStyle: "borderStyles";
2880
+ borderLeftStyle: "borderStyles";
2881
+ borderRightStyle: "borderStyles";
2882
+ borderBottomStyle: "borderStyles";
2883
+ borderRadius: "radii";
2884
+ borderTopLeftRadius: "radii";
2885
+ borderTopRightRadius: "radii";
2886
+ borderBottomRightRadius: "radii";
2887
+ borderBottomLeftRadius: "radii";
2888
+ boxShadow: "shadows";
2889
+ textShadow: "shadows";
2890
+ transition: "transitions";
2891
+ zIndex: "zIndices";
2892
+ }, {}>; })[]) => () => string;
2893
+ declare const keyframes: (style: {
2894
+ [offset: string]: _stitches_react_types_css_util.CSS<{}, {
2895
+ colors: {
2896
+ black: string;
2897
+ white: string;
2898
+ smokedWhite: string;
2899
+ richBlack: string;
2900
+ gray100: string;
2901
+ gray200: string;
2902
+ gray300: string;
2903
+ gray400: string;
2904
+ gray500: string;
2905
+ gray600: string;
2906
+ gray700: string;
2907
+ gray800: string;
2908
+ gray900: string;
2909
+ primary: string;
2910
+ primaryLight: string;
2911
+ success: string;
2912
+ warning: string;
2913
+ danger: string;
2914
+ };
2915
+ fontSizes: {
2916
+ xxs: string;
2917
+ xs: string;
2918
+ sm: string;
2919
+ md: string;
2920
+ lg: string;
2921
+ xl: string;
2922
+ '2xl': string;
2923
+ '4xl': string;
2924
+ '5xl': string;
2925
+ '6xl': string;
2926
+ '7xl': string;
2927
+ '8xl': string;
2928
+ '9xl': string;
2929
+ };
2930
+ fontWeights: {
2931
+ thin: string;
2932
+ extralight: string;
2933
+ light: string;
2934
+ regular: string;
2935
+ medium: string;
2936
+ semibold: string;
2937
+ bold: string;
2938
+ extrabold: string;
2939
+ black: string;
2940
+ };
2941
+ fonts: {
2942
+ default: string;
2943
+ heading: string;
2944
+ code: string;
2945
+ };
2946
+ lineHeights: {
2947
+ shorter: string;
2948
+ short: string;
2949
+ base: string;
2950
+ tall: string;
2951
+ };
2952
+ radii: {
2953
+ px: string;
2954
+ xs: string;
2955
+ sm: string;
2956
+ md: string;
2957
+ lg: string;
2958
+ full: string;
2959
+ };
2960
+ space: {
2961
+ 1: string;
2962
+ 2: string;
2963
+ 3: string;
2964
+ 4: string;
2965
+ 5: string;
2966
+ 6: string;
2967
+ 7: string;
2968
+ 8: string;
2969
+ 10: string;
2970
+ 12: string;
2971
+ 16: string;
2972
+ 20: string;
2973
+ 40: string;
2974
+ 64: string;
2975
+ 80: string;
2976
+ };
2977
+ }, {
2978
+ height: "space";
2979
+ width: "space";
2980
+ gap: "space";
2981
+ gridGap: "space";
2982
+ columnGap: "space";
2983
+ gridColumnGap: "space";
2984
+ rowGap: "space";
2985
+ gridRowGap: "space";
2986
+ inset: "space";
2987
+ insetBlock: "space";
2988
+ insetBlockEnd: "space";
2989
+ insetBlockStart: "space";
2990
+ insetInline: "space";
2991
+ insetInlineEnd: "space";
2992
+ insetInlineStart: "space";
2993
+ margin: "space";
2994
+ marginTop: "space";
2995
+ marginRight: "space";
2996
+ marginBottom: "space";
2997
+ marginLeft: "space";
2998
+ marginBlock: "space";
2999
+ marginBlockEnd: "space";
3000
+ marginBlockStart: "space";
3001
+ marginInline: "space";
3002
+ marginInlineEnd: "space";
3003
+ marginInlineStart: "space";
3004
+ padding: "space";
3005
+ paddingTop: "space";
3006
+ paddingRight: "space";
3007
+ paddingBottom: "space";
3008
+ paddingLeft: "space";
3009
+ paddingBlock: "space";
3010
+ paddingBlockEnd: "space";
3011
+ paddingBlockStart: "space";
3012
+ paddingInline: "space";
3013
+ paddingInlineEnd: "space";
3014
+ paddingInlineStart: "space";
3015
+ scrollMargin: "space";
3016
+ scrollMarginTop: "space";
3017
+ scrollMarginRight: "space";
3018
+ scrollMarginBottom: "space";
3019
+ scrollMarginLeft: "space";
3020
+ scrollMarginBlock: "space";
3021
+ scrollMarginBlockEnd: "space";
3022
+ scrollMarginBlockStart: "space";
3023
+ scrollMarginInline: "space";
3024
+ scrollMarginInlineEnd: "space";
3025
+ scrollMarginInlineStart: "space";
3026
+ scrollPadding: "space";
3027
+ scrollPaddingTop: "space";
3028
+ scrollPaddingRight: "space";
3029
+ scrollPaddingBottom: "space";
3030
+ scrollPaddingLeft: "space";
3031
+ scrollPaddingBlock: "space";
3032
+ scrollPaddingBlockEnd: "space";
3033
+ scrollPaddingBlockStart: "space";
3034
+ scrollPaddingInline: "space";
3035
+ scrollPaddingInlineEnd: "space";
3036
+ scrollPaddingInlineStart: "space";
3037
+ top: "space";
3038
+ right: "space";
3039
+ bottom: "space";
3040
+ left: "space";
3041
+ fontSize: "fontSizes";
3042
+ background: "colors";
3043
+ backgroundColor: "colors";
3044
+ backgroundImage: "colors";
3045
+ borderImage: "colors";
3046
+ border: "colors";
3047
+ borderBlock: "colors";
3048
+ borderBlockEnd: "colors";
3049
+ borderBlockStart: "colors";
3050
+ borderBottom: "colors";
3051
+ borderBottomColor: "colors";
3052
+ borderColor: "colors";
3053
+ borderInline: "colors";
3054
+ borderInlineEnd: "colors";
3055
+ borderInlineStart: "colors";
3056
+ borderLeft: "colors";
3057
+ borderLeftColor: "colors";
3058
+ borderRight: "colors";
3059
+ borderRightColor: "colors";
3060
+ borderTop: "colors";
3061
+ borderTopColor: "colors";
3062
+ caretColor: "colors";
3063
+ color: "colors";
3064
+ columnRuleColor: "colors";
3065
+ outline: "colors";
3066
+ outlineColor: "colors";
3067
+ fill: "colors";
3068
+ stroke: "colors";
3069
+ textDecorationColor: "colors";
3070
+ fontFamily: "fonts";
3071
+ fontWeight: "fontWeights";
3072
+ lineHeight: "lineHeights";
3073
+ letterSpacing: "letterSpacings";
3074
+ blockSize: "sizes";
3075
+ minBlockSize: "sizes";
3076
+ maxBlockSize: "sizes";
3077
+ inlineSize: "sizes";
3078
+ minInlineSize: "sizes";
3079
+ maxInlineSize: "sizes";
3080
+ minWidth: "sizes";
3081
+ maxWidth: "sizes";
3082
+ minHeight: "sizes";
3083
+ maxHeight: "sizes";
3084
+ flexBasis: "sizes";
3085
+ gridTemplateColumns: "sizes";
3086
+ gridTemplateRows: "sizes";
3087
+ borderWidth: "borderWidths";
3088
+ borderTopWidth: "borderWidths";
3089
+ borderLeftWidth: "borderWidths";
3090
+ borderRightWidth: "borderWidths";
3091
+ borderBottomWidth: "borderWidths";
3092
+ borderStyle: "borderStyles";
3093
+ borderTopStyle: "borderStyles";
3094
+ borderLeftStyle: "borderStyles";
3095
+ borderRightStyle: "borderStyles";
3096
+ borderBottomStyle: "borderStyles";
3097
+ borderRadius: "radii";
3098
+ borderTopLeftRadius: "radii";
3099
+ borderTopRightRadius: "radii";
3100
+ borderBottomRightRadius: "radii";
3101
+ borderBottomLeftRadius: "radii";
3102
+ boxShadow: "shadows";
3103
+ textShadow: "shadows";
3104
+ transition: "transitions";
3105
+ zIndex: "zIndices";
3106
+ }, {}>;
3107
+ }) => {
3108
+ (): string;
3109
+ name: string;
3110
+ };
3111
+ declare const getCssText: () => string;
3112
+ declare const theme: string & {
3113
+ className: string;
3114
+ selector: string;
3115
+ } & {
3116
+ colors: {
3117
+ black: _stitches_react_types_theme.Token<"black", string, "colors", "">;
3118
+ white: _stitches_react_types_theme.Token<"white", string, "colors", "">;
3119
+ smokedWhite: _stitches_react_types_theme.Token<"smokedWhite", string, "colors", "">;
3120
+ richBlack: _stitches_react_types_theme.Token<"richBlack", string, "colors", "">;
3121
+ gray100: _stitches_react_types_theme.Token<"gray100", string, "colors", "">;
3122
+ gray200: _stitches_react_types_theme.Token<"gray200", string, "colors", "">;
3123
+ gray300: _stitches_react_types_theme.Token<"gray300", string, "colors", "">;
3124
+ gray400: _stitches_react_types_theme.Token<"gray400", string, "colors", "">;
3125
+ gray500: _stitches_react_types_theme.Token<"gray500", string, "colors", "">;
3126
+ gray600: _stitches_react_types_theme.Token<"gray600", string, "colors", "">;
3127
+ gray700: _stitches_react_types_theme.Token<"gray700", string, "colors", "">;
3128
+ gray800: _stitches_react_types_theme.Token<"gray800", string, "colors", "">;
3129
+ gray900: _stitches_react_types_theme.Token<"gray900", string, "colors", "">;
3130
+ primary: _stitches_react_types_theme.Token<"primary", string, "colors", "">;
3131
+ primaryLight: _stitches_react_types_theme.Token<"primaryLight", string, "colors", "">;
3132
+ success: _stitches_react_types_theme.Token<"success", string, "colors", "">;
3133
+ warning: _stitches_react_types_theme.Token<"warning", string, "colors", "">;
3134
+ danger: _stitches_react_types_theme.Token<"danger", string, "colors", "">;
3135
+ };
3136
+ fontSizes: {
3137
+ xxs: _stitches_react_types_theme.Token<"xxs", string, "fontSizes", "">;
3138
+ xs: _stitches_react_types_theme.Token<"xs", string, "fontSizes", "">;
3139
+ sm: _stitches_react_types_theme.Token<"sm", string, "fontSizes", "">;
3140
+ md: _stitches_react_types_theme.Token<"md", string, "fontSizes", "">;
3141
+ lg: _stitches_react_types_theme.Token<"lg", string, "fontSizes", "">;
3142
+ xl: _stitches_react_types_theme.Token<"xl", string, "fontSizes", "">;
3143
+ '2xl': _stitches_react_types_theme.Token<"2xl", string, "fontSizes", "">;
3144
+ '4xl': _stitches_react_types_theme.Token<"4xl", string, "fontSizes", "">;
3145
+ '5xl': _stitches_react_types_theme.Token<"5xl", string, "fontSizes", "">;
3146
+ '6xl': _stitches_react_types_theme.Token<"6xl", string, "fontSizes", "">;
3147
+ '7xl': _stitches_react_types_theme.Token<"7xl", string, "fontSizes", "">;
3148
+ '8xl': _stitches_react_types_theme.Token<"8xl", string, "fontSizes", "">;
3149
+ '9xl': _stitches_react_types_theme.Token<"9xl", string, "fontSizes", "">;
3150
+ };
3151
+ fontWeights: {
3152
+ thin: _stitches_react_types_theme.Token<"thin", string, "fontWeights", "">;
3153
+ extralight: _stitches_react_types_theme.Token<"extralight", string, "fontWeights", "">;
3154
+ light: _stitches_react_types_theme.Token<"light", string, "fontWeights", "">;
3155
+ regular: _stitches_react_types_theme.Token<"regular", string, "fontWeights", "">;
3156
+ medium: _stitches_react_types_theme.Token<"medium", string, "fontWeights", "">;
3157
+ semibold: _stitches_react_types_theme.Token<"semibold", string, "fontWeights", "">;
3158
+ bold: _stitches_react_types_theme.Token<"bold", string, "fontWeights", "">;
3159
+ extrabold: _stitches_react_types_theme.Token<"extrabold", string, "fontWeights", "">;
3160
+ black: _stitches_react_types_theme.Token<"black", string, "fontWeights", "">;
3161
+ };
3162
+ fonts: {
3163
+ default: _stitches_react_types_theme.Token<"default", string, "fonts", "">;
3164
+ heading: _stitches_react_types_theme.Token<"heading", string, "fonts", "">;
3165
+ code: _stitches_react_types_theme.Token<"code", string, "fonts", "">;
3166
+ };
3167
+ lineHeights: {
3168
+ shorter: _stitches_react_types_theme.Token<"shorter", string, "lineHeights", "">;
3169
+ short: _stitches_react_types_theme.Token<"short", string, "lineHeights", "">;
3170
+ base: _stitches_react_types_theme.Token<"base", string, "lineHeights", "">;
3171
+ tall: _stitches_react_types_theme.Token<"tall", string, "lineHeights", "">;
3172
+ };
3173
+ radii: {
3174
+ px: _stitches_react_types_theme.Token<"px", string, "radii", "">;
3175
+ xs: _stitches_react_types_theme.Token<"xs", string, "radii", "">;
3176
+ sm: _stitches_react_types_theme.Token<"sm", string, "radii", "">;
3177
+ md: _stitches_react_types_theme.Token<"md", string, "radii", "">;
3178
+ lg: _stitches_react_types_theme.Token<"lg", string, "radii", "">;
3179
+ full: _stitches_react_types_theme.Token<"full", string, "radii", "">;
3180
+ };
3181
+ space: {
3182
+ 1: _stitches_react_types_theme.Token<"1", string, "space", "">;
3183
+ 2: _stitches_react_types_theme.Token<"2", string, "space", "">;
3184
+ 3: _stitches_react_types_theme.Token<"3", string, "space", "">;
3185
+ 4: _stitches_react_types_theme.Token<"4", string, "space", "">;
3186
+ 5: _stitches_react_types_theme.Token<"5", string, "space", "">;
3187
+ 6: _stitches_react_types_theme.Token<"6", string, "space", "">;
3188
+ 7: _stitches_react_types_theme.Token<"7", string, "space", "">;
3189
+ 8: _stitches_react_types_theme.Token<"8", string, "space", "">;
3190
+ 10: _stitches_react_types_theme.Token<"10", string, "space", "">;
3191
+ 12: _stitches_react_types_theme.Token<"12", string, "space", "">;
3192
+ 16: _stitches_react_types_theme.Token<"16", string, "space", "">;
3193
+ 20: _stitches_react_types_theme.Token<"20", string, "space", "">;
3194
+ 40: _stitches_react_types_theme.Token<"40", string, "space", "">;
3195
+ 64: _stitches_react_types_theme.Token<"64", string, "space", "">;
3196
+ 80: _stitches_react_types_theme.Token<"80", string, "space", "">;
3197
+ };
3198
+ };
3199
+ declare const createTheme: <Argument0 extends string | ({
3200
+ colors?: {
3201
+ black?: string | number | boolean | undefined;
3202
+ white?: string | number | boolean | undefined;
3203
+ smokedWhite?: string | number | boolean | undefined;
3204
+ richBlack?: string | number | boolean | undefined;
3205
+ gray100?: string | number | boolean | undefined;
3206
+ gray200?: string | number | boolean | undefined;
3207
+ gray300?: string | number | boolean | undefined;
3208
+ gray400?: string | number | boolean | undefined;
3209
+ gray500?: string | number | boolean | undefined;
3210
+ gray600?: string | number | boolean | undefined;
3211
+ gray700?: string | number | boolean | undefined;
3212
+ gray800?: string | number | boolean | undefined;
3213
+ gray900?: string | number | boolean | undefined;
3214
+ primary?: string | number | boolean | undefined;
3215
+ primaryLight?: string | number | boolean | undefined;
3216
+ success?: string | number | boolean | undefined;
3217
+ warning?: string | number | boolean | undefined;
3218
+ danger?: string | number | boolean | undefined;
3219
+ } | undefined;
3220
+ fontSizes?: {
3221
+ xxs?: string | number | boolean | undefined;
3222
+ xs?: string | number | boolean | undefined;
3223
+ sm?: string | number | boolean | undefined;
3224
+ md?: string | number | boolean | undefined;
3225
+ lg?: string | number | boolean | undefined;
3226
+ xl?: string | number | boolean | undefined;
3227
+ '2xl'?: string | number | boolean | undefined;
3228
+ '4xl'?: string | number | boolean | undefined;
3229
+ '5xl'?: string | number | boolean | undefined;
3230
+ '6xl'?: string | number | boolean | undefined;
3231
+ '7xl'?: string | number | boolean | undefined;
3232
+ '8xl'?: string | number | boolean | undefined;
3233
+ '9xl'?: string | number | boolean | undefined;
3234
+ } | undefined;
3235
+ fontWeights?: {
3236
+ thin?: string | number | boolean | undefined;
3237
+ extralight?: string | number | boolean | undefined;
3238
+ light?: string | number | boolean | undefined;
3239
+ regular?: string | number | boolean | undefined;
3240
+ medium?: string | number | boolean | undefined;
3241
+ semibold?: string | number | boolean | undefined;
3242
+ bold?: string | number | boolean | undefined;
3243
+ extrabold?: string | number | boolean | undefined;
3244
+ black?: string | number | boolean | undefined;
3245
+ } | undefined;
3246
+ fonts?: {
3247
+ default?: string | number | boolean | undefined;
3248
+ heading?: string | number | boolean | undefined;
3249
+ code?: string | number | boolean | undefined;
3250
+ } | undefined;
3251
+ lineHeights?: {
3252
+ shorter?: string | number | boolean | undefined;
3253
+ short?: string | number | boolean | undefined;
3254
+ base?: string | number | boolean | undefined;
3255
+ tall?: string | number | boolean | undefined;
3256
+ } | undefined;
3257
+ radii?: {
3258
+ px?: string | number | boolean | undefined;
3259
+ xs?: string | number | boolean | undefined;
3260
+ sm?: string | number | boolean | undefined;
3261
+ md?: string | number | boolean | undefined;
3262
+ lg?: string | number | boolean | undefined;
3263
+ full?: string | number | boolean | undefined;
3264
+ } | undefined;
3265
+ space?: {
3266
+ 1?: string | number | boolean | undefined;
3267
+ 2?: string | number | boolean | undefined;
3268
+ 3?: string | number | boolean | undefined;
3269
+ 4?: string | number | boolean | undefined;
3270
+ 5?: string | number | boolean | undefined;
3271
+ 6?: string | number | boolean | undefined;
3272
+ 7?: string | number | boolean | undefined;
3273
+ 8?: string | number | boolean | undefined;
3274
+ 10?: string | number | boolean | undefined;
3275
+ 12?: string | number | boolean | undefined;
3276
+ 16?: string | number | boolean | undefined;
3277
+ 20?: string | number | boolean | undefined;
3278
+ 40?: string | number | boolean | undefined;
3279
+ 64?: string | number | boolean | undefined;
3280
+ 80?: string | number | boolean | undefined;
3281
+ } | undefined;
3282
+ } & {
3283
+ [x: string]: {
3284
+ [x: string]: string | number | boolean;
3285
+ [x: number]: string | number | boolean;
3286
+ };
3287
+ }), Argument1 extends string | ({
3288
+ colors?: {
3289
+ black?: string | number | boolean | undefined;
3290
+ white?: string | number | boolean | undefined;
3291
+ smokedWhite?: string | number | boolean | undefined;
3292
+ richBlack?: string | number | boolean | undefined;
3293
+ gray100?: string | number | boolean | undefined;
3294
+ gray200?: string | number | boolean | undefined;
3295
+ gray300?: string | number | boolean | undefined;
3296
+ gray400?: string | number | boolean | undefined;
3297
+ gray500?: string | number | boolean | undefined;
3298
+ gray600?: string | number | boolean | undefined;
3299
+ gray700?: string | number | boolean | undefined;
3300
+ gray800?: string | number | boolean | undefined;
3301
+ gray900?: string | number | boolean | undefined;
3302
+ primary?: string | number | boolean | undefined;
3303
+ primaryLight?: string | number | boolean | undefined;
3304
+ success?: string | number | boolean | undefined;
3305
+ warning?: string | number | boolean | undefined;
3306
+ danger?: string | number | boolean | undefined;
3307
+ } | undefined;
3308
+ fontSizes?: {
3309
+ xxs?: string | number | boolean | undefined;
3310
+ xs?: string | number | boolean | undefined;
3311
+ sm?: string | number | boolean | undefined;
3312
+ md?: string | number | boolean | undefined;
3313
+ lg?: string | number | boolean | undefined;
3314
+ xl?: string | number | boolean | undefined;
3315
+ '2xl'?: string | number | boolean | undefined;
3316
+ '4xl'?: string | number | boolean | undefined;
3317
+ '5xl'?: string | number | boolean | undefined;
3318
+ '6xl'?: string | number | boolean | undefined;
3319
+ '7xl'?: string | number | boolean | undefined;
3320
+ '8xl'?: string | number | boolean | undefined;
3321
+ '9xl'?: string | number | boolean | undefined;
3322
+ } | undefined;
3323
+ fontWeights?: {
3324
+ thin?: string | number | boolean | undefined;
3325
+ extralight?: string | number | boolean | undefined;
3326
+ light?: string | number | boolean | undefined;
3327
+ regular?: string | number | boolean | undefined;
3328
+ medium?: string | number | boolean | undefined;
3329
+ semibold?: string | number | boolean | undefined;
3330
+ bold?: string | number | boolean | undefined;
3331
+ extrabold?: string | number | boolean | undefined;
3332
+ black?: string | number | boolean | undefined;
3333
+ } | undefined;
3334
+ fonts?: {
3335
+ default?: string | number | boolean | undefined;
3336
+ heading?: string | number | boolean | undefined;
3337
+ code?: string | number | boolean | undefined;
3338
+ } | undefined;
3339
+ lineHeights?: {
3340
+ shorter?: string | number | boolean | undefined;
3341
+ short?: string | number | boolean | undefined;
3342
+ base?: string | number | boolean | undefined;
3343
+ tall?: string | number | boolean | undefined;
3344
+ } | undefined;
3345
+ radii?: {
3346
+ px?: string | number | boolean | undefined;
3347
+ xs?: string | number | boolean | undefined;
3348
+ sm?: string | number | boolean | undefined;
3349
+ md?: string | number | boolean | undefined;
3350
+ lg?: string | number | boolean | undefined;
3351
+ full?: string | number | boolean | undefined;
3352
+ } | undefined;
3353
+ space?: {
3354
+ 1?: string | number | boolean | undefined;
3355
+ 2?: string | number | boolean | undefined;
3356
+ 3?: string | number | boolean | undefined;
3357
+ 4?: string | number | boolean | undefined;
3358
+ 5?: string | number | boolean | undefined;
3359
+ 6?: string | number | boolean | undefined;
3360
+ 7?: string | number | boolean | undefined;
3361
+ 8?: string | number | boolean | undefined;
3362
+ 10?: string | number | boolean | undefined;
3363
+ 12?: string | number | boolean | undefined;
3364
+ 16?: string | number | boolean | undefined;
3365
+ 20?: string | number | boolean | undefined;
3366
+ 40?: string | number | boolean | undefined;
3367
+ 64?: string | number | boolean | undefined;
3368
+ 80?: string | number | boolean | undefined;
3369
+ } | undefined;
3370
+ } & {
3371
+ [x: string]: {
3372
+ [x: string]: string | number | boolean;
3373
+ [x: number]: string | number | boolean;
3374
+ };
3375
+ })>(nameOrScalesArg0: Argument0, nameOrScalesArg1?: Argument1 | undefined) => string & {
3376
+ className: string;
3377
+ selector: string;
3378
+ } & (Argument0 extends string ? _stitches_react_types_stitches.ThemeTokens<Argument1, ""> : _stitches_react_types_stitches.ThemeTokens<Argument0, "">);
3379
+ declare const config: {
3380
+ prefix: "";
3381
+ media: {};
3382
+ theme: {
3383
+ colors: {
3384
+ black: string;
3385
+ white: string;
3386
+ smokedWhite: string;
3387
+ richBlack: string;
3388
+ gray100: string;
3389
+ gray200: string;
3390
+ gray300: string;
3391
+ gray400: string;
3392
+ gray500: string;
3393
+ gray600: string;
3394
+ gray700: string;
3395
+ gray800: string;
3396
+ gray900: string;
3397
+ primary: string;
3398
+ primaryLight: string;
3399
+ success: string;
3400
+ warning: string;
3401
+ danger: string;
3402
+ };
3403
+ fontSizes: {
3404
+ xxs: string;
3405
+ xs: string;
3406
+ sm: string;
3407
+ md: string;
3408
+ lg: string;
3409
+ xl: string;
3410
+ '2xl': string;
3411
+ '4xl': string;
3412
+ '5xl': string;
3413
+ '6xl': string;
3414
+ '7xl': string;
3415
+ '8xl': string;
3416
+ '9xl': string;
3417
+ };
3418
+ fontWeights: {
3419
+ thin: string;
3420
+ extralight: string;
3421
+ light: string;
3422
+ regular: string;
3423
+ medium: string;
3424
+ semibold: string;
3425
+ bold: string;
3426
+ extrabold: string;
3427
+ black: string;
3428
+ };
3429
+ fonts: {
3430
+ default: string;
3431
+ heading: string;
3432
+ code: string;
3433
+ };
3434
+ lineHeights: {
3435
+ shorter: string;
3436
+ short: string;
3437
+ base: string;
3438
+ tall: string;
3439
+ };
3440
+ radii: {
3441
+ px: string;
3442
+ xs: string;
3443
+ sm: string;
3444
+ md: string;
3445
+ lg: string;
3446
+ full: string;
3447
+ };
3448
+ space: {
3449
+ 1: string;
3450
+ 2: string;
3451
+ 3: string;
3452
+ 4: string;
3453
+ 5: string;
3454
+ 6: string;
3455
+ 7: string;
3456
+ 8: string;
3457
+ 10: string;
3458
+ 12: string;
3459
+ 16: string;
3460
+ 20: string;
3461
+ 40: string;
3462
+ 64: string;
3463
+ 80: string;
3464
+ };
3465
+ };
3466
+ themeMap: {
3467
+ height: "space";
3468
+ width: "space";
3469
+ gap: "space";
3470
+ gridGap: "space";
3471
+ columnGap: "space";
3472
+ gridColumnGap: "space";
3473
+ rowGap: "space";
3474
+ gridRowGap: "space";
3475
+ inset: "space";
3476
+ insetBlock: "space";
3477
+ insetBlockEnd: "space";
3478
+ insetBlockStart: "space";
3479
+ insetInline: "space";
3480
+ insetInlineEnd: "space";
3481
+ insetInlineStart: "space";
3482
+ margin: "space";
3483
+ marginTop: "space";
3484
+ marginRight: "space";
3485
+ marginBottom: "space";
3486
+ marginLeft: "space";
3487
+ marginBlock: "space";
3488
+ marginBlockEnd: "space";
3489
+ marginBlockStart: "space";
3490
+ marginInline: "space";
3491
+ marginInlineEnd: "space";
3492
+ marginInlineStart: "space";
3493
+ padding: "space";
3494
+ paddingTop: "space";
3495
+ paddingRight: "space";
3496
+ paddingBottom: "space";
3497
+ paddingLeft: "space";
3498
+ paddingBlock: "space";
3499
+ paddingBlockEnd: "space";
3500
+ paddingBlockStart: "space";
3501
+ paddingInline: "space";
3502
+ paddingInlineEnd: "space";
3503
+ paddingInlineStart: "space";
3504
+ scrollMargin: "space";
3505
+ scrollMarginTop: "space";
3506
+ scrollMarginRight: "space";
3507
+ scrollMarginBottom: "space";
3508
+ scrollMarginLeft: "space";
3509
+ scrollMarginBlock: "space";
3510
+ scrollMarginBlockEnd: "space";
3511
+ scrollMarginBlockStart: "space";
3512
+ scrollMarginInline: "space";
3513
+ scrollMarginInlineEnd: "space";
3514
+ scrollMarginInlineStart: "space";
3515
+ scrollPadding: "space";
3516
+ scrollPaddingTop: "space";
3517
+ scrollPaddingRight: "space";
3518
+ scrollPaddingBottom: "space";
3519
+ scrollPaddingLeft: "space";
3520
+ scrollPaddingBlock: "space";
3521
+ scrollPaddingBlockEnd: "space";
3522
+ scrollPaddingBlockStart: "space";
3523
+ scrollPaddingInline: "space";
3524
+ scrollPaddingInlineEnd: "space";
3525
+ scrollPaddingInlineStart: "space";
3526
+ top: "space";
3527
+ right: "space";
3528
+ bottom: "space";
3529
+ left: "space";
3530
+ fontSize: "fontSizes";
3531
+ background: "colors";
3532
+ backgroundColor: "colors";
3533
+ backgroundImage: "colors";
3534
+ borderImage: "colors";
3535
+ border: "colors";
3536
+ borderBlock: "colors";
3537
+ borderBlockEnd: "colors";
3538
+ borderBlockStart: "colors";
3539
+ borderBottom: "colors";
3540
+ borderBottomColor: "colors";
3541
+ borderColor: "colors";
3542
+ borderInline: "colors";
3543
+ borderInlineEnd: "colors";
3544
+ borderInlineStart: "colors";
3545
+ borderLeft: "colors";
3546
+ borderLeftColor: "colors";
3547
+ borderRight: "colors";
3548
+ borderRightColor: "colors";
3549
+ borderTop: "colors";
3550
+ borderTopColor: "colors";
3551
+ caretColor: "colors";
3552
+ color: "colors";
3553
+ columnRuleColor: "colors";
3554
+ outline: "colors";
3555
+ outlineColor: "colors";
3556
+ fill: "colors";
3557
+ stroke: "colors";
3558
+ textDecorationColor: "colors";
3559
+ fontFamily: "fonts";
3560
+ fontWeight: "fontWeights";
3561
+ lineHeight: "lineHeights";
3562
+ letterSpacing: "letterSpacings";
3563
+ blockSize: "sizes";
3564
+ minBlockSize: "sizes";
3565
+ maxBlockSize: "sizes";
3566
+ inlineSize: "sizes";
3567
+ minInlineSize: "sizes";
3568
+ maxInlineSize: "sizes";
3569
+ minWidth: "sizes";
3570
+ maxWidth: "sizes";
3571
+ minHeight: "sizes";
3572
+ maxHeight: "sizes";
3573
+ flexBasis: "sizes";
3574
+ gridTemplateColumns: "sizes";
3575
+ gridTemplateRows: "sizes";
3576
+ borderWidth: "borderWidths";
3577
+ borderTopWidth: "borderWidths";
3578
+ borderLeftWidth: "borderWidths";
3579
+ borderRightWidth: "borderWidths";
3580
+ borderBottomWidth: "borderWidths";
3581
+ borderStyle: "borderStyles";
3582
+ borderTopStyle: "borderStyles";
3583
+ borderLeftStyle: "borderStyles";
3584
+ borderRightStyle: "borderStyles";
3585
+ borderBottomStyle: "borderStyles";
3586
+ borderRadius: "radii";
3587
+ borderTopLeftRadius: "radii";
3588
+ borderTopRightRadius: "radii";
3589
+ borderBottomRightRadius: "radii";
3590
+ borderBottomLeftRadius: "radii";
3591
+ boxShadow: "shadows";
3592
+ textShadow: "shadows";
3593
+ transition: "transitions";
3594
+ zIndex: "zIndices";
3595
+ };
3596
+ utils: {};
3597
+ };
3598
+
3599
+ export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Dropdown, type DropdownProps, Heading, type HeadingProps, type Option, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps, config, createTheme, css, getCssText, globalCss, keyframes, styled, theme };