@rango-dev/ui 0.35.1-next.5 → 0.35.1-next.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/index.js.map +4 -4
  3. package/dist/ui.build.json +1 -1
  4. package/dist/widget/ui/src/containers/Notifications/NotificationNotFound.d.ts +3 -0
  5. package/dist/widget/ui/src/containers/Notifications/NotificationNotFound.d.ts.map +1 -0
  6. package/dist/widget/ui/src/containers/Notifications/Notifications.d.ts +4 -0
  7. package/dist/widget/ui/src/containers/Notifications/Notifications.d.ts.map +1 -0
  8. package/dist/widget/ui/src/containers/Notifications/Notifications.styles.d.ts +1561 -0
  9. package/dist/widget/ui/src/containers/Notifications/Notifications.styles.d.ts.map +1 -0
  10. package/dist/widget/ui/src/containers/Notifications/Notifications.types.d.ts +23 -0
  11. package/dist/widget/ui/src/containers/Notifications/Notifications.types.d.ts.map +1 -0
  12. package/dist/widget/ui/src/containers/Notifications/index.d.ts +2 -0
  13. package/dist/widget/ui/src/containers/Notifications/index.d.ts.map +1 -0
  14. package/dist/widget/ui/src/containers/index.d.ts +1 -0
  15. package/dist/widget/ui/src/containers/index.d.ts.map +1 -1
  16. package/dist/widget/ui/src/icons/CreditCard.d.ts +5 -0
  17. package/dist/widget/ui/src/icons/CreditCard.d.ts.map +1 -0
  18. package/dist/widget/ui/src/icons/Disconnect.d.ts +5 -0
  19. package/dist/widget/ui/src/icons/Disconnect.d.ts.map +1 -0
  20. package/dist/widget/ui/src/icons/Swap.d.ts.map +1 -1
  21. package/dist/widget/ui/src/icons/index.d.ts +2 -0
  22. package/dist/widget/ui/src/icons/index.d.ts.map +1 -1
  23. package/dist/widget/ui/src/theme.d.ts +2 -0
  24. package/dist/widget/ui/src/theme.d.ts.map +1 -1
  25. package/package.json +2 -2
  26. package/src/containers/Notifications/NotificationNotFound.tsx +19 -0
  27. package/src/containers/Notifications/Notifications.styles.ts +82 -0
  28. package/src/containers/Notifications/Notifications.tsx +108 -0
  29. package/src/containers/Notifications/Notifications.types.ts +17 -0
  30. package/src/containers/Notifications/index.ts +1 -0
  31. package/src/containers/index.ts +1 -0
  32. package/src/icons/CreditCard.tsx +23 -0
  33. package/src/icons/Disconnect.tsx +26 -0
  34. package/src/icons/Swap.tsx +47 -6
  35. package/src/icons/index.ts +2 -0
  36. package/src/theme.ts +2 -0
@@ -0,0 +1,1561 @@
1
+ /// <reference types="react" />
2
+ /// <reference types="react" />
3
+ /// <reference types="trusted-types" />
4
+ import { ListItemButton } from '../../components';
5
+ export declare const Container: import("@stitches/react/types/styled-component").StyledComponent<"div", {
6
+ equalPadding?: boolean | "true" | undefined;
7
+ }, {
8
+ xs: string;
9
+ sm: string;
10
+ md: string;
11
+ lg: string;
12
+ }, import("@stitches/react/types/css-util").CSS<{
13
+ xs: string;
14
+ sm: string;
15
+ md: string;
16
+ lg: string;
17
+ }, {
18
+ colors: {
19
+ primary: string;
20
+ primary500: string;
21
+ primary550: string;
22
+ secondary: string;
23
+ secondary100: string;
24
+ secondary150: string;
25
+ secondary200: string;
26
+ secondary250: string;
27
+ secondary500: string;
28
+ secondary550: string;
29
+ neutral: string;
30
+ neutral100: string;
31
+ neutral200: string;
32
+ neutral300: string;
33
+ neutral400: string;
34
+ neutral500: string;
35
+ neutral600: string;
36
+ neutral700: string;
37
+ neutral800: string;
38
+ neutral900: string;
39
+ error100: string;
40
+ error300: string;
41
+ error500: string;
42
+ error600: string;
43
+ error700: string;
44
+ warning100: string;
45
+ warning300: string;
46
+ warning500: string;
47
+ warning600: string;
48
+ warning700: string;
49
+ info: string;
50
+ info100: string;
51
+ info300: string;
52
+ info500: string;
53
+ info600: string;
54
+ info700: string;
55
+ success100: string;
56
+ success300: string;
57
+ success500: string;
58
+ success600: string;
59
+ success700: string;
60
+ background: string;
61
+ foreground: string;
62
+ };
63
+ space: {
64
+ 0: string;
65
+ 5: string;
66
+ 10: string;
67
+ 15: string;
68
+ 20: string;
69
+ 25: string;
70
+ 30: string;
71
+ 40: string;
72
+ 46: string;
73
+ 50: string;
74
+ 60: string;
75
+ 70: string;
76
+ 80: string;
77
+ 90: string;
78
+ 100: string;
79
+ 2: string;
80
+ 4: string;
81
+ 6: string;
82
+ 8: string;
83
+ 12: string;
84
+ 16: string;
85
+ 24: string;
86
+ 28: string;
87
+ 32: string;
88
+ };
89
+ radii: {
90
+ xs: string;
91
+ sm: string;
92
+ xm: string;
93
+ md: string;
94
+ xl: string;
95
+ lg: string;
96
+ primary: string;
97
+ secondary: string;
98
+ };
99
+ fontSizes: {
100
+ 10: string;
101
+ 12: string;
102
+ 14: string;
103
+ 16: string;
104
+ 18: string;
105
+ 20: string;
106
+ 22: string;
107
+ 24: string;
108
+ 28: string;
109
+ 32: string;
110
+ 36: string;
111
+ 40: string;
112
+ 48: string;
113
+ };
114
+ fonts: {
115
+ primary: string;
116
+ widget: string;
117
+ };
118
+ fontWeights: {
119
+ regular: number;
120
+ medium: number;
121
+ semiBold: number;
122
+ bold: number;
123
+ };
124
+ lineHeights: {
125
+ 12: string;
126
+ 16: string;
127
+ 20: string;
128
+ 24: string;
129
+ 26: string;
130
+ 28: string;
131
+ 30: string;
132
+ 36: string;
133
+ 40: string;
134
+ 44: string;
135
+ 52: string;
136
+ 64: string;
137
+ };
138
+ letterSpacings: {};
139
+ sizes: {
140
+ 4: string;
141
+ 6: string;
142
+ 8: string;
143
+ 10: string;
144
+ 12: string;
145
+ 16: string;
146
+ 18: string;
147
+ 20: string;
148
+ 24: string;
149
+ 26: string;
150
+ 28: string;
151
+ 30: string;
152
+ 32: string;
153
+ 36: string;
154
+ 40: string;
155
+ 45: string;
156
+ 48: string;
157
+ };
158
+ borderWidths: {};
159
+ borderStyles: {};
160
+ shadows: {
161
+ mainContainer: string;
162
+ };
163
+ zIndices: {};
164
+ transitions: {};
165
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
166
+ export declare const Header: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
167
+ xs: string;
168
+ sm: string;
169
+ md: string;
170
+ lg: string;
171
+ }, import("@stitches/react/types/css-util").CSS<{
172
+ xs: string;
173
+ sm: string;
174
+ md: string;
175
+ lg: string;
176
+ }, {
177
+ colors: {
178
+ primary: string;
179
+ primary500: string;
180
+ primary550: string;
181
+ secondary: string;
182
+ secondary100: string;
183
+ secondary150: string;
184
+ secondary200: string;
185
+ secondary250: string;
186
+ secondary500: string;
187
+ secondary550: string;
188
+ neutral: string;
189
+ neutral100: string;
190
+ neutral200: string;
191
+ neutral300: string;
192
+ neutral400: string;
193
+ neutral500: string;
194
+ neutral600: string;
195
+ neutral700: string;
196
+ neutral800: string;
197
+ neutral900: string;
198
+ error100: string;
199
+ error300: string;
200
+ error500: string;
201
+ error600: string;
202
+ error700: string;
203
+ warning100: string;
204
+ warning300: string;
205
+ warning500: string;
206
+ warning600: string;
207
+ warning700: string;
208
+ info: string;
209
+ info100: string;
210
+ info300: string;
211
+ info500: string;
212
+ info600: string;
213
+ info700: string;
214
+ success100: string;
215
+ success300: string;
216
+ success500: string;
217
+ success600: string;
218
+ success700: string;
219
+ background: string;
220
+ foreground: string;
221
+ };
222
+ space: {
223
+ 0: string;
224
+ 5: string;
225
+ 10: string;
226
+ 15: string;
227
+ 20: string;
228
+ 25: string;
229
+ 30: string;
230
+ 40: string;
231
+ 46: string;
232
+ 50: string;
233
+ 60: string;
234
+ 70: string;
235
+ 80: string;
236
+ 90: string;
237
+ 100: string;
238
+ 2: string;
239
+ 4: string;
240
+ 6: string;
241
+ 8: string;
242
+ 12: string;
243
+ 16: string;
244
+ 24: string;
245
+ 28: string;
246
+ 32: string;
247
+ };
248
+ radii: {
249
+ xs: string;
250
+ sm: string;
251
+ xm: string;
252
+ md: string;
253
+ xl: string;
254
+ lg: string;
255
+ primary: string;
256
+ secondary: string;
257
+ };
258
+ fontSizes: {
259
+ 10: string;
260
+ 12: string;
261
+ 14: string;
262
+ 16: string;
263
+ 18: string;
264
+ 20: string;
265
+ 22: string;
266
+ 24: string;
267
+ 28: string;
268
+ 32: string;
269
+ 36: string;
270
+ 40: string;
271
+ 48: string;
272
+ };
273
+ fonts: {
274
+ primary: string;
275
+ widget: string;
276
+ };
277
+ fontWeights: {
278
+ regular: number;
279
+ medium: number;
280
+ semiBold: number;
281
+ bold: number;
282
+ };
283
+ lineHeights: {
284
+ 12: string;
285
+ 16: string;
286
+ 20: string;
287
+ 24: string;
288
+ 26: string;
289
+ 28: string;
290
+ 30: string;
291
+ 36: string;
292
+ 40: string;
293
+ 44: string;
294
+ 52: string;
295
+ 64: string;
296
+ };
297
+ letterSpacings: {};
298
+ sizes: {
299
+ 4: string;
300
+ 6: string;
301
+ 8: string;
302
+ 10: string;
303
+ 12: string;
304
+ 16: string;
305
+ 18: string;
306
+ 20: string;
307
+ 24: string;
308
+ 26: string;
309
+ 28: string;
310
+ 30: string;
311
+ 32: string;
312
+ 36: string;
313
+ 40: string;
314
+ 45: string;
315
+ 48: string;
316
+ };
317
+ borderWidths: {};
318
+ borderStyles: {};
319
+ shadows: {
320
+ mainContainer: string;
321
+ };
322
+ zIndices: {};
323
+ transitions: {};
324
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
325
+ export declare const ClearAllButton: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<{
326
+ slot?: string | undefined;
327
+ style?: import("react").CSSProperties | undefined;
328
+ title?: string | undefined;
329
+ children?: import("react").ReactNode;
330
+ color?: string | undefined;
331
+ content?: string | undefined;
332
+ translate?: "yes" | "no" | undefined;
333
+ hidden?: boolean | undefined;
334
+ defaultChecked?: boolean | undefined;
335
+ defaultValue?: string | number | readonly string[] | undefined;
336
+ suppressContentEditableWarning?: boolean | undefined;
337
+ suppressHydrationWarning?: boolean | undefined;
338
+ accessKey?: string | undefined;
339
+ autoFocus?: boolean | undefined;
340
+ className?: string | undefined;
341
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
342
+ contextMenu?: string | undefined;
343
+ dir?: string | undefined;
344
+ draggable?: (boolean | "true" | "false") | undefined;
345
+ id?: string | undefined;
346
+ lang?: string | undefined;
347
+ nonce?: string | undefined;
348
+ placeholder?: string | undefined;
349
+ spellCheck?: (boolean | "true" | "false") | undefined;
350
+ tabIndex?: number | undefined;
351
+ radioGroup?: string | undefined;
352
+ role?: import("react").AriaRole | undefined;
353
+ about?: string | undefined;
354
+ datatype?: string | undefined;
355
+ inlist?: any;
356
+ property?: string | undefined;
357
+ rel?: string | undefined;
358
+ resource?: string | undefined;
359
+ rev?: string | undefined;
360
+ typeof?: string | undefined;
361
+ vocab?: string | undefined;
362
+ autoCapitalize?: string | undefined;
363
+ autoCorrect?: string | undefined;
364
+ autoSave?: string | undefined;
365
+ itemProp?: string | undefined;
366
+ itemScope?: boolean | undefined;
367
+ itemType?: string | undefined;
368
+ itemID?: string | undefined;
369
+ itemRef?: string | undefined;
370
+ results?: number | undefined;
371
+ security?: string | undefined;
372
+ unselectable?: "on" | "off" | undefined;
373
+ inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
374
+ is?: string | undefined;
375
+ "aria-activedescendant"?: string | undefined;
376
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
377
+ "aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
378
+ "aria-braillelabel"?: string | undefined;
379
+ "aria-brailleroledescription"?: string | undefined;
380
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
381
+ "aria-checked"?: boolean | "true" | "mixed" | "false" | undefined;
382
+ "aria-colcount"?: number | undefined;
383
+ "aria-colindex"?: number | undefined;
384
+ "aria-colindextext"?: string | undefined;
385
+ "aria-colspan"?: number | undefined;
386
+ "aria-controls"?: string | undefined;
387
+ "aria-current"?: boolean | "time" | "true" | "page" | "false" | "step" | "location" | "date" | undefined;
388
+ "aria-describedby"?: string | undefined;
389
+ "aria-description"?: string | undefined;
390
+ "aria-details"?: string | undefined;
391
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
392
+ "aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
393
+ "aria-errormessage"?: string | undefined;
394
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
395
+ "aria-flowto"?: string | undefined;
396
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
397
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "listbox" | "false" | "tree" | undefined;
398
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
399
+ "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
400
+ "aria-keyshortcuts"?: string | undefined;
401
+ "aria-label"?: string | undefined;
402
+ "aria-labelledby"?: string | undefined;
403
+ "aria-level"?: number | undefined;
404
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
405
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
406
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
407
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
408
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
409
+ "aria-owns"?: string | undefined;
410
+ "aria-placeholder"?: string | undefined;
411
+ "aria-posinset"?: number | undefined;
412
+ "aria-pressed"?: boolean | "true" | "mixed" | "false" | undefined;
413
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
414
+ "aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
415
+ "aria-required"?: (boolean | "true" | "false") | undefined;
416
+ "aria-roledescription"?: string | undefined;
417
+ "aria-rowcount"?: number | undefined;
418
+ "aria-rowindex"?: number | undefined;
419
+ "aria-rowindextext"?: string | undefined;
420
+ "aria-rowspan"?: number | undefined;
421
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
422
+ "aria-setsize"?: number | undefined;
423
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
424
+ "aria-valuemax"?: number | undefined;
425
+ "aria-valuemin"?: number | undefined;
426
+ "aria-valuenow"?: number | undefined;
427
+ "aria-valuetext"?: string | undefined;
428
+ dangerouslySetInnerHTML?: {
429
+ __html: string | TrustedHTML;
430
+ } | undefined;
431
+ onCopy?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
432
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
433
+ onCut?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
434
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
435
+ onPaste?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
436
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
437
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
438
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
439
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
440
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
441
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
442
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
443
+ onFocus?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
444
+ onFocusCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
445
+ onBlur?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
446
+ onBlurCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
447
+ onChange?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
448
+ onChangeCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
449
+ onBeforeInput?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
450
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
451
+ onInput?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
452
+ onInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
453
+ onReset?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
454
+ onResetCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
455
+ onSubmit?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
456
+ onSubmitCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
457
+ onInvalid?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
458
+ onInvalidCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
459
+ onLoad?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
460
+ onLoadCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
461
+ onError?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
462
+ onErrorCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
463
+ onKeyDown?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
464
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
465
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
466
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
467
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
468
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
469
+ onAbort?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
470
+ onAbortCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
471
+ onCanPlay?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
472
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
473
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
474
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
475
+ onDurationChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
476
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
477
+ onEmptied?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
478
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
479
+ onEncrypted?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
480
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
481
+ onEnded?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
482
+ onEndedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
483
+ onLoadedData?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
484
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
485
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
486
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
487
+ onLoadStart?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
488
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
489
+ onPause?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
490
+ onPauseCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
491
+ onPlay?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
492
+ onPlayCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
493
+ onPlaying?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
494
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
495
+ onProgress?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
496
+ onProgressCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
497
+ onRateChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
498
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
499
+ onResize?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
500
+ onResizeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
501
+ onSeeked?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
502
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
503
+ onSeeking?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
504
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
505
+ onStalled?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
506
+ onStalledCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
507
+ onSuspend?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
508
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
509
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
510
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
511
+ onVolumeChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
512
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
513
+ onWaiting?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
514
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
515
+ onAuxClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
516
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
517
+ onClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
518
+ onClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
519
+ onContextMenu?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
520
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
521
+ onDoubleClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
522
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
523
+ onDrag?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
524
+ onDragCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
525
+ onDragEnd?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
526
+ onDragEndCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
527
+ onDragEnter?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
528
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
529
+ onDragExit?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
530
+ onDragExitCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
531
+ onDragLeave?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
532
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
533
+ onDragOver?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
534
+ onDragOverCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
535
+ onDragStart?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
536
+ onDragStartCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
537
+ onDrop?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
538
+ onDropCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
539
+ onMouseDown?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
540
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
541
+ onMouseEnter?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
542
+ onMouseLeave?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
543
+ onMouseMove?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
544
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
545
+ onMouseOut?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
546
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
547
+ onMouseOver?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
548
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
549
+ onMouseUp?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
550
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
551
+ onSelect?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
552
+ onSelectCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
553
+ onTouchCancel?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
554
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
555
+ onTouchEnd?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
556
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
557
+ onTouchMove?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
558
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
559
+ onTouchStart?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
560
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
561
+ onPointerDown?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
562
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
563
+ onPointerMove?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
564
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
565
+ onPointerUp?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
566
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
567
+ onPointerCancel?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
568
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
569
+ onPointerEnter?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
570
+ onPointerEnterCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
571
+ onPointerLeave?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
572
+ onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
573
+ onPointerOver?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
574
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
575
+ onPointerOut?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
576
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
577
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
578
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
579
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
580
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
581
+ onScroll?: import("react").UIEventHandler<HTMLButtonElement> | undefined;
582
+ onScrollCapture?: import("react").UIEventHandler<HTMLButtonElement> | undefined;
583
+ onWheel?: import("react").WheelEventHandler<HTMLButtonElement> | undefined;
584
+ onWheelCapture?: import("react").WheelEventHandler<HTMLButtonElement> | undefined;
585
+ onAnimationStart?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
586
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
587
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
588
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
589
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
590
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
591
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
592
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
593
+ } & {
594
+ size?: "small" | "medium" | "large" | "xsmall" | "xxsmall" | undefined;
595
+ variant?: "default" | "contained" | "outlined" | "ghost" | undefined;
596
+ type?: "primary" | "secondary" | "success" | "warning" | "error" | undefined;
597
+ loading?: boolean | undefined;
598
+ disabled?: boolean | undefined;
599
+ prefix?: import("react").ReactNode;
600
+ suffix?: import("react").ReactNode;
601
+ fullWidth?: boolean | undefined;
602
+ disableRipple?: boolean | undefined;
603
+ } & {
604
+ children?: import("react").ReactNode;
605
+ } & import("react").RefAttributes<HTMLButtonElement>>, {}, {
606
+ xs: string;
607
+ sm: string;
608
+ md: string;
609
+ lg: string;
610
+ }, import("@stitches/react/types/css-util").CSS<{
611
+ xs: string;
612
+ sm: string;
613
+ md: string;
614
+ lg: string;
615
+ }, {
616
+ colors: {
617
+ primary: string;
618
+ primary500: string;
619
+ primary550: string;
620
+ secondary: string;
621
+ secondary100: string;
622
+ secondary150: string;
623
+ secondary200: string;
624
+ secondary250: string;
625
+ secondary500: string;
626
+ secondary550: string;
627
+ neutral: string;
628
+ neutral100: string;
629
+ neutral200: string;
630
+ neutral300: string;
631
+ neutral400: string;
632
+ neutral500: string;
633
+ neutral600: string;
634
+ neutral700: string;
635
+ neutral800: string;
636
+ neutral900: string;
637
+ error100: string;
638
+ error300: string;
639
+ error500: string;
640
+ error600: string;
641
+ error700: string;
642
+ warning100: string;
643
+ warning300: string;
644
+ warning500: string;
645
+ warning600: string;
646
+ warning700: string;
647
+ info: string;
648
+ info100: string;
649
+ info300: string;
650
+ info500: string;
651
+ info600: string;
652
+ info700: string;
653
+ success100: string;
654
+ success300: string;
655
+ success500: string;
656
+ success600: string;
657
+ success700: string;
658
+ background: string;
659
+ foreground: string;
660
+ };
661
+ space: {
662
+ 0: string;
663
+ 5: string;
664
+ 10: string;
665
+ 15: string;
666
+ 20: string;
667
+ 25: string;
668
+ 30: string;
669
+ 40: string;
670
+ 46: string;
671
+ 50: string;
672
+ 60: string;
673
+ 70: string;
674
+ 80: string;
675
+ 90: string;
676
+ 100: string;
677
+ 2: string;
678
+ 4: string;
679
+ 6: string;
680
+ 8: string;
681
+ 12: string;
682
+ 16: string;
683
+ 24: string;
684
+ 28: string;
685
+ 32: string;
686
+ };
687
+ radii: {
688
+ xs: string;
689
+ sm: string;
690
+ xm: string;
691
+ md: string;
692
+ xl: string;
693
+ lg: string;
694
+ primary: string;
695
+ secondary: string;
696
+ };
697
+ fontSizes: {
698
+ 10: string;
699
+ 12: string;
700
+ 14: string;
701
+ 16: string;
702
+ 18: string;
703
+ 20: string;
704
+ 22: string;
705
+ 24: string;
706
+ 28: string;
707
+ 32: string;
708
+ 36: string;
709
+ 40: string;
710
+ 48: string;
711
+ };
712
+ fonts: {
713
+ primary: string;
714
+ widget: string;
715
+ };
716
+ fontWeights: {
717
+ regular: number;
718
+ medium: number;
719
+ semiBold: number;
720
+ bold: number;
721
+ };
722
+ lineHeights: {
723
+ 12: string;
724
+ 16: string;
725
+ 20: string;
726
+ 24: string;
727
+ 26: string;
728
+ 28: string;
729
+ 30: string;
730
+ 36: string;
731
+ 40: string;
732
+ 44: string;
733
+ 52: string;
734
+ 64: string;
735
+ };
736
+ letterSpacings: {};
737
+ sizes: {
738
+ 4: string;
739
+ 6: string;
740
+ 8: string;
741
+ 10: string;
742
+ 12: string;
743
+ 16: string;
744
+ 18: string;
745
+ 20: string;
746
+ 24: string;
747
+ 26: string;
748
+ 28: string;
749
+ 30: string;
750
+ 32: string;
751
+ 36: string;
752
+ 40: string;
753
+ 45: string;
754
+ 48: string;
755
+ };
756
+ borderWidths: {};
757
+ borderStyles: {};
758
+ shadows: {
759
+ mainContainer: string;
760
+ };
761
+ zIndices: {};
762
+ transitions: {};
763
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
764
+ export declare const List: import("@stitches/react/types/styled-component").StyledComponent<"ul", {}, {
765
+ xs: string;
766
+ sm: string;
767
+ md: string;
768
+ lg: string;
769
+ }, import("@stitches/react/types/css-util").CSS<{
770
+ xs: string;
771
+ sm: string;
772
+ md: string;
773
+ lg: string;
774
+ }, {
775
+ colors: {
776
+ primary: string;
777
+ primary500: string;
778
+ primary550: string;
779
+ secondary: string;
780
+ secondary100: string;
781
+ secondary150: string;
782
+ secondary200: string;
783
+ secondary250: string;
784
+ secondary500: string;
785
+ secondary550: string;
786
+ neutral: string;
787
+ neutral100: string;
788
+ neutral200: string;
789
+ neutral300: string;
790
+ neutral400: string;
791
+ neutral500: string;
792
+ neutral600: string;
793
+ neutral700: string;
794
+ neutral800: string;
795
+ neutral900: string;
796
+ error100: string;
797
+ error300: string;
798
+ error500: string;
799
+ error600: string;
800
+ error700: string;
801
+ warning100: string;
802
+ warning300: string;
803
+ warning500: string;
804
+ warning600: string;
805
+ warning700: string;
806
+ info: string;
807
+ info100: string;
808
+ info300: string;
809
+ info500: string;
810
+ info600: string;
811
+ info700: string;
812
+ success100: string;
813
+ success300: string;
814
+ success500: string;
815
+ success600: string;
816
+ success700: string;
817
+ background: string;
818
+ foreground: string;
819
+ };
820
+ space: {
821
+ 0: string;
822
+ 5: string;
823
+ 10: string;
824
+ 15: string;
825
+ 20: string;
826
+ 25: string;
827
+ 30: string;
828
+ 40: string;
829
+ 46: string;
830
+ 50: string;
831
+ 60: string;
832
+ 70: string;
833
+ 80: string;
834
+ 90: string;
835
+ 100: string;
836
+ 2: string;
837
+ 4: string;
838
+ 6: string;
839
+ 8: string;
840
+ 12: string;
841
+ 16: string;
842
+ 24: string;
843
+ 28: string;
844
+ 32: string;
845
+ };
846
+ radii: {
847
+ xs: string;
848
+ sm: string;
849
+ xm: string;
850
+ md: string;
851
+ xl: string;
852
+ lg: string;
853
+ primary: string;
854
+ secondary: string;
855
+ };
856
+ fontSizes: {
857
+ 10: string;
858
+ 12: string;
859
+ 14: string;
860
+ 16: string;
861
+ 18: string;
862
+ 20: string;
863
+ 22: string;
864
+ 24: string;
865
+ 28: string;
866
+ 32: string;
867
+ 36: string;
868
+ 40: string;
869
+ 48: string;
870
+ };
871
+ fonts: {
872
+ primary: string;
873
+ widget: string;
874
+ };
875
+ fontWeights: {
876
+ regular: number;
877
+ medium: number;
878
+ semiBold: number;
879
+ bold: number;
880
+ };
881
+ lineHeights: {
882
+ 12: string;
883
+ 16: string;
884
+ 20: string;
885
+ 24: string;
886
+ 26: string;
887
+ 28: string;
888
+ 30: string;
889
+ 36: string;
890
+ 40: string;
891
+ 44: string;
892
+ 52: string;
893
+ 64: string;
894
+ };
895
+ letterSpacings: {};
896
+ sizes: {
897
+ 4: string;
898
+ 6: string;
899
+ 8: string;
900
+ 10: string;
901
+ 12: string;
902
+ 16: string;
903
+ 18: string;
904
+ 20: string;
905
+ 24: string;
906
+ 26: string;
907
+ 28: string;
908
+ 30: string;
909
+ 32: string;
910
+ 36: string;
911
+ 40: string;
912
+ 45: string;
913
+ 48: string;
914
+ };
915
+ borderWidths: {};
916
+ borderStyles: {};
917
+ shadows: {
918
+ mainContainer: string;
919
+ };
920
+ zIndices: {};
921
+ transitions: {};
922
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
923
+ export declare const ListItem: import("@stitches/react/types/styled-component").StyledComponent<typeof ListItemButton, {
924
+ actionRequired?: boolean | "true" | undefined;
925
+ }, {
926
+ xs: string;
927
+ sm: string;
928
+ md: string;
929
+ lg: string;
930
+ }, import("@stitches/react/types/css-util").CSS<{
931
+ xs: string;
932
+ sm: string;
933
+ md: string;
934
+ lg: string;
935
+ }, {
936
+ colors: {
937
+ primary: string;
938
+ primary500: string;
939
+ primary550: string;
940
+ secondary: string;
941
+ secondary100: string;
942
+ secondary150: string;
943
+ secondary200: string;
944
+ secondary250: string;
945
+ secondary500: string;
946
+ secondary550: string;
947
+ neutral: string;
948
+ neutral100: string;
949
+ neutral200: string;
950
+ neutral300: string;
951
+ neutral400: string;
952
+ neutral500: string;
953
+ neutral600: string;
954
+ neutral700: string;
955
+ neutral800: string;
956
+ neutral900: string;
957
+ error100: string;
958
+ error300: string;
959
+ error500: string;
960
+ error600: string;
961
+ error700: string;
962
+ warning100: string;
963
+ warning300: string;
964
+ warning500: string;
965
+ warning600: string;
966
+ warning700: string;
967
+ info: string;
968
+ info100: string;
969
+ info300: string;
970
+ info500: string;
971
+ info600: string;
972
+ info700: string;
973
+ success100: string;
974
+ success300: string;
975
+ success500: string;
976
+ success600: string;
977
+ success700: string;
978
+ background: string;
979
+ foreground: string;
980
+ };
981
+ space: {
982
+ 0: string;
983
+ 5: string;
984
+ 10: string;
985
+ 15: string;
986
+ 20: string;
987
+ 25: string;
988
+ 30: string;
989
+ 40: string;
990
+ 46: string;
991
+ 50: string;
992
+ 60: string;
993
+ 70: string;
994
+ 80: string;
995
+ 90: string;
996
+ 100: string;
997
+ 2: string;
998
+ 4: string;
999
+ 6: string;
1000
+ 8: string;
1001
+ 12: string;
1002
+ 16: string;
1003
+ 24: string;
1004
+ 28: string;
1005
+ 32: string;
1006
+ };
1007
+ radii: {
1008
+ xs: string;
1009
+ sm: string;
1010
+ xm: string;
1011
+ md: string;
1012
+ xl: string;
1013
+ lg: string;
1014
+ primary: string;
1015
+ secondary: string;
1016
+ };
1017
+ fontSizes: {
1018
+ 10: string;
1019
+ 12: string;
1020
+ 14: string;
1021
+ 16: string;
1022
+ 18: string;
1023
+ 20: string;
1024
+ 22: string;
1025
+ 24: string;
1026
+ 28: string;
1027
+ 32: string;
1028
+ 36: string;
1029
+ 40: string;
1030
+ 48: string;
1031
+ };
1032
+ fonts: {
1033
+ primary: string;
1034
+ widget: string;
1035
+ };
1036
+ fontWeights: {
1037
+ regular: number;
1038
+ medium: number;
1039
+ semiBold: number;
1040
+ bold: number;
1041
+ };
1042
+ lineHeights: {
1043
+ 12: string;
1044
+ 16: string;
1045
+ 20: string;
1046
+ 24: string;
1047
+ 26: string;
1048
+ 28: string;
1049
+ 30: string;
1050
+ 36: string;
1051
+ 40: string;
1052
+ 44: string;
1053
+ 52: string;
1054
+ 64: string;
1055
+ };
1056
+ letterSpacings: {};
1057
+ sizes: {
1058
+ 4: string;
1059
+ 6: string;
1060
+ 8: string;
1061
+ 10: string;
1062
+ 12: string;
1063
+ 16: string;
1064
+ 18: string;
1065
+ 20: string;
1066
+ 24: string;
1067
+ 26: string;
1068
+ 28: string;
1069
+ 30: string;
1070
+ 32: string;
1071
+ 36: string;
1072
+ 40: string;
1073
+ 45: string;
1074
+ 48: string;
1075
+ };
1076
+ borderWidths: {};
1077
+ borderStyles: {};
1078
+ shadows: {
1079
+ mainContainer: string;
1080
+ };
1081
+ zIndices: {};
1082
+ transitions: {};
1083
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
1084
+ export declare const Images: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
1085
+ xs: string;
1086
+ sm: string;
1087
+ md: string;
1088
+ lg: string;
1089
+ }, import("@stitches/react/types/css-util").CSS<{
1090
+ xs: string;
1091
+ sm: string;
1092
+ md: string;
1093
+ lg: string;
1094
+ }, {
1095
+ colors: {
1096
+ primary: string;
1097
+ primary500: string;
1098
+ primary550: string;
1099
+ secondary: string;
1100
+ secondary100: string;
1101
+ secondary150: string;
1102
+ secondary200: string;
1103
+ secondary250: string;
1104
+ secondary500: string;
1105
+ secondary550: string;
1106
+ neutral: string;
1107
+ neutral100: string;
1108
+ neutral200: string;
1109
+ neutral300: string;
1110
+ neutral400: string;
1111
+ neutral500: string;
1112
+ neutral600: string;
1113
+ neutral700: string;
1114
+ neutral800: string;
1115
+ neutral900: string;
1116
+ error100: string;
1117
+ error300: string;
1118
+ error500: string;
1119
+ error600: string;
1120
+ error700: string;
1121
+ warning100: string;
1122
+ warning300: string;
1123
+ warning500: string;
1124
+ warning600: string;
1125
+ warning700: string;
1126
+ info: string;
1127
+ info100: string;
1128
+ info300: string;
1129
+ info500: string;
1130
+ info600: string;
1131
+ info700: string;
1132
+ success100: string;
1133
+ success300: string;
1134
+ success500: string;
1135
+ success600: string;
1136
+ success700: string;
1137
+ background: string;
1138
+ foreground: string;
1139
+ };
1140
+ space: {
1141
+ 0: string;
1142
+ 5: string;
1143
+ 10: string;
1144
+ 15: string;
1145
+ 20: string;
1146
+ 25: string;
1147
+ 30: string;
1148
+ 40: string;
1149
+ 46: string;
1150
+ 50: string;
1151
+ 60: string;
1152
+ 70: string;
1153
+ 80: string;
1154
+ 90: string;
1155
+ 100: string;
1156
+ 2: string;
1157
+ 4: string;
1158
+ 6: string;
1159
+ 8: string;
1160
+ 12: string;
1161
+ 16: string;
1162
+ 24: string;
1163
+ 28: string;
1164
+ 32: string;
1165
+ };
1166
+ radii: {
1167
+ xs: string;
1168
+ sm: string;
1169
+ xm: string;
1170
+ md: string;
1171
+ xl: string;
1172
+ lg: string;
1173
+ primary: string;
1174
+ secondary: string;
1175
+ };
1176
+ fontSizes: {
1177
+ 10: string;
1178
+ 12: string;
1179
+ 14: string;
1180
+ 16: string;
1181
+ 18: string;
1182
+ 20: string;
1183
+ 22: string;
1184
+ 24: string;
1185
+ 28: string;
1186
+ 32: string;
1187
+ 36: string;
1188
+ 40: string;
1189
+ 48: string;
1190
+ };
1191
+ fonts: {
1192
+ primary: string;
1193
+ widget: string;
1194
+ };
1195
+ fontWeights: {
1196
+ regular: number;
1197
+ medium: number;
1198
+ semiBold: number;
1199
+ bold: number;
1200
+ };
1201
+ lineHeights: {
1202
+ 12: string;
1203
+ 16: string;
1204
+ 20: string;
1205
+ 24: string;
1206
+ 26: string;
1207
+ 28: string;
1208
+ 30: string;
1209
+ 36: string;
1210
+ 40: string;
1211
+ 44: string;
1212
+ 52: string;
1213
+ 64: string;
1214
+ };
1215
+ letterSpacings: {};
1216
+ sizes: {
1217
+ 4: string;
1218
+ 6: string;
1219
+ 8: string;
1220
+ 10: string;
1221
+ 12: string;
1222
+ 16: string;
1223
+ 18: string;
1224
+ 20: string;
1225
+ 24: string;
1226
+ 26: string;
1227
+ 28: string;
1228
+ 30: string;
1229
+ 32: string;
1230
+ 36: string;
1231
+ 40: string;
1232
+ 45: string;
1233
+ 48: string;
1234
+ };
1235
+ borderWidths: {};
1236
+ borderStyles: {};
1237
+ shadows: {
1238
+ mainContainer: string;
1239
+ };
1240
+ zIndices: {};
1241
+ transitions: {};
1242
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
1243
+ export declare const NotFoundContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
1244
+ xs: string;
1245
+ sm: string;
1246
+ md: string;
1247
+ lg: string;
1248
+ }, import("@stitches/react/types/css-util").CSS<{
1249
+ xs: string;
1250
+ sm: string;
1251
+ md: string;
1252
+ lg: string;
1253
+ }, {
1254
+ colors: {
1255
+ primary: string;
1256
+ primary500: string;
1257
+ primary550: string;
1258
+ secondary: string;
1259
+ secondary100: string;
1260
+ secondary150: string;
1261
+ secondary200: string;
1262
+ secondary250: string;
1263
+ secondary500: string;
1264
+ secondary550: string;
1265
+ neutral: string;
1266
+ neutral100: string;
1267
+ neutral200: string;
1268
+ neutral300: string;
1269
+ neutral400: string;
1270
+ neutral500: string;
1271
+ neutral600: string;
1272
+ neutral700: string;
1273
+ neutral800: string;
1274
+ neutral900: string;
1275
+ error100: string;
1276
+ error300: string;
1277
+ error500: string;
1278
+ error600: string;
1279
+ error700: string;
1280
+ warning100: string;
1281
+ warning300: string;
1282
+ warning500: string;
1283
+ warning600: string;
1284
+ warning700: string;
1285
+ info: string;
1286
+ info100: string;
1287
+ info300: string;
1288
+ info500: string;
1289
+ info600: string;
1290
+ info700: string;
1291
+ success100: string;
1292
+ success300: string;
1293
+ success500: string;
1294
+ success600: string;
1295
+ success700: string;
1296
+ background: string;
1297
+ foreground: string;
1298
+ };
1299
+ space: {
1300
+ 0: string;
1301
+ 5: string;
1302
+ 10: string;
1303
+ 15: string;
1304
+ 20: string;
1305
+ 25: string;
1306
+ 30: string;
1307
+ 40: string;
1308
+ 46: string;
1309
+ 50: string;
1310
+ 60: string;
1311
+ 70: string;
1312
+ 80: string;
1313
+ 90: string;
1314
+ 100: string;
1315
+ 2: string;
1316
+ 4: string;
1317
+ 6: string;
1318
+ 8: string;
1319
+ 12: string;
1320
+ 16: string;
1321
+ 24: string;
1322
+ 28: string;
1323
+ 32: string;
1324
+ };
1325
+ radii: {
1326
+ xs: string;
1327
+ sm: string;
1328
+ xm: string;
1329
+ md: string;
1330
+ xl: string;
1331
+ lg: string;
1332
+ primary: string;
1333
+ secondary: string;
1334
+ };
1335
+ fontSizes: {
1336
+ 10: string;
1337
+ 12: string;
1338
+ 14: string;
1339
+ 16: string;
1340
+ 18: string;
1341
+ 20: string;
1342
+ 22: string;
1343
+ 24: string;
1344
+ 28: string;
1345
+ 32: string;
1346
+ 36: string;
1347
+ 40: string;
1348
+ 48: string;
1349
+ };
1350
+ fonts: {
1351
+ primary: string;
1352
+ widget: string;
1353
+ };
1354
+ fontWeights: {
1355
+ regular: number;
1356
+ medium: number;
1357
+ semiBold: number;
1358
+ bold: number;
1359
+ };
1360
+ lineHeights: {
1361
+ 12: string;
1362
+ 16: string;
1363
+ 20: string;
1364
+ 24: string;
1365
+ 26: string;
1366
+ 28: string;
1367
+ 30: string;
1368
+ 36: string;
1369
+ 40: string;
1370
+ 44: string;
1371
+ 52: string;
1372
+ 64: string;
1373
+ };
1374
+ letterSpacings: {};
1375
+ sizes: {
1376
+ 4: string;
1377
+ 6: string;
1378
+ 8: string;
1379
+ 10: string;
1380
+ 12: string;
1381
+ 16: string;
1382
+ 18: string;
1383
+ 20: string;
1384
+ 24: string;
1385
+ 26: string;
1386
+ 28: string;
1387
+ 30: string;
1388
+ 32: string;
1389
+ 36: string;
1390
+ 40: string;
1391
+ 45: string;
1392
+ 48: string;
1393
+ };
1394
+ borderWidths: {};
1395
+ borderStyles: {};
1396
+ shadows: {
1397
+ mainContainer: string;
1398
+ };
1399
+ zIndices: {};
1400
+ transitions: {};
1401
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
1402
+ export declare const IconContainer: import("@stitches/react/types/styled-component").StyledComponent<"span", {}, {
1403
+ xs: string;
1404
+ sm: string;
1405
+ md: string;
1406
+ lg: string;
1407
+ }, import("@stitches/react/types/css-util").CSS<{
1408
+ xs: string;
1409
+ sm: string;
1410
+ md: string;
1411
+ lg: string;
1412
+ }, {
1413
+ colors: {
1414
+ primary: string;
1415
+ primary500: string;
1416
+ primary550: string;
1417
+ secondary: string;
1418
+ secondary100: string;
1419
+ secondary150: string;
1420
+ secondary200: string;
1421
+ secondary250: string;
1422
+ secondary500: string;
1423
+ secondary550: string;
1424
+ neutral: string;
1425
+ neutral100: string;
1426
+ neutral200: string;
1427
+ neutral300: string;
1428
+ neutral400: string;
1429
+ neutral500: string;
1430
+ neutral600: string;
1431
+ neutral700: string;
1432
+ neutral800: string;
1433
+ neutral900: string;
1434
+ error100: string;
1435
+ error300: string;
1436
+ error500: string;
1437
+ error600: string;
1438
+ error700: string;
1439
+ warning100: string;
1440
+ warning300: string;
1441
+ warning500: string;
1442
+ warning600: string;
1443
+ warning700: string;
1444
+ info: string;
1445
+ info100: string;
1446
+ info300: string;
1447
+ info500: string;
1448
+ info600: string;
1449
+ info700: string;
1450
+ success100: string;
1451
+ success300: string;
1452
+ success500: string;
1453
+ success600: string;
1454
+ success700: string;
1455
+ background: string;
1456
+ foreground: string;
1457
+ };
1458
+ space: {
1459
+ 0: string;
1460
+ 5: string;
1461
+ 10: string;
1462
+ 15: string;
1463
+ 20: string;
1464
+ 25: string;
1465
+ 30: string;
1466
+ 40: string;
1467
+ 46: string;
1468
+ 50: string;
1469
+ 60: string;
1470
+ 70: string;
1471
+ 80: string;
1472
+ 90: string;
1473
+ 100: string;
1474
+ 2: string;
1475
+ 4: string;
1476
+ 6: string;
1477
+ 8: string;
1478
+ 12: string;
1479
+ 16: string;
1480
+ 24: string;
1481
+ 28: string;
1482
+ 32: string;
1483
+ };
1484
+ radii: {
1485
+ xs: string;
1486
+ sm: string;
1487
+ xm: string;
1488
+ md: string;
1489
+ xl: string;
1490
+ lg: string;
1491
+ primary: string;
1492
+ secondary: string;
1493
+ };
1494
+ fontSizes: {
1495
+ 10: string;
1496
+ 12: string;
1497
+ 14: string;
1498
+ 16: string;
1499
+ 18: string;
1500
+ 20: string;
1501
+ 22: string;
1502
+ 24: string;
1503
+ 28: string;
1504
+ 32: string;
1505
+ 36: string;
1506
+ 40: string;
1507
+ 48: string;
1508
+ };
1509
+ fonts: {
1510
+ primary: string;
1511
+ widget: string;
1512
+ };
1513
+ fontWeights: {
1514
+ regular: number;
1515
+ medium: number;
1516
+ semiBold: number;
1517
+ bold: number;
1518
+ };
1519
+ lineHeights: {
1520
+ 12: string;
1521
+ 16: string;
1522
+ 20: string;
1523
+ 24: string;
1524
+ 26: string;
1525
+ 28: string;
1526
+ 30: string;
1527
+ 36: string;
1528
+ 40: string;
1529
+ 44: string;
1530
+ 52: string;
1531
+ 64: string;
1532
+ };
1533
+ letterSpacings: {};
1534
+ sizes: {
1535
+ 4: string;
1536
+ 6: string;
1537
+ 8: string;
1538
+ 10: string;
1539
+ 12: string;
1540
+ 16: string;
1541
+ 18: string;
1542
+ 20: string;
1543
+ 24: string;
1544
+ 26: string;
1545
+ 28: string;
1546
+ 30: string;
1547
+ 32: string;
1548
+ 36: string;
1549
+ 40: string;
1550
+ 45: string;
1551
+ 48: string;
1552
+ };
1553
+ borderWidths: {};
1554
+ borderStyles: {};
1555
+ shadows: {
1556
+ mainContainer: string;
1557
+ };
1558
+ zIndices: {};
1559
+ transitions: {};
1560
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
1561
+ //# sourceMappingURL=Notifications.styles.d.ts.map