@refineui/react 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/dist/index.cjs +15530 -0
  2. package/dist/index.cjs.map +1 -0
  3. package/dist/index.d.cts +3905 -0
  4. package/dist/index.d.ts +3905 -0
  5. package/dist/index.js +15445 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/spec/README.md +95 -0
  8. package/dist/spec/components/accordion.json +126 -0
  9. package/dist/spec/components/alert.json +71 -0
  10. package/dist/spec/components/avatar.json +30 -0
  11. package/dist/spec/components/avatars.json +29 -0
  12. package/dist/spec/components/badge.json +41 -0
  13. package/dist/spec/components/box.json +16 -0
  14. package/dist/spec/components/breadcrumb.json +40 -0
  15. package/dist/spec/components/bubble.json +31 -0
  16. package/dist/spec/components/button.json +104 -0
  17. package/dist/spec/components/calendar.json +52 -0
  18. package/dist/spec/components/card.json +57 -0
  19. package/dist/spec/components/carousel.json +65 -0
  20. package/dist/spec/components/chart.json +34 -0
  21. package/dist/spec/components/checkbox.json +38 -0
  22. package/dist/spec/components/chip.json +65 -0
  23. package/dist/spec/components/command.json +65 -0
  24. package/dist/spec/components/container.json +16 -0
  25. package/dist/spec/components/dialog.json +95 -0
  26. package/dist/spec/components/divider.json +29 -0
  27. package/dist/spec/components/drawer.json +71 -0
  28. package/dist/spec/components/dropdown.json +64 -0
  29. package/dist/spec/components/field.json +31 -0
  30. package/dist/spec/components/footer.json +45 -0
  31. package/dist/spec/components/grid.json +17 -0
  32. package/dist/spec/components/input-otp.json +34 -0
  33. package/dist/spec/components/input.json +36 -0
  34. package/dist/spec/components/label.json +24 -0
  35. package/dist/spec/components/link.json +38 -0
  36. package/dist/spec/components/menu.json +67 -0
  37. package/dist/spec/components/navigation-menu.json +74 -0
  38. package/dist/spec/components/pagination.json +41 -0
  39. package/dist/spec/components/popover.json +42 -0
  40. package/dist/spec/components/progress-stepper.json +61 -0
  41. package/dist/spec/components/progress.json +28 -0
  42. package/dist/spec/components/radio.json +43 -0
  43. package/dist/spec/components/resizable.json +34 -0
  44. package/dist/spec/components/scroll-area.json +50 -0
  45. package/dist/spec/components/search-field.json +53 -0
  46. package/dist/spec/components/segmented-control.json +67 -0
  47. package/dist/spec/components/select.json +113 -0
  48. package/dist/spec/components/sidebar.json +45 -0
  49. package/dist/spec/components/skeleton.json +21 -0
  50. package/dist/spec/components/slider.json +43 -0
  51. package/dist/spec/components/spacer.json +16 -0
  52. package/dist/spec/components/spin-button.json +45 -0
  53. package/dist/spec/components/spinner.json +35 -0
  54. package/dist/spec/components/stack.json +16 -0
  55. package/dist/spec/components/stepper.json +62 -0
  56. package/dist/spec/components/switch.json +52 -0
  57. package/dist/spec/components/table.json +17 -0
  58. package/dist/spec/components/tabs.json +77 -0
  59. package/dist/spec/components/tag.json +65 -0
  60. package/dist/spec/components/text.json +16 -0
  61. package/dist/spec/components/textarea.json +22 -0
  62. package/dist/spec/components/toast.json +45 -0
  63. package/dist/spec/components/tooltip.json +31 -0
  64. package/dist/spec/components/tree.json +80 -0
  65. package/dist/spec/contract-index.json +721 -0
  66. package/dist/spec/manifest.json +686 -0
  67. package/dist/spec/schema/component-spec.schema.json +203 -0
  68. package/dist/spec/token-graph.json +6605 -0
  69. package/dist/spec/token-trace-v2.json +5170 -0
  70. package/package.json +54 -0
  71. package/refineui.css +2275 -0
  72. package/spec/README.md +95 -0
  73. package/spec/components/accordion.json +126 -0
  74. package/spec/components/alert.json +71 -0
  75. package/spec/components/avatar.json +30 -0
  76. package/spec/components/avatars.json +29 -0
  77. package/spec/components/badge.json +41 -0
  78. package/spec/components/box.json +16 -0
  79. package/spec/components/breadcrumb.json +40 -0
  80. package/spec/components/bubble.json +31 -0
  81. package/spec/components/button.json +104 -0
  82. package/spec/components/calendar.json +52 -0
  83. package/spec/components/card.json +57 -0
  84. package/spec/components/carousel.json +65 -0
  85. package/spec/components/chart.json +34 -0
  86. package/spec/components/checkbox.json +38 -0
  87. package/spec/components/chip.json +65 -0
  88. package/spec/components/command.json +65 -0
  89. package/spec/components/container.json +16 -0
  90. package/spec/components/dialog.json +95 -0
  91. package/spec/components/divider.json +29 -0
  92. package/spec/components/drawer.json +71 -0
  93. package/spec/components/dropdown.json +64 -0
  94. package/spec/components/field.json +31 -0
  95. package/spec/components/footer.json +45 -0
  96. package/spec/components/grid.json +17 -0
  97. package/spec/components/input-otp.json +34 -0
  98. package/spec/components/input.json +36 -0
  99. package/spec/components/label.json +24 -0
  100. package/spec/components/link.json +38 -0
  101. package/spec/components/menu.json +67 -0
  102. package/spec/components/navigation-menu.json +74 -0
  103. package/spec/components/pagination.json +41 -0
  104. package/spec/components/popover.json +42 -0
  105. package/spec/components/progress-stepper.json +61 -0
  106. package/spec/components/progress.json +28 -0
  107. package/spec/components/radio.json +43 -0
  108. package/spec/components/resizable.json +34 -0
  109. package/spec/components/scroll-area.json +50 -0
  110. package/spec/components/search-field.json +53 -0
  111. package/spec/components/segmented-control.json +67 -0
  112. package/spec/components/select.json +113 -0
  113. package/spec/components/sidebar.json +45 -0
  114. package/spec/components/skeleton.json +21 -0
  115. package/spec/components/slider.json +43 -0
  116. package/spec/components/spacer.json +16 -0
  117. package/spec/components/spin-button.json +45 -0
  118. package/spec/components/spinner.json +35 -0
  119. package/spec/components/stack.json +16 -0
  120. package/spec/components/stepper.json +62 -0
  121. package/spec/components/switch.json +52 -0
  122. package/spec/components/table.json +17 -0
  123. package/spec/components/tabs.json +77 -0
  124. package/spec/components/tag.json +65 -0
  125. package/spec/components/text.json +16 -0
  126. package/spec/components/textarea.json +22 -0
  127. package/spec/components/toast.json +45 -0
  128. package/spec/components/tooltip.json +31 -0
  129. package/spec/components/tree.json +80 -0
  130. package/spec/manifest.json +686 -0
  131. package/spec/schema/component-spec.schema.json +203 -0
@@ -0,0 +1,3905 @@
1
+ import { SemanticColorName, SemanticTextName, SpacingTokens, BorderRadiusTokens, StrokeWidthTokens, FoundationSizeName } from '@refineui/tokens';
2
+ export { FoundationTypographyName, SEMANTIC_TEXT, SemanticTextName, componentSizeFoundationKeys, componentSizes, foundationSizes } from '@refineui/tokens';
3
+ import { SemanticTextTokenRef } from '@refineui/utilities';
4
+ import * as react from 'react';
5
+ import { CSSProperties, ReactNode, ButtonHTMLAttributes, InputHTMLAttributes, HTMLAttributes, ElementType, TextareaHTMLAttributes, ImgHTMLAttributes, LiHTMLAttributes, OlHTMLAttributes, TableHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, AnchorHTMLAttributes, LabelHTMLAttributes, SVGAttributes } from 'react';
6
+
7
+ /**
8
+ * Component Color Tokens (Web Kit language layer)
9
+ *
10
+ * Primitive (global/colors) -> Semantic (semantic/colors) ->
11
+ * Component Token (this file) -> Component implementation.
12
+ *
13
+ * This file declares token refs only (no raw color strings).
14
+ * `@refineui/utilities` resolves CSS variables.
15
+ */
16
+
17
+ declare const componentColorTokens: {
18
+ readonly webIcon: {
19
+ readonly default: "currentColor";
20
+ readonly primary: Readonly<{
21
+ type: "semantic";
22
+ name: SemanticColorName;
23
+ }>;
24
+ readonly secondary: Readonly<{
25
+ type: "semantic";
26
+ name: SemanticColorName;
27
+ }>;
28
+ readonly disabled: Readonly<{
29
+ type: "semantic";
30
+ name: SemanticColorName;
31
+ }>;
32
+ readonly inversed: Readonly<{
33
+ type: "semantic";
34
+ name: SemanticColorName;
35
+ }>;
36
+ };
37
+ readonly button: {
38
+ readonly primary: {
39
+ readonly hoverBackground: Readonly<{
40
+ type: "semantic";
41
+ name: SemanticColorName;
42
+ }>;
43
+ readonly activeBackground: Readonly<{
44
+ type: "semantic";
45
+ name: SemanticColorName;
46
+ }>;
47
+ readonly disabledBackground: Readonly<{
48
+ type: "semantic";
49
+ name: SemanticColorName;
50
+ }>;
51
+ readonly disabledForeground: Readonly<{
52
+ type: "semantic";
53
+ name: SemanticColorName;
54
+ }>;
55
+ readonly appearance: {
56
+ readonly background: Readonly<{
57
+ type: "semantic";
58
+ name: SemanticColorName;
59
+ }>;
60
+ readonly foreground: Readonly<{
61
+ type: "semantic";
62
+ name: SemanticColorName;
63
+ }>;
64
+ };
65
+ readonly states: {
66
+ readonly hover: {
67
+ readonly background: Readonly<{
68
+ type: "semantic";
69
+ name: SemanticColorName;
70
+ }>;
71
+ };
72
+ readonly pressed: {
73
+ readonly background: Readonly<{
74
+ type: "semantic";
75
+ name: SemanticColorName;
76
+ }>;
77
+ };
78
+ readonly disabled: {
79
+ readonly background: Readonly<{
80
+ type: "semantic";
81
+ name: SemanticColorName;
82
+ }>;
83
+ readonly foreground: Readonly<{
84
+ type: "semantic";
85
+ name: SemanticColorName;
86
+ }>;
87
+ };
88
+ };
89
+ readonly background: Readonly<{
90
+ type: "semantic";
91
+ name: SemanticColorName;
92
+ }>;
93
+ readonly foreground: Readonly<{
94
+ type: "semantic";
95
+ name: SemanticColorName;
96
+ }>;
97
+ };
98
+ readonly secondary: {
99
+ readonly background: Readonly<{
100
+ type: "semantic";
101
+ name: SemanticColorName;
102
+ }>;
103
+ readonly foreground: Readonly<{
104
+ type: "semantic";
105
+ name: SemanticColorName;
106
+ }>;
107
+ readonly border: Readonly<{
108
+ type: "semantic";
109
+ name: SemanticColorName;
110
+ }>;
111
+ readonly hoverBackground: Readonly<{
112
+ type: "semantic";
113
+ name: SemanticColorName;
114
+ }>;
115
+ readonly hoverBorder: Readonly<{
116
+ type: "semantic";
117
+ name: SemanticColorName;
118
+ }>;
119
+ readonly activeBackground: Readonly<{
120
+ type: "semantic";
121
+ name: SemanticColorName;
122
+ }>;
123
+ readonly disabledBackground: Readonly<{
124
+ type: "semantic";
125
+ name: SemanticColorName;
126
+ }>;
127
+ readonly disabledBorder: Readonly<{
128
+ type: "semantic";
129
+ name: SemanticColorName;
130
+ }>;
131
+ readonly disabledForeground: Readonly<{
132
+ type: "semantic";
133
+ name: SemanticColorName;
134
+ }>;
135
+ };
136
+ readonly outline: {
137
+ readonly background: "transparent";
138
+ readonly foreground: Readonly<{
139
+ type: "semantic";
140
+ name: SemanticColorName;
141
+ }>;
142
+ readonly border: Readonly<{
143
+ type: "semantic";
144
+ name: SemanticColorName;
145
+ }>;
146
+ readonly hoverBorder: Readonly<{
147
+ type: "semantic";
148
+ name: SemanticColorName;
149
+ }>;
150
+ readonly activeBorder: Readonly<{
151
+ type: "semantic";
152
+ name: SemanticColorName;
153
+ }>;
154
+ readonly disabledBorder: Readonly<{
155
+ type: "semantic";
156
+ name: SemanticColorName;
157
+ }>;
158
+ readonly disabledForeground: Readonly<{
159
+ type: "semantic";
160
+ name: SemanticColorName;
161
+ }>;
162
+ };
163
+ readonly ghost: {
164
+ readonly background: "transparent";
165
+ readonly foreground: Readonly<{
166
+ type: "semantic";
167
+ name: SemanticColorName;
168
+ }>;
169
+ readonly hoverBackground: Readonly<{
170
+ type: "semantic";
171
+ name: SemanticColorName;
172
+ }>;
173
+ readonly hoverForeground: Readonly<{
174
+ type: "semantic";
175
+ name: SemanticColorName;
176
+ }>;
177
+ readonly activeBackground: Readonly<{
178
+ type: "semantic";
179
+ name: SemanticColorName;
180
+ }>;
181
+ readonly activeForeground: Readonly<{
182
+ type: "semantic";
183
+ name: SemanticColorName;
184
+ }>;
185
+ readonly disabledForeground: Readonly<{
186
+ type: "semantic";
187
+ name: SemanticColorName;
188
+ }>;
189
+ };
190
+ };
191
+ readonly input: {
192
+ readonly text: Readonly<{
193
+ type: "semantic";
194
+ name: SemanticColorName;
195
+ }>;
196
+ readonly placeholder: Readonly<{
197
+ type: "semantic";
198
+ name: SemanticColorName;
199
+ }>;
200
+ readonly background: Readonly<{
201
+ type: "semantic";
202
+ name: SemanticColorName;
203
+ }>;
204
+ readonly disabledBackground: Readonly<{
205
+ type: "semantic";
206
+ name: SemanticColorName;
207
+ }>;
208
+ readonly border: {
209
+ readonly default: Readonly<{
210
+ type: "semantic";
211
+ name: SemanticColorName;
212
+ }>;
213
+ readonly focus: Readonly<{
214
+ type: "semantic";
215
+ name: SemanticColorName;
216
+ }>;
217
+ readonly error: Readonly<{
218
+ type: "semantic";
219
+ name: SemanticColorName;
220
+ }>;
221
+ readonly success: Readonly<{
222
+ type: "semantic";
223
+ name: SemanticColorName;
224
+ }>;
225
+ readonly disabled: Readonly<{
226
+ type: "semantic";
227
+ name: SemanticColorName;
228
+ }>;
229
+ };
230
+ };
231
+ readonly textarea: {
232
+ readonly text: Readonly<{
233
+ type: "semantic";
234
+ name: SemanticColorName;
235
+ }>;
236
+ readonly placeholder: Readonly<{
237
+ type: "semantic";
238
+ name: SemanticColorName;
239
+ }>;
240
+ readonly background: Readonly<{
241
+ type: "semantic";
242
+ name: SemanticColorName;
243
+ }>;
244
+ readonly disabledBackground: Readonly<{
245
+ type: "semantic";
246
+ name: SemanticColorName;
247
+ }>;
248
+ readonly border: {
249
+ readonly default: Readonly<{
250
+ type: "semantic";
251
+ name: SemanticColorName;
252
+ }>;
253
+ readonly focus: Readonly<{
254
+ type: "semantic";
255
+ name: SemanticColorName;
256
+ }>;
257
+ readonly error: Readonly<{
258
+ type: "semantic";
259
+ name: SemanticColorName;
260
+ }>;
261
+ readonly success: Readonly<{
262
+ type: "semantic";
263
+ name: SemanticColorName;
264
+ }>;
265
+ readonly disabled: Readonly<{
266
+ type: "semantic";
267
+ name: SemanticColorName;
268
+ }>;
269
+ };
270
+ };
271
+ readonly pagination: {
272
+ readonly navIcon: {
273
+ readonly default: Readonly<{
274
+ type: "semantic";
275
+ name: SemanticColorName;
276
+ }>;
277
+ readonly disabled: Readonly<{
278
+ type: "semantic";
279
+ name: SemanticColorName;
280
+ }>;
281
+ };
282
+ readonly page: {
283
+ readonly text: Readonly<{
284
+ type: "semantic";
285
+ name: SemanticColorName;
286
+ }>;
287
+ readonly border: Readonly<{
288
+ type: "semantic";
289
+ name: SemanticColorName;
290
+ }>;
291
+ readonly background: Readonly<{
292
+ type: "semantic";
293
+ name: SemanticColorName;
294
+ }>;
295
+ readonly hoverBackground: Readonly<{
296
+ type: "semantic";
297
+ name: SemanticColorName;
298
+ }>;
299
+ readonly hoverBorder: Readonly<{
300
+ type: "semantic";
301
+ name: SemanticColorName;
302
+ }>;
303
+ readonly selectedBackground: Readonly<{
304
+ type: "semantic";
305
+ name: SemanticColorName;
306
+ }>;
307
+ readonly selectedBorder: Readonly<{
308
+ type: "semantic";
309
+ name: SemanticColorName;
310
+ }>;
311
+ readonly disabledBackground: Readonly<{
312
+ type: "semantic";
313
+ name: SemanticColorName;
314
+ }>;
315
+ readonly disabledBorder: Readonly<{
316
+ type: "semantic";
317
+ name: SemanticColorName;
318
+ }>;
319
+ };
320
+ };
321
+ readonly dropdown: {
322
+ readonly trigger: {
323
+ readonly icon: Readonly<{
324
+ type: "semantic";
325
+ name: SemanticColorName;
326
+ }>;
327
+ readonly background: Readonly<{
328
+ type: "semantic";
329
+ name: SemanticColorName;
330
+ }>;
331
+ readonly border: Readonly<{
332
+ type: "semantic";
333
+ name: SemanticColorName;
334
+ }>;
335
+ };
336
+ readonly menu: {
337
+ readonly background: Readonly<{
338
+ type: "semantic";
339
+ name: SemanticColorName;
340
+ }>;
341
+ readonly border: Readonly<{
342
+ type: "semantic";
343
+ name: SemanticColorName;
344
+ }>;
345
+ readonly title: Readonly<{
346
+ type: "semantic";
347
+ name: SemanticColorName;
348
+ }>;
349
+ readonly itemText: Readonly<{
350
+ type: "semantic";
351
+ name: SemanticColorName;
352
+ }>;
353
+ readonly itemTextSubtle: Readonly<{
354
+ type: "semantic";
355
+ name: SemanticColorName;
356
+ }>;
357
+ readonly itemHoverBackground: Readonly<{
358
+ type: "semantic";
359
+ name: SemanticColorName;
360
+ }>;
361
+ readonly itemDisabledText: Readonly<{
362
+ type: "semantic";
363
+ name: SemanticColorName;
364
+ }>;
365
+ };
366
+ };
367
+ readonly select: {
368
+ readonly text: Readonly<{
369
+ type: "semantic";
370
+ name: SemanticColorName;
371
+ }>;
372
+ readonly placeholder: Readonly<{
373
+ type: "semantic";
374
+ name: SemanticColorName;
375
+ }>;
376
+ readonly background: Readonly<{
377
+ type: "semantic";
378
+ name: SemanticColorName;
379
+ }>;
380
+ readonly disabledBackground: Readonly<{
381
+ type: "semantic";
382
+ name: SemanticColorName;
383
+ }>;
384
+ readonly border: {
385
+ readonly default: Readonly<{
386
+ type: "semantic";
387
+ name: SemanticColorName;
388
+ }>;
389
+ readonly disabled: Readonly<{
390
+ type: "semantic";
391
+ name: SemanticColorName;
392
+ }>;
393
+ readonly error: Readonly<{
394
+ type: "semantic";
395
+ name: SemanticColorName;
396
+ }>;
397
+ readonly success: Readonly<{
398
+ type: "semantic";
399
+ name: SemanticColorName;
400
+ }>;
401
+ };
402
+ };
403
+ readonly tooltip: {
404
+ readonly default: {
405
+ readonly background: Readonly<{
406
+ type: "semantic";
407
+ name: SemanticColorName;
408
+ }>;
409
+ readonly foreground: Readonly<{
410
+ type: "semantic";
411
+ name: SemanticColorName;
412
+ }>;
413
+ };
414
+ };
415
+ readonly popover: {
416
+ readonly default: {
417
+ readonly background: Readonly<{
418
+ type: "semantic";
419
+ name: SemanticColorName;
420
+ }>;
421
+ readonly foreground: Readonly<{
422
+ type: "semantic";
423
+ name: SemanticColorName;
424
+ }>;
425
+ readonly border: Readonly<{
426
+ type: "semantic";
427
+ name: SemanticColorName;
428
+ }>;
429
+ };
430
+ readonly inverted: {
431
+ readonly background: Readonly<{
432
+ type: "semantic";
433
+ name: SemanticColorName;
434
+ }>;
435
+ readonly foreground: Readonly<{
436
+ type: "semantic";
437
+ name: SemanticColorName;
438
+ }>;
439
+ readonly border: Readonly<{
440
+ type: "semantic";
441
+ name: SemanticColorName;
442
+ }>;
443
+ };
444
+ };
445
+ readonly field: {
446
+ readonly label: Readonly<{
447
+ type: "semantic";
448
+ name: SemanticColorName;
449
+ }>;
450
+ readonly required: Readonly<{
451
+ type: "semantic";
452
+ name: SemanticColorName;
453
+ }>;
454
+ readonly hint: Readonly<{
455
+ type: "semantic";
456
+ name: SemanticColorName;
457
+ }>;
458
+ readonly error: Readonly<{
459
+ type: "semantic";
460
+ name: SemanticColorName;
461
+ }>;
462
+ };
463
+ readonly label: {
464
+ readonly text: Readonly<{
465
+ type: "semantic";
466
+ name: SemanticColorName;
467
+ }>;
468
+ readonly disabledText: Readonly<{
469
+ type: "semantic";
470
+ name: SemanticColorName;
471
+ }>;
472
+ readonly required: Readonly<{
473
+ type: "semantic";
474
+ name: SemanticColorName;
475
+ }>;
476
+ };
477
+ readonly checkbox: {
478
+ readonly label: {
479
+ readonly default: Readonly<{
480
+ type: "semantic";
481
+ name: SemanticColorName;
482
+ }>;
483
+ readonly description: Readonly<{
484
+ type: "semantic";
485
+ name: SemanticColorName;
486
+ }>;
487
+ readonly disabled: Readonly<{
488
+ type: "semantic";
489
+ name: SemanticColorName;
490
+ }>;
491
+ };
492
+ readonly checkIcon: {
493
+ readonly default: Readonly<{
494
+ type: "semantic";
495
+ name: SemanticColorName;
496
+ }>;
497
+ readonly disabled: Readonly<{
498
+ type: "semantic";
499
+ name: SemanticColorName;
500
+ }>;
501
+ };
502
+ };
503
+ readonly radio: {
504
+ readonly label: {
505
+ readonly default: Readonly<{
506
+ type: "semantic";
507
+ name: SemanticColorName;
508
+ }>;
509
+ readonly description: Readonly<{
510
+ type: "semantic";
511
+ name: SemanticColorName;
512
+ }>;
513
+ readonly disabled: Readonly<{
514
+ type: "semantic";
515
+ name: SemanticColorName;
516
+ }>;
517
+ };
518
+ readonly control: {
519
+ readonly dot: Readonly<{
520
+ type: "semantic";
521
+ name: SemanticColorName;
522
+ }>;
523
+ readonly dotHover: Readonly<{
524
+ type: "semantic";
525
+ name: SemanticColorName;
526
+ }>;
527
+ readonly background: Readonly<{
528
+ type: "semantic";
529
+ name: SemanticColorName;
530
+ }>;
531
+ readonly disabledDot: Readonly<{
532
+ type: "semantic";
533
+ name: SemanticColorName;
534
+ }>;
535
+ readonly borderDefault: Readonly<{
536
+ type: "semantic";
537
+ name: SemanticColorName;
538
+ }>;
539
+ readonly borderFocus: Readonly<{
540
+ type: "semantic";
541
+ name: SemanticColorName;
542
+ }>;
543
+ readonly borderDisabled: Readonly<{
544
+ type: "semantic";
545
+ name: SemanticColorName;
546
+ }>;
547
+ };
548
+ };
549
+ readonly toggle: {
550
+ readonly track: {
551
+ readonly on: Readonly<{
552
+ type: "semantic";
553
+ name: SemanticColorName;
554
+ }>;
555
+ readonly off: Readonly<{
556
+ type: "semantic";
557
+ name: SemanticColorName;
558
+ }>;
559
+ readonly hoverOn: Readonly<{
560
+ type: "semantic";
561
+ name: SemanticColorName;
562
+ }>;
563
+ readonly activeOn: Readonly<{
564
+ type: "semantic";
565
+ name: SemanticColorName;
566
+ }>;
567
+ /** Darken on hover/press (rest is already primaryActive) */
568
+ readonly hoverOff: Readonly<{
569
+ type: "semantic";
570
+ name: SemanticColorName;
571
+ }>;
572
+ readonly activeOff: Readonly<{
573
+ type: "semantic";
574
+ name: SemanticColorName;
575
+ }>;
576
+ readonly disabledOff: Readonly<{
577
+ type: "semantic";
578
+ name: SemanticColorName;
579
+ }>;
580
+ readonly disabledOn: Readonly<{
581
+ type: "semantic";
582
+ name: SemanticColorName;
583
+ }>;
584
+ };
585
+ readonly thumb: {
586
+ readonly default: Readonly<{
587
+ type: "semantic";
588
+ name: SemanticColorName;
589
+ }>;
590
+ readonly disabledOff: Readonly<{
591
+ type: "semantic";
592
+ name: SemanticColorName;
593
+ }>;
594
+ readonly disabledOn: Readonly<{
595
+ type: "semantic";
596
+ name: SemanticColorName;
597
+ }>;
598
+ };
599
+ };
600
+ readonly switch: {
601
+ readonly track: {
602
+ readonly on: Readonly<{
603
+ type: "semantic";
604
+ name: SemanticColorName;
605
+ }>;
606
+ readonly off: Readonly<{
607
+ type: "semantic";
608
+ name: SemanticColorName;
609
+ }>;
610
+ readonly hoverOn: Readonly<{
611
+ type: "semantic";
612
+ name: SemanticColorName;
613
+ }>;
614
+ readonly activeOn: Readonly<{
615
+ type: "semantic";
616
+ name: SemanticColorName;
617
+ }>;
618
+ readonly hoverOff: Readonly<{
619
+ type: "semantic";
620
+ name: SemanticColorName;
621
+ }>;
622
+ readonly activeOff: Readonly<{
623
+ type: "semantic";
624
+ name: SemanticColorName;
625
+ }>;
626
+ readonly disabledOff: Readonly<{
627
+ type: "semantic";
628
+ name: SemanticColorName;
629
+ }>;
630
+ readonly disabledOn: Readonly<{
631
+ type: "semantic";
632
+ name: SemanticColorName;
633
+ }>;
634
+ };
635
+ readonly thumb: {
636
+ readonly default: Readonly<{
637
+ type: "semantic";
638
+ name: SemanticColorName;
639
+ }>;
640
+ readonly disabledOff: Readonly<{
641
+ type: "semantic";
642
+ name: SemanticColorName;
643
+ }>;
644
+ readonly disabledOn: Readonly<{
645
+ type: "semantic";
646
+ name: SemanticColorName;
647
+ }>;
648
+ };
649
+ };
650
+ readonly dialog: {
651
+ readonly overlay: Readonly<{
652
+ type: "semantic";
653
+ name: SemanticColorName;
654
+ }>;
655
+ readonly content: {
656
+ readonly background: Readonly<{
657
+ type: "semantic";
658
+ name: SemanticColorName;
659
+ }>;
660
+ };
661
+ readonly header: {
662
+ readonly foreground: Readonly<{
663
+ type: "semantic";
664
+ name: SemanticColorName;
665
+ }>;
666
+ };
667
+ readonly title: {
668
+ readonly foreground: Readonly<{
669
+ type: "semantic";
670
+ name: SemanticColorName;
671
+ }>;
672
+ };
673
+ readonly description: {
674
+ readonly foreground: Readonly<{
675
+ type: "semantic";
676
+ name: SemanticColorName;
677
+ }>;
678
+ };
679
+ readonly close: {
680
+ readonly icon: "currentColor";
681
+ };
682
+ readonly panel: {
683
+ readonly background: Readonly<{
684
+ type: "semantic";
685
+ name: SemanticColorName;
686
+ }>;
687
+ readonly title: Readonly<{
688
+ type: "semantic";
689
+ name: SemanticColorName;
690
+ }>;
691
+ readonly description: Readonly<{
692
+ type: "semantic";
693
+ name: SemanticColorName;
694
+ }>;
695
+ };
696
+ };
697
+ readonly drawer: {
698
+ readonly overlay: Readonly<{
699
+ type: "semantic";
700
+ name: SemanticColorName;
701
+ }>;
702
+ readonly content: {
703
+ readonly background: Readonly<{
704
+ type: "semantic";
705
+ name: SemanticColorName;
706
+ }>;
707
+ };
708
+ readonly header: {
709
+ readonly foreground: Readonly<{
710
+ type: "semantic";
711
+ name: SemanticColorName;
712
+ }>;
713
+ readonly divider: Readonly<{
714
+ type: "semantic";
715
+ name: SemanticColorName;
716
+ }>;
717
+ };
718
+ readonly title: {
719
+ readonly foreground: Readonly<{
720
+ type: "semantic";
721
+ name: SemanticColorName;
722
+ }>;
723
+ };
724
+ readonly description: {
725
+ readonly foreground: Readonly<{
726
+ type: "semantic";
727
+ name: SemanticColorName;
728
+ }>;
729
+ };
730
+ readonly body: {
731
+ readonly foreground: Readonly<{
732
+ type: "semantic";
733
+ name: SemanticColorName;
734
+ }>;
735
+ readonly divider: Readonly<{
736
+ type: "semantic";
737
+ name: SemanticColorName;
738
+ }>;
739
+ };
740
+ readonly footer: {
741
+ readonly divider: Readonly<{
742
+ type: "semantic";
743
+ name: SemanticColorName;
744
+ }>;
745
+ };
746
+ readonly close: {
747
+ readonly icon: "currentColor";
748
+ };
749
+ readonly panel: {
750
+ readonly background: Readonly<{
751
+ type: "semantic";
752
+ name: SemanticColorName;
753
+ }>;
754
+ readonly title: Readonly<{
755
+ type: "semantic";
756
+ name: SemanticColorName;
757
+ }>;
758
+ readonly description: Readonly<{
759
+ type: "semantic";
760
+ name: SemanticColorName;
761
+ }>;
762
+ readonly divider: Readonly<{
763
+ type: "semantic";
764
+ name: SemanticColorName;
765
+ }>;
766
+ readonly body: Readonly<{
767
+ type: "semantic";
768
+ name: SemanticColorName;
769
+ }>;
770
+ };
771
+ };
772
+ readonly alert: {
773
+ readonly background: Readonly<{
774
+ type: "semantic";
775
+ name: SemanticColorName;
776
+ }>;
777
+ readonly border: Readonly<{
778
+ type: "semantic";
779
+ name: SemanticColorName;
780
+ }>;
781
+ readonly title: Readonly<{
782
+ type: "semantic";
783
+ name: SemanticColorName;
784
+ }>;
785
+ readonly description: {
786
+ readonly default: Readonly<{
787
+ type: "semantic";
788
+ name: SemanticColorName;
789
+ }>;
790
+ readonly info: Readonly<{
791
+ type: "palette";
792
+ name: string;
793
+ }>;
794
+ readonly success: Readonly<{
795
+ type: "palette";
796
+ name: string;
797
+ }>;
798
+ readonly warning: Readonly<{
799
+ type: "palette";
800
+ name: string;
801
+ }>;
802
+ readonly danger: Readonly<{
803
+ type: "palette";
804
+ name: string;
805
+ }>;
806
+ readonly custom: Readonly<{
807
+ type: "palette";
808
+ name: string;
809
+ }>;
810
+ };
811
+ readonly accent: {
812
+ readonly default: Readonly<{
813
+ type: "semantic";
814
+ name: SemanticColorName;
815
+ }>;
816
+ readonly info: Readonly<{
817
+ type: "palette";
818
+ name: string;
819
+ }>;
820
+ readonly success: Readonly<{
821
+ type: "palette";
822
+ name: string;
823
+ }>;
824
+ readonly warning: Readonly<{
825
+ type: "palette";
826
+ name: string;
827
+ }>;
828
+ readonly danger: Readonly<{
829
+ type: "palette";
830
+ name: string;
831
+ }>;
832
+ readonly custom: Readonly<{
833
+ type: "palette";
834
+ name: string;
835
+ }>;
836
+ };
837
+ };
838
+ readonly badge: {
839
+ readonly default: {
840
+ readonly background: Readonly<{
841
+ type: "semantic";
842
+ name: SemanticColorName;
843
+ }>;
844
+ readonly foreground: Readonly<{
845
+ type: "semantic";
846
+ name: SemanticColorName;
847
+ }>;
848
+ };
849
+ readonly neutral: {
850
+ readonly background: Readonly<{
851
+ type: "semantic";
852
+ name: SemanticColorName;
853
+ }>;
854
+ readonly foreground: Readonly<{
855
+ type: "semantic";
856
+ name: SemanticColorName;
857
+ }>;
858
+ };
859
+ readonly outline: {
860
+ readonly background: "transparent";
861
+ readonly foreground: Readonly<{
862
+ type: "semantic";
863
+ name: SemanticColorName;
864
+ }>;
865
+ readonly border: Readonly<{
866
+ type: "semantic";
867
+ name: SemanticColorName;
868
+ }>;
869
+ };
870
+ readonly success: {
871
+ readonly background: Readonly<{
872
+ type: "semantic";
873
+ name: SemanticColorName;
874
+ }>;
875
+ readonly foreground: Readonly<{
876
+ type: "semantic";
877
+ name: SemanticColorName;
878
+ }>;
879
+ };
880
+ readonly warning: {
881
+ readonly background: Readonly<{
882
+ type: "palette";
883
+ name: string;
884
+ }>;
885
+ readonly foreground: Readonly<{
886
+ type: "palette";
887
+ name: string;
888
+ }>;
889
+ };
890
+ readonly danger: {
891
+ readonly background: Readonly<{
892
+ type: "semantic";
893
+ name: SemanticColorName;
894
+ }>;
895
+ readonly foreground: Readonly<{
896
+ type: "semantic";
897
+ name: SemanticColorName;
898
+ }>;
899
+ };
900
+ };
901
+ readonly chip: {
902
+ readonly default: {
903
+ readonly background: Readonly<{
904
+ type: "semantic";
905
+ name: SemanticColorName;
906
+ }>;
907
+ readonly foreground: Readonly<{
908
+ type: "semantic";
909
+ name: SemanticColorName;
910
+ }>;
911
+ readonly hoverBackground: Readonly<{
912
+ type: "semantic";
913
+ name: SemanticColorName;
914
+ }>;
915
+ readonly activeBackground: Readonly<{
916
+ type: "semantic";
917
+ name: SemanticColorName;
918
+ }>;
919
+ readonly disabledBackground: Readonly<{
920
+ type: "semantic";
921
+ name: SemanticColorName;
922
+ }>;
923
+ readonly disabledForeground: Readonly<{
924
+ type: "semantic";
925
+ name: SemanticColorName;
926
+ }>;
927
+ };
928
+ readonly outline: {
929
+ readonly background: "transparent";
930
+ readonly foreground: Readonly<{
931
+ type: "semantic";
932
+ name: SemanticColorName;
933
+ }>;
934
+ readonly border: Readonly<{
935
+ type: "semantic";
936
+ name: SemanticColorName;
937
+ }>;
938
+ readonly hoverBorder: Readonly<{
939
+ type: "semantic";
940
+ name: SemanticColorName;
941
+ }>;
942
+ readonly activeBorder: Readonly<{
943
+ type: "semantic";
944
+ name: SemanticColorName;
945
+ }>;
946
+ readonly disabledBorder: Readonly<{
947
+ type: "semantic";
948
+ name: SemanticColorName;
949
+ }>;
950
+ readonly disabledForeground: Readonly<{
951
+ type: "semantic";
952
+ name: SemanticColorName;
953
+ }>;
954
+ };
955
+ readonly filled: {
956
+ readonly background: Readonly<{
957
+ type: "semantic";
958
+ name: SemanticColorName;
959
+ }>;
960
+ readonly foreground: Readonly<{
961
+ type: "semantic";
962
+ name: SemanticColorName;
963
+ }>;
964
+ readonly hoverBackground: Readonly<{
965
+ type: "semantic";
966
+ name: SemanticColorName;
967
+ }>;
968
+ readonly activeBackground: Readonly<{
969
+ type: "semantic";
970
+ name: SemanticColorName;
971
+ }>;
972
+ readonly disabledBackground: Readonly<{
973
+ type: "semantic";
974
+ name: SemanticColorName;
975
+ }>;
976
+ readonly disabledForeground: Readonly<{
977
+ type: "semantic";
978
+ name: SemanticColorName;
979
+ }>;
980
+ };
981
+ readonly remove: {
982
+ readonly icon: "currentColor";
983
+ };
984
+ };
985
+ readonly tag: {
986
+ readonly default: {
987
+ readonly background: Readonly<{
988
+ type: "semantic";
989
+ name: SemanticColorName;
990
+ }>;
991
+ readonly foreground: Readonly<{
992
+ type: "semantic";
993
+ name: SemanticColorName;
994
+ }>;
995
+ };
996
+ readonly outline: {
997
+ readonly background: "transparent";
998
+ readonly foreground: Readonly<{
999
+ type: "semantic";
1000
+ name: SemanticColorName;
1001
+ }>;
1002
+ readonly border: Readonly<{
1003
+ type: "semantic";
1004
+ name: SemanticColorName;
1005
+ }>;
1006
+ };
1007
+ readonly filled: {
1008
+ readonly background: Readonly<{
1009
+ type: "semantic";
1010
+ name: SemanticColorName;
1011
+ }>;
1012
+ readonly foreground: Readonly<{
1013
+ type: "semantic";
1014
+ name: SemanticColorName;
1015
+ }>;
1016
+ };
1017
+ };
1018
+ readonly progress: {
1019
+ readonly track: Readonly<{
1020
+ type: "semantic";
1021
+ name: SemanticColorName;
1022
+ }>;
1023
+ readonly indicator: {
1024
+ readonly default: Readonly<{
1025
+ type: "semantic";
1026
+ name: SemanticColorName;
1027
+ }>;
1028
+ readonly success: Readonly<{
1029
+ type: "semantic";
1030
+ name: SemanticColorName;
1031
+ }>;
1032
+ readonly warning: Readonly<{
1033
+ type: "semantic";
1034
+ name: SemanticColorName;
1035
+ }>;
1036
+ readonly danger: Readonly<{
1037
+ type: "semantic";
1038
+ name: SemanticColorName;
1039
+ }>;
1040
+ };
1041
+ };
1042
+ readonly chart: {
1043
+ readonly plotBackground: Readonly<{
1044
+ type: "semantic";
1045
+ name: SemanticColorName;
1046
+ }>;
1047
+ readonly grid: Readonly<{
1048
+ type: "semantic";
1049
+ name: SemanticColorName;
1050
+ }>;
1051
+ readonly gridBaseline: Readonly<{
1052
+ type: "semantic";
1053
+ name: SemanticColorName;
1054
+ }>;
1055
+ readonly axis: Readonly<{
1056
+ type: "semantic";
1057
+ name: SemanticColorName;
1058
+ }>;
1059
+ readonly pointStroke: Readonly<{
1060
+ type: "semantic";
1061
+ name: SemanticColorName;
1062
+ }>;
1063
+ readonly cursor: Readonly<{
1064
+ type: "semantic";
1065
+ name: SemanticColorName;
1066
+ }>;
1067
+ readonly tooltip: {
1068
+ readonly background: Readonly<{
1069
+ type: "semantic";
1070
+ name: SemanticColorName;
1071
+ }>;
1072
+ readonly foreground: Readonly<{
1073
+ type: "semantic";
1074
+ name: SemanticColorName;
1075
+ }>;
1076
+ readonly muted: Readonly<{
1077
+ type: "semantic";
1078
+ name: SemanticColorName;
1079
+ }>;
1080
+ readonly border: Readonly<{
1081
+ type: "semantic";
1082
+ name: SemanticColorName;
1083
+ }>;
1084
+ };
1085
+ readonly series: {
1086
+ readonly brand: Readonly<{
1087
+ type: "semantic";
1088
+ name: SemanticColorName;
1089
+ }>;
1090
+ readonly info: Readonly<{
1091
+ type: "semantic";
1092
+ name: SemanticColorName;
1093
+ }>;
1094
+ readonly success: Readonly<{
1095
+ type: "semantic";
1096
+ name: SemanticColorName;
1097
+ }>;
1098
+ readonly warning: Readonly<{
1099
+ type: "semantic";
1100
+ name: SemanticColorName;
1101
+ }>;
1102
+ readonly error: Readonly<{
1103
+ type: "semantic";
1104
+ name: SemanticColorName;
1105
+ }>;
1106
+ readonly discovery: Readonly<{
1107
+ type: "semantic";
1108
+ name: SemanticColorName;
1109
+ }>;
1110
+ };
1111
+ readonly seriesSubtle: {
1112
+ readonly brand: Readonly<{
1113
+ type: "semantic";
1114
+ name: SemanticColorName;
1115
+ }>;
1116
+ readonly info: Readonly<{
1117
+ type: "semantic";
1118
+ name: SemanticColorName;
1119
+ }>;
1120
+ readonly success: Readonly<{
1121
+ type: "semantic";
1122
+ name: SemanticColorName;
1123
+ }>;
1124
+ readonly warning: Readonly<{
1125
+ type: "semantic";
1126
+ name: SemanticColorName;
1127
+ }>;
1128
+ readonly error: Readonly<{
1129
+ type: "semantic";
1130
+ name: SemanticColorName;
1131
+ }>;
1132
+ readonly discovery: Readonly<{
1133
+ type: "semantic";
1134
+ name: SemanticColorName;
1135
+ }>;
1136
+ };
1137
+ };
1138
+ readonly spinner: {
1139
+ readonly track: Readonly<{
1140
+ type: "semantic";
1141
+ name: SemanticColorName;
1142
+ }>;
1143
+ readonly indicator: Readonly<{
1144
+ type: "semantic";
1145
+ name: SemanticColorName;
1146
+ }>;
1147
+ readonly label: Readonly<{
1148
+ type: "semantic";
1149
+ name: SemanticColorName;
1150
+ }>;
1151
+ };
1152
+ readonly skeleton: {
1153
+ readonly background: Readonly<{
1154
+ type: "semantic";
1155
+ name: SemanticColorName;
1156
+ }>;
1157
+ };
1158
+ readonly carousel: {
1159
+ readonly nav: {
1160
+ readonly background: Readonly<{
1161
+ type: "semantic";
1162
+ name: SemanticColorName;
1163
+ }>;
1164
+ readonly border: Readonly<{
1165
+ type: "semantic";
1166
+ name: SemanticColorName;
1167
+ }>;
1168
+ readonly foreground: Readonly<{
1169
+ type: "semantic";
1170
+ name: SemanticColorName;
1171
+ }>;
1172
+ readonly hoverBackground: Readonly<{
1173
+ type: "semantic";
1174
+ name: SemanticColorName;
1175
+ }>;
1176
+ readonly hoverBorder: Readonly<{
1177
+ type: "semantic";
1178
+ name: SemanticColorName;
1179
+ }>;
1180
+ };
1181
+ readonly indicator: {
1182
+ readonly default: Readonly<{
1183
+ type: "semantic";
1184
+ name: SemanticColorName;
1185
+ }>;
1186
+ readonly selected: Readonly<{
1187
+ type: "semantic";
1188
+ name: SemanticColorName;
1189
+ }>;
1190
+ };
1191
+ };
1192
+ readonly scrollArea: {
1193
+ readonly track: {
1194
+ readonly background: Readonly<{
1195
+ type: "semantic";
1196
+ name: SemanticColorName;
1197
+ }>;
1198
+ };
1199
+ readonly thumb: {
1200
+ readonly background: Readonly<{
1201
+ type: "semantic";
1202
+ name: SemanticColorName;
1203
+ }>;
1204
+ readonly hoverBackground: Readonly<{
1205
+ type: "semantic";
1206
+ name: SemanticColorName;
1207
+ }>;
1208
+ };
1209
+ };
1210
+ readonly toast: {
1211
+ readonly background: Readonly<{
1212
+ type: "semantic";
1213
+ name: SemanticColorName;
1214
+ }>;
1215
+ readonly message: Readonly<{
1216
+ type: "semantic";
1217
+ name: SemanticColorName;
1218
+ }>;
1219
+ readonly accent: {
1220
+ readonly default: Readonly<{
1221
+ type: "semantic";
1222
+ name: SemanticColorName;
1223
+ }>;
1224
+ readonly success: Readonly<{
1225
+ type: "semantic";
1226
+ name: SemanticColorName;
1227
+ }>;
1228
+ readonly error: Readonly<{
1229
+ type: "semantic";
1230
+ name: SemanticColorName;
1231
+ }>;
1232
+ readonly warning: Readonly<{
1233
+ type: "semantic";
1234
+ name: SemanticColorName;
1235
+ }>;
1236
+ };
1237
+ };
1238
+ readonly toaster: {
1239
+ readonly stackBackground: "transparent";
1240
+ };
1241
+ readonly tabs: {
1242
+ readonly listLine: Readonly<{
1243
+ type: "semantic";
1244
+ name: SemanticColorName;
1245
+ }>;
1246
+ readonly selectedLine: Readonly<{
1247
+ type: "semantic";
1248
+ name: SemanticColorName;
1249
+ }>;
1250
+ readonly itemForeground: Readonly<{
1251
+ type: "semantic";
1252
+ name: SemanticColorName;
1253
+ }>;
1254
+ readonly selectedForeground: Readonly<{
1255
+ type: "semantic";
1256
+ name: SemanticColorName;
1257
+ }>;
1258
+ readonly hoverForeground: Readonly<{
1259
+ type: "semantic";
1260
+ name: SemanticColorName;
1261
+ }>;
1262
+ readonly itemDisabledForeground: Readonly<{
1263
+ type: "semantic";
1264
+ name: SemanticColorName;
1265
+ }>;
1266
+ };
1267
+ readonly segmentedControl: {
1268
+ readonly barBackground: Readonly<{
1269
+ type: "semantic";
1270
+ name: SemanticColorName;
1271
+ }>;
1272
+ readonly barBorder: Readonly<{
1273
+ type: "semantic";
1274
+ name: SemanticColorName;
1275
+ }>;
1276
+ readonly itemForeground: Readonly<{
1277
+ type: "semantic";
1278
+ name: SemanticColorName;
1279
+ }>;
1280
+ readonly itemDisabledForeground: Readonly<{
1281
+ type: "semantic";
1282
+ name: SemanticColorName;
1283
+ }>;
1284
+ readonly selectedBackground: Readonly<{
1285
+ type: "semantic";
1286
+ name: SemanticColorName;
1287
+ }>;
1288
+ readonly selectedForeground: Readonly<{
1289
+ type: "semantic";
1290
+ name: SemanticColorName;
1291
+ }>;
1292
+ readonly selectedHoverBackground: Readonly<{
1293
+ type: "semantic";
1294
+ name: SemanticColorName;
1295
+ }>;
1296
+ readonly selectedDisabledBackground: Readonly<{
1297
+ type: "semantic";
1298
+ name: SemanticColorName;
1299
+ }>;
1300
+ readonly hoverForeground: Readonly<{
1301
+ type: "semantic";
1302
+ name: SemanticColorName;
1303
+ }>;
1304
+ };
1305
+ readonly accordion: {
1306
+ readonly item: {
1307
+ readonly border: Readonly<{
1308
+ type: "semantic";
1309
+ name: SemanticColorName;
1310
+ }>;
1311
+ };
1312
+ readonly trigger: {
1313
+ readonly background: Readonly<{
1314
+ type: "semantic";
1315
+ name: SemanticColorName;
1316
+ }>;
1317
+ readonly foreground: Readonly<{
1318
+ type: "semantic";
1319
+ name: SemanticColorName;
1320
+ }>;
1321
+ readonly border: Readonly<{
1322
+ type: "semantic";
1323
+ name: SemanticColorName;
1324
+ }>;
1325
+ };
1326
+ readonly content: {
1327
+ readonly background: Readonly<{
1328
+ type: "semantic";
1329
+ name: SemanticColorName;
1330
+ }>;
1331
+ readonly foreground: Readonly<{
1332
+ type: "semantic";
1333
+ name: SemanticColorName;
1334
+ }>;
1335
+ readonly border: Readonly<{
1336
+ type: "semantic";
1337
+ name: SemanticColorName;
1338
+ }>;
1339
+ };
1340
+ };
1341
+ readonly breadcrumb: {
1342
+ readonly list: {
1343
+ readonly foreground: Readonly<{
1344
+ type: "semantic";
1345
+ name: SemanticColorName;
1346
+ }>;
1347
+ };
1348
+ readonly item: Readonly<{
1349
+ type: "semantic";
1350
+ name: SemanticColorName;
1351
+ }>;
1352
+ readonly link: {
1353
+ readonly foreground: Readonly<{
1354
+ type: "semantic";
1355
+ name: SemanticColorName;
1356
+ }>;
1357
+ };
1358
+ readonly page: {
1359
+ readonly foreground: Readonly<{
1360
+ type: "semantic";
1361
+ name: SemanticColorName;
1362
+ }>;
1363
+ };
1364
+ readonly current: Readonly<{
1365
+ type: "semantic";
1366
+ name: SemanticColorName;
1367
+ }>;
1368
+ readonly separatorToken: {
1369
+ readonly foreground: Readonly<{
1370
+ type: "semantic";
1371
+ name: SemanticColorName;
1372
+ }>;
1373
+ };
1374
+ readonly separator: Readonly<{
1375
+ type: "semantic";
1376
+ name: SemanticColorName;
1377
+ }>;
1378
+ readonly ellipsisTrigger: {
1379
+ readonly foreground: Readonly<{
1380
+ type: "semantic";
1381
+ name: SemanticColorName;
1382
+ }>;
1383
+ };
1384
+ readonly ellipsis: Readonly<{
1385
+ type: "semantic";
1386
+ name: SemanticColorName;
1387
+ }>;
1388
+ };
1389
+ readonly menu: {
1390
+ readonly panel: {
1391
+ readonly background: Readonly<{
1392
+ type: "semantic";
1393
+ name: SemanticColorName;
1394
+ }>;
1395
+ readonly border: Readonly<{
1396
+ type: "semantic";
1397
+ name: SemanticColorName;
1398
+ }>;
1399
+ };
1400
+ readonly popover: {
1401
+ readonly background: "transparent";
1402
+ };
1403
+ readonly list: {
1404
+ readonly background: Readonly<{
1405
+ type: "semantic";
1406
+ name: SemanticColorName;
1407
+ }>;
1408
+ readonly border: Readonly<{
1409
+ type: "semantic";
1410
+ name: SemanticColorName;
1411
+ }>;
1412
+ };
1413
+ readonly section: Readonly<{
1414
+ type: "semantic";
1415
+ name: SemanticColorName;
1416
+ }>;
1417
+ readonly sectionToken: {
1418
+ readonly foreground: Readonly<{
1419
+ type: "semantic";
1420
+ name: SemanticColorName;
1421
+ }>;
1422
+ };
1423
+ readonly divider: Readonly<{
1424
+ type: "semantic";
1425
+ name: SemanticColorName;
1426
+ }>;
1427
+ readonly dividerToken: {
1428
+ readonly border: Readonly<{
1429
+ type: "semantic";
1430
+ name: SemanticColorName;
1431
+ }>;
1432
+ };
1433
+ readonly item: {
1434
+ readonly text: Readonly<{
1435
+ type: "semantic";
1436
+ name: SemanticColorName;
1437
+ }>;
1438
+ readonly description: Readonly<{
1439
+ type: "semantic";
1440
+ name: SemanticColorName;
1441
+ }>;
1442
+ readonly disabledText: Readonly<{
1443
+ type: "semantic";
1444
+ name: SemanticColorName;
1445
+ }>;
1446
+ readonly hoverBackground: Readonly<{
1447
+ type: "semantic";
1448
+ name: SemanticColorName;
1449
+ }>;
1450
+ readonly activeBackground: Readonly<{
1451
+ type: "semantic";
1452
+ name: SemanticColorName;
1453
+ }>;
1454
+ readonly pressedBackground: Readonly<{
1455
+ type: "semantic";
1456
+ name: SemanticColorName;
1457
+ }>;
1458
+ readonly disabledBackground: Readonly<{
1459
+ type: "semantic";
1460
+ name: SemanticColorName;
1461
+ }>;
1462
+ };
1463
+ };
1464
+ readonly command: {
1465
+ readonly panel: {
1466
+ readonly background: Readonly<{
1467
+ type: "semantic";
1468
+ name: SemanticColorName;
1469
+ }>;
1470
+ readonly border: Readonly<{
1471
+ type: "semantic";
1472
+ name: SemanticColorName;
1473
+ }>;
1474
+ };
1475
+ readonly input: {
1476
+ readonly foreground: Readonly<{
1477
+ type: "semantic";
1478
+ name: SemanticColorName;
1479
+ }>;
1480
+ readonly placeholder: Readonly<{
1481
+ type: "semantic";
1482
+ name: SemanticColorName;
1483
+ }>;
1484
+ readonly icon: Readonly<{
1485
+ type: "semantic";
1486
+ name: SemanticColorName;
1487
+ }>;
1488
+ };
1489
+ readonly group: Readonly<{
1490
+ type: "semantic";
1491
+ name: SemanticColorName;
1492
+ }>;
1493
+ readonly empty: Readonly<{
1494
+ type: "semantic";
1495
+ name: SemanticColorName;
1496
+ }>;
1497
+ readonly separator: Readonly<{
1498
+ type: "semantic";
1499
+ name: SemanticColorName;
1500
+ }>;
1501
+ readonly item: {
1502
+ readonly text: Readonly<{
1503
+ type: "semantic";
1504
+ name: SemanticColorName;
1505
+ }>;
1506
+ readonly disabledText: Readonly<{
1507
+ type: "semantic";
1508
+ name: SemanticColorName;
1509
+ }>;
1510
+ readonly selectedBackground: Readonly<{
1511
+ type: "semantic";
1512
+ name: SemanticColorName;
1513
+ }>;
1514
+ readonly shortcut: Readonly<{
1515
+ type: "semantic";
1516
+ name: SemanticColorName;
1517
+ }>;
1518
+ };
1519
+ };
1520
+ readonly link: {
1521
+ readonly default: Readonly<{
1522
+ type: "semantic";
1523
+ name: SemanticColorName;
1524
+ }>;
1525
+ readonly hover: Readonly<{
1526
+ type: "semantic";
1527
+ name: SemanticColorName;
1528
+ }>;
1529
+ readonly active: Readonly<{
1530
+ type: "semantic";
1531
+ name: SemanticColorName;
1532
+ }>;
1533
+ readonly visited: Readonly<{
1534
+ type: "semantic";
1535
+ name: SemanticColorName;
1536
+ }>;
1537
+ readonly disabled: Readonly<{
1538
+ type: "semantic";
1539
+ name: SemanticColorName;
1540
+ }>;
1541
+ readonly subtle: {
1542
+ readonly default: Readonly<{
1543
+ type: "semantic";
1544
+ name: SemanticColorName;
1545
+ }>;
1546
+ readonly hover: Readonly<{
1547
+ type: "semantic";
1548
+ name: SemanticColorName;
1549
+ }>;
1550
+ readonly active: Readonly<{
1551
+ type: "semantic";
1552
+ name: SemanticColorName;
1553
+ }>;
1554
+ };
1555
+ };
1556
+ readonly calendar: {
1557
+ readonly background: Readonly<{
1558
+ type: "semantic";
1559
+ name: SemanticColorName;
1560
+ }>;
1561
+ readonly border: Readonly<{
1562
+ type: "semantic";
1563
+ name: SemanticColorName;
1564
+ }>;
1565
+ readonly weekday: Readonly<{
1566
+ type: "semantic";
1567
+ name: SemanticColorName;
1568
+ }>;
1569
+ readonly day: {
1570
+ readonly default: Readonly<{
1571
+ type: "semantic";
1572
+ name: SemanticColorName;
1573
+ }>;
1574
+ readonly otherMonth: Readonly<{
1575
+ type: "semantic";
1576
+ name: SemanticColorName;
1577
+ }>;
1578
+ readonly selectedBackground: Readonly<{
1579
+ type: "semantic";
1580
+ name: SemanticColorName;
1581
+ }>;
1582
+ readonly selectedForeground: Readonly<{
1583
+ type: "semantic";
1584
+ name: SemanticColorName;
1585
+ }>;
1586
+ readonly rangeMiddleBackground: Readonly<{
1587
+ type: "semantic";
1588
+ name: SemanticColorName;
1589
+ }>;
1590
+ readonly rangeMiddleForeground: Readonly<{
1591
+ type: "semantic";
1592
+ name: SemanticColorName;
1593
+ }>;
1594
+ readonly hoverBackground: Readonly<{
1595
+ type: "semantic";
1596
+ name: SemanticColorName;
1597
+ }>;
1598
+ readonly hoverForeground: Readonly<{
1599
+ type: "semantic";
1600
+ name: SemanticColorName;
1601
+ }>;
1602
+ readonly activeBackground: Readonly<{
1603
+ type: "semantic";
1604
+ name: SemanticColorName;
1605
+ }>;
1606
+ readonly activeForeground: Readonly<{
1607
+ type: "semantic";
1608
+ name: SemanticColorName;
1609
+ }>;
1610
+ };
1611
+ };
1612
+ readonly card: {
1613
+ readonly header: {
1614
+ readonly foreground: Readonly<{
1615
+ type: "semantic";
1616
+ name: SemanticColorName;
1617
+ }>;
1618
+ };
1619
+ readonly headerMain: {
1620
+ readonly foreground: Readonly<{
1621
+ type: "semantic";
1622
+ name: SemanticColorName;
1623
+ }>;
1624
+ };
1625
+ readonly content: {
1626
+ readonly foreground: Readonly<{
1627
+ type: "semantic";
1628
+ name: SemanticColorName;
1629
+ }>;
1630
+ };
1631
+ readonly footer: {
1632
+ readonly foreground: Readonly<{
1633
+ type: "semantic";
1634
+ name: SemanticColorName;
1635
+ }>;
1636
+ };
1637
+ readonly action: {
1638
+ readonly foreground: "currentColor";
1639
+ };
1640
+ readonly titleToken: {
1641
+ readonly foreground: Readonly<{
1642
+ type: "semantic";
1643
+ name: SemanticColorName;
1644
+ }>;
1645
+ };
1646
+ readonly descriptionToken: {
1647
+ readonly foreground: Readonly<{
1648
+ type: "semantic";
1649
+ name: SemanticColorName;
1650
+ }>;
1651
+ };
1652
+ readonly elevated: {
1653
+ readonly background: Readonly<{
1654
+ type: "semantic";
1655
+ name: SemanticColorName;
1656
+ }>;
1657
+ };
1658
+ readonly outlined: {
1659
+ readonly background: Readonly<{
1660
+ type: "semantic";
1661
+ name: SemanticColorName;
1662
+ }>;
1663
+ readonly border: Readonly<{
1664
+ type: "semantic";
1665
+ name: SemanticColorName;
1666
+ }>;
1667
+ };
1668
+ readonly title: Readonly<{
1669
+ type: "semantic";
1670
+ name: SemanticColorName;
1671
+ }>;
1672
+ readonly description: Readonly<{
1673
+ type: "semantic";
1674
+ name: SemanticColorName;
1675
+ }>;
1676
+ };
1677
+ readonly divider: {
1678
+ readonly line: Readonly<{
1679
+ type: "semantic";
1680
+ name: SemanticColorName;
1681
+ }>;
1682
+ readonly label: Readonly<{
1683
+ type: "palette";
1684
+ name: string;
1685
+ }>;
1686
+ readonly icon: Readonly<{
1687
+ type: "palette";
1688
+ name: string;
1689
+ }>;
1690
+ };
1691
+ readonly avatar: {
1692
+ readonly image: {
1693
+ readonly background: "transparent";
1694
+ };
1695
+ readonly fallback: {
1696
+ readonly foreground: "currentColor";
1697
+ };
1698
+ readonly badge: {
1699
+ readonly background: "transparent";
1700
+ };
1701
+ readonly avatarIcon: {
1702
+ readonly foreground: "currentColor";
1703
+ };
1704
+ readonly overflow: {
1705
+ readonly background: Readonly<{
1706
+ type: "semantic";
1707
+ name: SemanticColorName;
1708
+ }>;
1709
+ readonly border: Readonly<{
1710
+ type: "semantic";
1711
+ name: SemanticColorName;
1712
+ }>;
1713
+ readonly foreground: Readonly<{
1714
+ type: "semantic";
1715
+ name: SemanticColorName;
1716
+ }>;
1717
+ readonly icon: Readonly<{
1718
+ type: "semantic";
1719
+ name: SemanticColorName;
1720
+ }>;
1721
+ };
1722
+ readonly group: {
1723
+ readonly background: "transparent";
1724
+ };
1725
+ readonly groupCount: {
1726
+ readonly background: Readonly<{
1727
+ type: "semantic";
1728
+ name: SemanticColorName;
1729
+ }>;
1730
+ readonly border: Readonly<{
1731
+ type: "semantic";
1732
+ name: SemanticColorName;
1733
+ }>;
1734
+ readonly foreground: Readonly<{
1735
+ type: "semantic";
1736
+ name: SemanticColorName;
1737
+ }>;
1738
+ };
1739
+ /** Cell fill only — Global tint per MCP `Color`. Glyph/initials ink: `avatar.icon`. */
1740
+ readonly shell: {
1741
+ readonly background: {
1742
+ readonly neutral: Readonly<{
1743
+ type: "palette";
1744
+ name: string;
1745
+ }>;
1746
+ readonly blue: Readonly<{
1747
+ type: "palette";
1748
+ name: string;
1749
+ }>;
1750
+ readonly green: Readonly<{
1751
+ type: "palette";
1752
+ name: string;
1753
+ }>;
1754
+ readonly lime: Readonly<{
1755
+ type: "palette";
1756
+ name: string;
1757
+ }>;
1758
+ readonly magenta: Readonly<{
1759
+ type: "palette";
1760
+ name: string;
1761
+ }>;
1762
+ readonly orange: Readonly<{
1763
+ type: "palette";
1764
+ name: string;
1765
+ }>;
1766
+ readonly purple: Readonly<{
1767
+ type: "palette";
1768
+ name: string;
1769
+ }>;
1770
+ readonly red: Readonly<{
1771
+ type: "palette";
1772
+ name: string;
1773
+ }>;
1774
+ readonly teal: Readonly<{
1775
+ type: "palette";
1776
+ name: string;
1777
+ }>;
1778
+ readonly yellow: Readonly<{
1779
+ type: "palette";
1780
+ name: string;
1781
+ }>;
1782
+ };
1783
+ };
1784
+ readonly icon: {
1785
+ readonly neutral: Readonly<{
1786
+ type: "palette";
1787
+ name: string;
1788
+ }>;
1789
+ readonly blue: Readonly<{
1790
+ type: "palette";
1791
+ name: string;
1792
+ }>;
1793
+ readonly green: Readonly<{
1794
+ type: "palette";
1795
+ name: string;
1796
+ }>;
1797
+ readonly lime: Readonly<{
1798
+ type: "palette";
1799
+ name: string;
1800
+ }>;
1801
+ readonly magenta: Readonly<{
1802
+ type: "palette";
1803
+ name: string;
1804
+ }>;
1805
+ readonly orange: Readonly<{
1806
+ type: "palette";
1807
+ name: string;
1808
+ }>;
1809
+ readonly purple: Readonly<{
1810
+ type: "palette";
1811
+ name: string;
1812
+ }>;
1813
+ readonly red: Readonly<{
1814
+ type: "palette";
1815
+ name: string;
1816
+ }>;
1817
+ readonly teal: Readonly<{
1818
+ type: "palette";
1819
+ name: string;
1820
+ }>;
1821
+ readonly yellow: Readonly<{
1822
+ type: "palette";
1823
+ name: string;
1824
+ }>;
1825
+ };
1826
+ readonly status: {
1827
+ readonly online: Readonly<{
1828
+ type: "palette";
1829
+ name: string;
1830
+ }>;
1831
+ readonly away: Readonly<{
1832
+ type: "palette";
1833
+ name: string;
1834
+ }>;
1835
+ readonly unavailable: {
1836
+ readonly background: Readonly<{
1837
+ type: "palette";
1838
+ name: string;
1839
+ }>;
1840
+ readonly mark: Readonly<{
1841
+ type: "palette";
1842
+ name: string;
1843
+ }>;
1844
+ };
1845
+ readonly offline: Readonly<{
1846
+ type: "palette";
1847
+ name: string;
1848
+ }>;
1849
+ };
1850
+ };
1851
+ readonly avatars: {
1852
+ readonly stack: {
1853
+ readonly background: "transparent";
1854
+ };
1855
+ readonly spread: {
1856
+ readonly background: "transparent";
1857
+ };
1858
+ readonly count: {
1859
+ readonly background: Readonly<{
1860
+ type: "semantic";
1861
+ name: SemanticColorName;
1862
+ }>;
1863
+ readonly border: Readonly<{
1864
+ type: "semantic";
1865
+ name: SemanticColorName;
1866
+ }>;
1867
+ readonly foreground: Readonly<{
1868
+ type: "semantic";
1869
+ name: SemanticColorName;
1870
+ }>;
1871
+ };
1872
+ };
1873
+ };
1874
+
1875
+ type ControlSize = "sm" | "md" | "lg";
1876
+ declare const componentTypographyTokens: {
1877
+ readonly formControl: {
1878
+ readonly sm: Readonly<{
1879
+ type: "semantic-text";
1880
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1881
+ }>;
1882
+ readonly md: Readonly<{
1883
+ type: "semantic-text";
1884
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1885
+ }>;
1886
+ readonly lg: Readonly<{
1887
+ type: "semantic-text";
1888
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1889
+ }>;
1890
+ };
1891
+ readonly label: {
1892
+ readonly sm: Readonly<{
1893
+ type: "semantic-text";
1894
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1895
+ }>;
1896
+ readonly md: Readonly<{
1897
+ type: "semantic-text";
1898
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1899
+ }>;
1900
+ readonly lg: Readonly<{
1901
+ type: "semantic-text";
1902
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1903
+ }>;
1904
+ };
1905
+ readonly labelCompanion: {
1906
+ readonly label: Readonly<{
1907
+ type: "semantic-text";
1908
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1909
+ }>;
1910
+ readonly description: Readonly<{
1911
+ type: "semantic-text";
1912
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1913
+ }>;
1914
+ };
1915
+ readonly fieldFeedback: Readonly<{
1916
+ type: "semantic-text";
1917
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1918
+ }>;
1919
+ /** Trigger = size + medium weight; content = one step smaller / lighter for readable hierarchy */
1920
+ readonly accordion: {
1921
+ readonly trigger: {
1922
+ readonly sm: Readonly<{
1923
+ type: "semantic-text";
1924
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1925
+ }>;
1926
+ readonly md: Readonly<{
1927
+ type: "semantic-text";
1928
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1929
+ }>;
1930
+ readonly lg: Readonly<{
1931
+ type: "semantic-text";
1932
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1933
+ }>;
1934
+ };
1935
+ readonly content: {
1936
+ readonly sm: Readonly<{
1937
+ type: "semantic-text";
1938
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1939
+ }>;
1940
+ readonly md: Readonly<{
1941
+ type: "semantic-text";
1942
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1943
+ }>;
1944
+ readonly lg: Readonly<{
1945
+ type: "semantic-text";
1946
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1947
+ }>;
1948
+ };
1949
+ };
1950
+ readonly button: {
1951
+ readonly sm: Readonly<{
1952
+ type: "semantic-text";
1953
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1954
+ }>;
1955
+ readonly md: Readonly<{
1956
+ type: "semantic-text";
1957
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1958
+ }>;
1959
+ readonly lg: Readonly<{
1960
+ type: "semantic-text";
1961
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1962
+ }>;
1963
+ };
1964
+ readonly link: Readonly<{
1965
+ type: "semantic-text";
1966
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1967
+ }>;
1968
+ readonly breadcrumb: {
1969
+ readonly row: Readonly<{
1970
+ type: "semantic-text";
1971
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1972
+ }>;
1973
+ };
1974
+ /** Top navigation — trigger denser like segmented control; content links match menu rows. */
1975
+ readonly navigationMenu: {
1976
+ readonly trigger: Readonly<{
1977
+ type: "semantic-text";
1978
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1979
+ }>;
1980
+ readonly link: Readonly<{
1981
+ type: "semantic-text";
1982
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1983
+ }>;
1984
+ readonly contentLink: Readonly<{
1985
+ type: "semantic-text";
1986
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1987
+ }>;
1988
+ };
1989
+ /** Site footer — sitemap body; locale trigger uses Button sm typography. */
1990
+ readonly footer: {
1991
+ readonly brandName: Readonly<{
1992
+ type: "semantic-text";
1993
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1994
+ }>;
1995
+ readonly brandDescription: Readonly<{
1996
+ type: "semantic-text";
1997
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
1998
+ }>;
1999
+ readonly groupLabel: Readonly<{
2000
+ type: "semantic-text";
2001
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2002
+ }>;
2003
+ readonly link: Readonly<{
2004
+ type: "semantic-text";
2005
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2006
+ }>;
2007
+ readonly copyright: Readonly<{
2008
+ type: "semantic-text";
2009
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2010
+ }>;
2011
+ };
2012
+ /** App sidebar — group labels match menu sections; links match menu rows. */
2013
+ readonly sidebar: {
2014
+ readonly brand: Readonly<{
2015
+ type: "semantic-text";
2016
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2017
+ }>;
2018
+ readonly groupLabel: Readonly<{
2019
+ type: "semantic-text";
2020
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2021
+ }>;
2022
+ readonly link: Readonly<{
2023
+ type: "semantic-text";
2024
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2025
+ }>;
2026
+ };
2027
+ readonly menu: {
2028
+ readonly section: Readonly<{
2029
+ type: "semantic-text";
2030
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2031
+ }>;
2032
+ readonly item: Readonly<{
2033
+ type: "semantic-text";
2034
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2035
+ }>;
2036
+ readonly description: Readonly<{
2037
+ type: "semantic-text";
2038
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2039
+ }>;
2040
+ readonly shortcut: Readonly<{
2041
+ type: "semantic-text";
2042
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2043
+ }>;
2044
+ };
2045
+ /** Command palette — same scale as Menu (list / section / shortcut). */
2046
+ readonly command: {
2047
+ readonly group: Readonly<{
2048
+ type: "semantic-text";
2049
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2050
+ }>;
2051
+ readonly item: Readonly<{
2052
+ type: "semantic-text";
2053
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2054
+ }>;
2055
+ readonly empty: Readonly<{
2056
+ type: "semantic-text";
2057
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2058
+ }>;
2059
+ readonly shortcut: Readonly<{
2060
+ type: "semantic-text";
2061
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2062
+ }>;
2063
+ readonly input: Readonly<{
2064
+ type: "semantic-text";
2065
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2066
+ }>;
2067
+ };
2068
+ readonly dropdown: {
2069
+ readonly label: Readonly<{
2070
+ type: "semantic-text";
2071
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2072
+ }>;
2073
+ readonly item: Readonly<{
2074
+ type: "semantic-text";
2075
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2076
+ }>;
2077
+ readonly shortcut: Readonly<{
2078
+ type: "semantic-text";
2079
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2080
+ }>;
2081
+ };
2082
+ readonly dialog: {
2083
+ readonly title: Readonly<{
2084
+ type: "semantic-text";
2085
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2086
+ }>;
2087
+ readonly description: Readonly<{
2088
+ type: "semantic-text";
2089
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2090
+ }>;
2091
+ };
2092
+ readonly drawer: {
2093
+ readonly title: Readonly<{
2094
+ type: "semantic-text";
2095
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2096
+ }>;
2097
+ readonly description: Readonly<{
2098
+ type: "semantic-text";
2099
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2100
+ }>;
2101
+ readonly body: Readonly<{
2102
+ type: "semantic-text";
2103
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2104
+ }>;
2105
+ };
2106
+ readonly card: {
2107
+ readonly title: Readonly<{
2108
+ type: "semantic-text";
2109
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2110
+ }>;
2111
+ readonly description: Readonly<{
2112
+ type: "semantic-text";
2113
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2114
+ }>;
2115
+ };
2116
+ readonly alert: {
2117
+ readonly title: Readonly<{
2118
+ type: "semantic-text";
2119
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2120
+ }>;
2121
+ readonly description: Readonly<{
2122
+ type: "semantic-text";
2123
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2124
+ }>;
2125
+ };
2126
+ readonly bubble: Readonly<{
2127
+ type: "semantic-text";
2128
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2129
+ }>;
2130
+ /** Digits use title scale — applied via `refineui.css` `[data-refineui="input-otp"][data-size]`. */
2131
+ readonly inputOtp: {
2132
+ readonly sm: Readonly<{
2133
+ type: "semantic-text";
2134
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2135
+ }>;
2136
+ readonly md: Readonly<{
2137
+ type: "semantic-text";
2138
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2139
+ }>;
2140
+ readonly lg: Readonly<{
2141
+ type: "semantic-text";
2142
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2143
+ }>;
2144
+ };
2145
+ readonly stepper: {
2146
+ readonly indicator: Readonly<{
2147
+ type: "semantic-text";
2148
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2149
+ }>;
2150
+ readonly title: Readonly<{
2151
+ type: "semantic-text";
2152
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2153
+ }>;
2154
+ readonly description: Readonly<{
2155
+ type: "semantic-text";
2156
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2157
+ }>;
2158
+ };
2159
+ readonly progressStepper: {
2160
+ readonly marker: Readonly<{
2161
+ type: "semantic-text";
2162
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2163
+ }>;
2164
+ readonly label: Readonly<{
2165
+ type: "semantic-text";
2166
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2167
+ }>;
2168
+ };
2169
+ readonly toast: {
2170
+ readonly message: Readonly<{
2171
+ type: "semantic-text";
2172
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2173
+ }>;
2174
+ };
2175
+ /** Hierarchical tree — density matches sidebar / menu rows. */
2176
+ readonly tree: {
2177
+ readonly item: {
2178
+ readonly sm: Readonly<{
2179
+ type: "semantic-text";
2180
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2181
+ }>;
2182
+ readonly md: Readonly<{
2183
+ type: "semantic-text";
2184
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2185
+ }>;
2186
+ readonly lg: Readonly<{
2187
+ type: "semantic-text";
2188
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2189
+ }>;
2190
+ };
2191
+ };
2192
+ readonly pagination: Readonly<{
2193
+ type: "semantic-text";
2194
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2195
+ }>;
2196
+ readonly chip: {
2197
+ readonly sm: Readonly<{
2198
+ type: "semantic-text";
2199
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2200
+ }>;
2201
+ readonly md: Readonly<{
2202
+ type: "semantic-text";
2203
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2204
+ }>;
2205
+ readonly lg: Readonly<{
2206
+ type: "semantic-text";
2207
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2208
+ }>;
2209
+ };
2210
+ readonly badge: Readonly<{
2211
+ type: "semantic-text";
2212
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2213
+ }>;
2214
+ readonly segmentedControl: Readonly<{
2215
+ type: "semantic-text";
2216
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2217
+ }>;
2218
+ readonly tabs: Readonly<{
2219
+ type: "semantic-text";
2220
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2221
+ }>;
2222
+ readonly table: {
2223
+ readonly head: Readonly<{
2224
+ type: "semantic-text";
2225
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2226
+ }>;
2227
+ readonly cell: Readonly<{
2228
+ type: "semantic-text";
2229
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2230
+ }>;
2231
+ readonly caption: Readonly<{
2232
+ type: "semantic-text";
2233
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2234
+ }>;
2235
+ };
2236
+ readonly tooltip: Readonly<{
2237
+ type: "semantic-text";
2238
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2239
+ }>;
2240
+ readonly textarea: Readonly<{
2241
+ type: "semantic-text";
2242
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2243
+ }>;
2244
+ readonly select: {
2245
+ /** Trigger density matches Navigation Menu (`captionLg` at md). */
2246
+ readonly trigger: {
2247
+ readonly sm: Readonly<{
2248
+ type: "semantic-text";
2249
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2250
+ }>;
2251
+ readonly md: Readonly<{
2252
+ type: "semantic-text";
2253
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2254
+ }>;
2255
+ readonly lg: Readonly<{
2256
+ type: "semantic-text";
2257
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2258
+ }>;
2259
+ };
2260
+ readonly label: Readonly<{
2261
+ type: "semantic-text";
2262
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2263
+ }>;
2264
+ readonly item: Readonly<{
2265
+ type: "semantic-text";
2266
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2267
+ }>;
2268
+ };
2269
+ readonly calendar: {
2270
+ readonly day: Readonly<{
2271
+ type: "semantic-text";
2272
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2273
+ }>;
2274
+ readonly weekday: Readonly<{
2275
+ type: "semantic-text";
2276
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2277
+ }>;
2278
+ };
2279
+ readonly divider: {
2280
+ readonly contentLabel: Readonly<{
2281
+ type: "semantic-text";
2282
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2283
+ }>;
2284
+ };
2285
+ readonly chart: {
2286
+ readonly axisLabel: Readonly<{
2287
+ type: "semantic-text";
2288
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2289
+ }>;
2290
+ readonly legendLabel: Readonly<{
2291
+ type: "semantic-text";
2292
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2293
+ }>;
2294
+ readonly tooltipLabel: Readonly<{
2295
+ type: "semantic-text";
2296
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2297
+ }>;
2298
+ readonly tooltipValue: Readonly<{
2299
+ type: "semantic-text";
2300
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2301
+ }>;
2302
+ };
2303
+ readonly spinner: {
2304
+ readonly xs: Readonly<{
2305
+ type: "semantic-text";
2306
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2307
+ }>;
2308
+ readonly sm: Readonly<{
2309
+ type: "semantic-text";
2310
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2311
+ }>;
2312
+ readonly md: Readonly<{
2313
+ type: "semantic-text";
2314
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2315
+ }>;
2316
+ readonly lg: Readonly<{
2317
+ type: "semantic-text";
2318
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2319
+ }>;
2320
+ readonly xl: Readonly<{
2321
+ type: "semantic-text";
2322
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2323
+ }>;
2324
+ readonly xxl: Readonly<{
2325
+ type: "semantic-text";
2326
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2327
+ }>;
2328
+ };
2329
+ readonly avatar: {
2330
+ readonly initialsNeutral: {
2331
+ readonly xxxsmall: Readonly<{
2332
+ type: "semantic-text";
2333
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2334
+ }>;
2335
+ readonly xxsmall: Readonly<{
2336
+ type: "semantic-text";
2337
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2338
+ }>;
2339
+ readonly xsmall: Readonly<{
2340
+ type: "semantic-text";
2341
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2342
+ }>;
2343
+ readonly small: Readonly<{
2344
+ type: "semantic-text";
2345
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2346
+ }>;
2347
+ readonly medium: Readonly<{
2348
+ type: "semantic-text";
2349
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2350
+ }>;
2351
+ readonly large: Readonly<{
2352
+ type: "semantic-text";
2353
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2354
+ }>;
2355
+ readonly xlarge: Readonly<{
2356
+ type: "semantic-text";
2357
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2358
+ }>;
2359
+ readonly xxlarge: Readonly<{
2360
+ type: "semantic-text";
2361
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2362
+ }>;
2363
+ readonly xxxlarge: Readonly<{
2364
+ type: "semantic-text";
2365
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2366
+ }>;
2367
+ };
2368
+ readonly initialsAccent: {
2369
+ readonly xxxlarge: Readonly<{
2370
+ type: "semantic-text";
2371
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2372
+ }>;
2373
+ readonly xxlarge: Readonly<{
2374
+ type: "semantic-text";
2375
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2376
+ }>;
2377
+ readonly xlarge: Readonly<{
2378
+ type: "semantic-text";
2379
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2380
+ }>;
2381
+ readonly default: Readonly<{
2382
+ type: "semantic-text";
2383
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2384
+ }>;
2385
+ };
2386
+ readonly groupCount: {
2387
+ readonly xxxsmall: Readonly<{
2388
+ type: "semantic-text";
2389
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2390
+ }>;
2391
+ readonly xxsmall: Readonly<{
2392
+ type: "semantic-text";
2393
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2394
+ }>;
2395
+ readonly xsmall: Readonly<{
2396
+ type: "semantic-text";
2397
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2398
+ }>;
2399
+ readonly small: Readonly<{
2400
+ type: "semantic-text";
2401
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2402
+ }>;
2403
+ readonly medium: Readonly<{
2404
+ type: "semantic-text";
2405
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2406
+ }>;
2407
+ readonly large: Readonly<{
2408
+ type: "semantic-text";
2409
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2410
+ }>;
2411
+ readonly xlarge: Readonly<{
2412
+ type: "semantic-text";
2413
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2414
+ }>;
2415
+ readonly xxlarge: Readonly<{
2416
+ type: "semantic-text";
2417
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2418
+ }>;
2419
+ readonly xxxlarge: Readonly<{
2420
+ type: "semantic-text";
2421
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2422
+ }>;
2423
+ };
2424
+ };
2425
+ };
2426
+
2427
+ /** Resolve a semantic text role → `refineui-typo-*` utility class. */
2428
+ declare function semanticTextClass(name: SemanticTextName): string;
2429
+ /** Resolve a component typography token ref → utility class. */
2430
+ declare function componentTextClass(ref: SemanticTextTokenRef<SemanticTextName>): string;
2431
+ /** Size-keyed component token map → utility class (`formControl`, `label`, …). */
2432
+ declare function sizedComponentTextClass<TSize extends string>(map: Record<TSize, SemanticTextTokenRef<SemanticTextName>>, size: TSize): string;
2433
+
2434
+ interface WebIconProps {
2435
+ name: string;
2436
+ size?: number;
2437
+ color?: string;
2438
+ /** RefineUI System Icons style (default: regular) */
2439
+ iconStyle?: "regular" | "filled";
2440
+ className?: string;
2441
+ style?: CSSProperties;
2442
+ /** Shown when the glyph is missing */
2443
+ fallback?: ReactNode;
2444
+ /** Accessibility: omit label → aria-hidden */
2445
+ "aria-label"?: string;
2446
+ }
2447
+ /** Glyph from @refineui/web-icons — size/color stay inline on the glyph */
2448
+ declare function WebIcon({ name, size, color, iconStyle, className, style, fallback, "aria-label": ariaLabel, }: WebIconProps): react.JSX.Element;
2449
+
2450
+ /** Web Kit `Button` `79:3304` — Style: Primary · Secondary · Outline · Ghost */
2451
+ type ButtonVariant = "primary" | "secondary" | "outline" | "ghost";
2452
+ /** Web Kit Size — Small / Medium / Large */
2453
+ type ButtonSize = "sm" | "md" | "lg";
2454
+ /** Web Kit Layout — Label / Icon-only (MCP `Layout=Icon`). */
2455
+ type ButtonLayout = "label" | "icon";
2456
+ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
2457
+ variant?: ButtonVariant;
2458
+ size?: ButtonSize;
2459
+ layout?: ButtonLayout;
2460
+ fullWidth?: boolean;
2461
+ }
2462
+
2463
+ declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
2464
+
2465
+ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
2466
+ error?: boolean;
2467
+ success?: boolean;
2468
+ fullWidth?: boolean;
2469
+ size?: "sm" | "md" | "lg";
2470
+ }
2471
+
2472
+ declare function Input({ error, success, fullWidth, size: sizeProp, disabled, className, ...props }: InputProps): react.JSX.Element;
2473
+
2474
+ /** Shared sm / md / lg tiers for Input, SpinButton — keep in sync. */
2475
+
2476
+ type FormControlSize = ControlSize;
2477
+
2478
+ type InputOTPSize = FormControlSize;
2479
+ interface InputOTPProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
2480
+ /** Controlled OTP string. */
2481
+ value?: string;
2482
+ /** Uncontrolled initial value. */
2483
+ defaultValue?: string;
2484
+ onValueChange?: (value: string) => void;
2485
+ /** Number of slots (must match rendered `InputOTPSlot` indices). */
2486
+ maxLength: number;
2487
+ size?: InputOTPSize;
2488
+ disabled?: boolean;
2489
+ /**
2490
+ * Per-character allowlist. Default: digits only (`/\d/`).
2491
+ * Characters that fail the test are dropped.
2492
+ */
2493
+ pattern?: RegExp;
2494
+ autoFocus?: boolean;
2495
+ name?: string;
2496
+ id?: string;
2497
+ inputMode?: InputHTMLAttributes<HTMLInputElement>["inputMode"];
2498
+ autoComplete?: InputHTMLAttributes<HTMLInputElement>["autoComplete"];
2499
+ /** Accessible name for the control. */
2500
+ "aria-label"?: string;
2501
+ }
2502
+ interface InputOTPSlotProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "defaultValue" | "maxLength" | "disabled" | "type" | "children"> {
2503
+ /** Zero-based slot index. */
2504
+ index: number;
2505
+ }
2506
+
2507
+ declare function InputOTP({ value: valueProp, defaultValue, onValueChange, maxLength, size: sizeProp, disabled, pattern, autoFocus, name, id, inputMode, autoComplete, className, children, "aria-label": ariaLabel, ...props }: InputOTPProps): react.JSX.Element;
2508
+ declare function InputOTPSlot({ index, className, onChange, onKeyDown, onPaste, onFocus, ...props }: InputOTPSlotProps): react.JSX.Element;
2509
+
2510
+ interface SearchFieldProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
2511
+ /** Controlled query */
2512
+ value?: string;
2513
+ /** Uncontrolled initial query */
2514
+ defaultValue?: string;
2515
+ onValueChange?: (value: string) => void;
2516
+ disabled?: boolean;
2517
+ /**
2518
+ * `filled` — standalone control (sunken surface).
2519
+ * `plain` — flush row for composed surfaces like Command.
2520
+ * @default "filled"
2521
+ */
2522
+ appearance?: "filled" | "plain";
2523
+ /** Forwarded to the inner input. */
2524
+ id?: string;
2525
+ /** Accessible name for the search input. */
2526
+ "aria-label"?: string;
2527
+ }
2528
+ type SearchFieldIconProps = HTMLAttributes<HTMLSpanElement> & {
2529
+ /** Defaults to the search glyph */
2530
+ children?: ReactNode;
2531
+ };
2532
+ type SearchFieldInputProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "value" | "defaultValue" | "disabled">;
2533
+ type SearchFieldClearProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, "type"> & {
2534
+ /** Defaults to the dismiss glyph */
2535
+ children?: ReactNode;
2536
+ };
2537
+
2538
+ declare function SearchField({ value, defaultValue, onValueChange, disabled, appearance, className, children, id, onPointerDown, "aria-label": ariaLabel, ...props }: SearchFieldProps): react.JSX.Element;
2539
+ declare function SearchFieldIcon({ children, className, ...props }: SearchFieldIconProps): react.JSX.Element;
2540
+ declare const SearchFieldInput: react.ForwardRefExoticComponent<SearchFieldInputProps & react.RefAttributes<HTMLInputElement>>;
2541
+ declare function SearchFieldClear({ className, children, disabled: disabledProp, onClick, "aria-label": ariaLabel, ...props }: SearchFieldClearProps): react.JSX.Element | null;
2542
+
2543
+ interface TextProps extends HTMLAttributes<HTMLElement> {
2544
+ /** Semantic text role — maps to Foundation typography via `SEMANTIC_TEXT`. */
2545
+ variant: SemanticTextName;
2546
+ /** Root element. Default `span`. */
2547
+ as?: ElementType;
2548
+ }
2549
+ /** Semantic typography primitive — Polaris `Text` / M3 typescale consumer. */
2550
+ declare function Text({ variant, as: Component, className, ...props }: TextProps): react.JSX.Element;
2551
+
2552
+ interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
2553
+ error?: boolean;
2554
+ success?: boolean;
2555
+ fullWidth?: boolean;
2556
+ }
2557
+
2558
+ declare function Textarea({ error, success, fullWidth, disabled, className, ...props }: TextareaProps): react.JSX.Element;
2559
+
2560
+ type BadgeVariant = "default" | "neutral" | "outline" | "success" | "warning" | "danger";
2561
+ type BadgeLayout = "label" | "number";
2562
+ interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
2563
+ variant?: BadgeVariant;
2564
+ layout?: BadgeLayout;
2565
+ }
2566
+
2567
+ declare function Badge({ variant, layout, className, ...props }: BadgeProps): react.JSX.Element;
2568
+
2569
+ interface CardProps extends HTMLAttributes<HTMLDivElement> {
2570
+ variant?: "elevated" | "outlined";
2571
+ interactive?: boolean;
2572
+ state?: "default" | "hover" | "pressed" | "disabled";
2573
+ }
2574
+ declare function Card({ variant, interactive, state, className, ...props }: CardProps): react.JSX.Element;
2575
+
2576
+ declare function CardHeaderMain({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
2577
+
2578
+ declare function CardHeader({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
2579
+
2580
+ declare function CardTitle({ className, ...props }: HTMLAttributes<HTMLHeadingElement>): react.JSX.Element;
2581
+
2582
+ declare function CardDescription({ className, ...props }: HTMLAttributes<HTMLParagraphElement>): react.JSX.Element;
2583
+
2584
+ declare function CardAction({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
2585
+
2586
+ declare function CardContent({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
2587
+
2588
+ declare function CardFooter({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
2589
+
2590
+ interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
2591
+ description?: string;
2592
+ label?: string;
2593
+ variant?: "default" | "circular";
2594
+ }
2595
+
2596
+ declare function Checkbox({ label, description, variant, id, className, disabled, checked: checkedProp, defaultChecked, onChange, ...props }: CheckboxProps): react.JSX.Element;
2597
+
2598
+ interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
2599
+ label?: string;
2600
+ description?: string;
2601
+ allowUncheck?: boolean;
2602
+ }
2603
+ interface RadioInputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
2604
+ }
2605
+
2606
+ declare function Radio({ label, description, id, className, disabled, allowUncheck, onClick, ...props }: RadioProps): react.JSX.Element;
2607
+
2608
+ declare const RadioInput: react.ForwardRefExoticComponent<RadioInputProps & react.RefAttributes<HTMLInputElement>>;
2609
+
2610
+ type SelectSize = "sm" | "md" | "lg";
2611
+ /**
2612
+ * `filled` — standalone field chrome (border + surface).
2613
+ * `plain` — flush trigger for composed surfaces (Footer locale, Calendar caption).
2614
+ */
2615
+ type SelectTriggerAppearance = "filled" | "plain";
2616
+ interface SelectProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
2617
+ value?: string;
2618
+ defaultValue?: string;
2619
+ open?: boolean;
2620
+ onOpenChange?: (open: boolean) => void;
2621
+ onValueChange?: (value: string) => void;
2622
+ placeholder?: string;
2623
+ size?: SelectSize;
2624
+ fullWidth?: boolean;
2625
+ disabled?: boolean;
2626
+ children?: ReactNode;
2627
+ }
2628
+ interface SelectTriggerProps extends HTMLAttributes<HTMLButtonElement> {
2629
+ children?: ReactNode;
2630
+ /**
2631
+ * `filled` — default field chrome.
2632
+ * `plain` — no field chrome; compose visuals via `className` / parent recipe.
2633
+ * @default "filled"
2634
+ */
2635
+ appearance?: SelectTriggerAppearance;
2636
+ }
2637
+ interface SelectValueProps extends HTMLAttributes<HTMLSpanElement> {
2638
+ placeholder?: string;
2639
+ }
2640
+ interface SelectIconProps extends HTMLAttributes<HTMLSpanElement> {
2641
+ children?: ReactNode;
2642
+ }
2643
+ interface SelectContentProps extends HTMLAttributes<HTMLDivElement> {
2644
+ children?: ReactNode;
2645
+ /** Default `item-aligned`. `popper`: compact panel below/above trigger */
2646
+ position?: "item-aligned" | "popper";
2647
+ /** Portal target when set (else nearest `SelectPortal` or `document.body`) */
2648
+ container?: HTMLElement | null;
2649
+ }
2650
+ interface SelectViewportProps extends HTMLAttributes<HTMLDivElement> {
2651
+ children?: ReactNode;
2652
+ }
2653
+ interface SelectGroupProps extends HTMLAttributes<HTMLDivElement> {
2654
+ children?: ReactNode;
2655
+ }
2656
+ interface SelectLabelProps extends HTMLAttributes<HTMLDivElement> {
2657
+ children?: ReactNode;
2658
+ }
2659
+ interface SelectSeparatorProps extends HTMLAttributes<HTMLDivElement> {
2660
+ }
2661
+ interface SelectItemProps extends HTMLAttributes<HTMLDivElement> {
2662
+ value: string;
2663
+ disabled?: boolean;
2664
+ children?: ReactNode;
2665
+ textValue?: string;
2666
+ }
2667
+ interface SelectItemTextProps extends HTMLAttributes<HTMLSpanElement> {
2668
+ children?: ReactNode;
2669
+ }
2670
+ interface SelectItemIndicatorProps extends HTMLAttributes<HTMLSpanElement> {
2671
+ children?: ReactNode;
2672
+ }
2673
+ type SelectArrowProps = HTMLAttributes<HTMLSpanElement>;
2674
+ type SelectScrollUpButtonProps = HTMLAttributes<HTMLDivElement>;
2675
+ type SelectScrollDownButtonProps = HTMLAttributes<HTMLDivElement>;
2676
+ type SelectPortalProps = {
2677
+ children?: ReactNode;
2678
+ container?: HTMLElement | null;
2679
+ };
2680
+ type SelectSectionProps = HTMLAttributes<HTMLDivElement>;
2681
+
2682
+ declare function Select({ value: ctrlValue, onValueChange, defaultValue, open: ctrlOpen, onOpenChange, children, placeholder, size: sizeProp, fullWidth, disabled, className, ...props }: SelectProps): react.JSX.Element;
2683
+ declare const SelectTrigger: react.ForwardRefExoticComponent<SelectTriggerProps & react.RefAttributes<HTMLButtonElement>>;
2684
+ declare function SelectValue({ placeholder, className, ...props }: SelectValueProps): react.JSX.Element;
2685
+ declare function SelectIcon({ children, className, ...props }: SelectIconProps): react.JSX.Element;
2686
+ declare function SelectPortal({ children, container }: SelectPortalProps): react.JSX.Element;
2687
+ declare const SelectContent: react.ForwardRefExoticComponent<SelectContentProps & react.RefAttributes<HTMLDivElement>>;
2688
+ declare const SelectViewport: react.ForwardRefExoticComponent<SelectViewportProps & react.RefAttributes<HTMLDivElement>>;
2689
+ declare function SelectGroup({ children, className, ...props }: SelectGroupProps): react.JSX.Element;
2690
+ declare function SelectLabel({ children, className, ...props }: SelectLabelProps): react.JSX.Element;
2691
+ declare function SelectSection({ children, className, ...props }: SelectSectionProps): react.JSX.Element;
2692
+ declare function SelectSeparator({ className, ...props }: SelectSeparatorProps): react.JSX.Element;
2693
+ declare function SelectItem({ value: itemValue, children, disabled, textValue, className, onPointerDown, onPointerUp, onPointerLeave, onPointerCancel, onMouseDown, onMouseUp, onMouseLeave, ...props }: SelectItemProps): react.JSX.Element;
2694
+ declare function SelectItemText({ children, className, ...props }: SelectItemTextProps): react.JSX.Element;
2695
+ declare function SelectItemIndicator({ children, className, ...props }: SelectItemIndicatorProps): react.JSX.Element;
2696
+ declare function SelectScrollUpButton({ children, ...props }: SelectScrollUpButtonProps): react.JSX.Element;
2697
+ declare function SelectScrollDownButton({ children, ...props }: SelectScrollDownButtonProps): react.JSX.Element;
2698
+ declare function SelectArrow({ children, ...props }: SelectArrowProps): react.JSX.Element;
2699
+
2700
+ interface ToggleProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
2701
+ checked?: boolean;
2702
+ onCheckedChange?: (checked: boolean) => void;
2703
+ }
2704
+
2705
+ declare function Toggle({ checked, onCheckedChange, onClick, className, disabled, ...props }: ToggleProps): react.JSX.Element;
2706
+
2707
+ type ChipVariant = "default" | "outline" | "filled";
2708
+ type ChipSize = "sm" | "md" | "lg";
2709
+ interface ChipProps extends HTMLAttributes<HTMLSpanElement> {
2710
+ avatar?: ReactNode;
2711
+ disabled?: boolean;
2712
+ onRemove?: () => void;
2713
+ size?: ChipSize;
2714
+ variant?: ChipVariant;
2715
+ }
2716
+
2717
+ declare function Chip({ variant, size, disabled, avatar, onRemove, children, className, ...props }: ChipProps): react.JSX.Element;
2718
+
2719
+ type DialogSize = "lg" | "sm";
2720
+ interface DialogProps {
2721
+ open?: boolean;
2722
+ defaultOpen?: boolean;
2723
+ onOpenChange?: (open: boolean) => void;
2724
+ /** Web Kit `size`: Large(600px) / Small(300px) */
2725
+ size?: DialogSize;
2726
+ children: ReactNode;
2727
+ }
2728
+ type DialogTriggerProps = ButtonProps;
2729
+ interface DialogContentProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
2730
+ container?: Element | DocumentFragment | null;
2731
+ style?: CSSProperties;
2732
+ /**
2733
+ * When `false`, children render directly in the panel (no ScrollArea).
2734
+ * Useful for composed surfaces like Command that manage their own scroll.
2735
+ * @default true
2736
+ */
2737
+ scrollable?: boolean;
2738
+ }
2739
+ interface DialogHeaderProps extends HTMLAttributes<HTMLDivElement> {
2740
+ showClose?: boolean;
2741
+ }
2742
+ type DialogTitleProps = HTMLAttributes<HTMLHeadingElement>;
2743
+ type DialogDescriptionProps = HTMLAttributes<HTMLParagraphElement>;
2744
+ type DialogCloseProps = ButtonHTMLAttributes<HTMLButtonElement>;
2745
+
2746
+ declare function Dialog({ open: openProp, defaultOpen, onOpenChange, size, children }: DialogProps): react.JSX.Element;
2747
+ declare const DialogTrigger: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
2748
+ declare function DialogContent({ className, style, container, scrollable, children, ...props }: DialogContentProps): react.ReactPortal | null;
2749
+ declare function DialogHeader({ className, children, showClose, ...props }: DialogHeaderProps): react.JSX.Element;
2750
+ declare function DialogTitle({ className, id, children, ...props }: DialogTitleProps): react.JSX.Element;
2751
+ declare function DialogDescription({ className, id, children, ...props }: DialogDescriptionProps): react.JSX.Element;
2752
+ declare function DialogClose({ className, onClick, type, ...props }: DialogCloseProps): react.JSX.Element;
2753
+
2754
+ type CommandFilter = (value: string, search: string, keywords?: string[]) => number;
2755
+ interface CommandProps extends HTMLAttributes<HTMLDivElement> {
2756
+ /** Controlled search query */
2757
+ value?: string;
2758
+ /** Uncontrolled initial search query */
2759
+ defaultValue?: string;
2760
+ onValueChange?: (search: string) => void;
2761
+ /** When true (default), filter items by search text */
2762
+ shouldFilter?: boolean;
2763
+ /** Custom score function — return `0` to hide. Default: substring match */
2764
+ filter?: CommandFilter;
2765
+ /** Controlled highlighted item value */
2766
+ selectedValue?: string;
2767
+ /** Uncontrolled initial highlighted item value */
2768
+ defaultSelectedValue?: string;
2769
+ onSelectedValueChange?: (value: string) => void;
2770
+ /** Accessible name for the command root (`aria-label`) */
2771
+ label?: string;
2772
+ }
2773
+ interface CommandDialogProps extends DialogProps {
2774
+ /** Forwarded to the inner `Command` root */
2775
+ commandProps?: Omit<CommandProps, "children">;
2776
+ }
2777
+ type CommandInputProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange"> & {
2778
+ /** Optional leading icon; defaults to search glyph */
2779
+ startIcon?: ReactNode;
2780
+ };
2781
+ type CommandListProps = HTMLAttributes<HTMLDivElement>;
2782
+ type CommandEmptyProps = HTMLAttributes<HTMLDivElement>;
2783
+ type CommandGroupProps = HTMLAttributes<HTMLDivElement>;
2784
+ type CommandGroupHeadingProps = HTMLAttributes<HTMLDivElement>;
2785
+ type CommandSeparatorProps = HTMLAttributes<HTMLDivElement>;
2786
+ interface CommandItemProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "value" | "onSelect"> {
2787
+ /** Unique value used for filtering, selection, and `onSelect` */
2788
+ value: string;
2789
+ /** Extra strings included in the default filter */
2790
+ keywords?: string[];
2791
+ /** Called when the item is activated (click / Enter) */
2792
+ onSelect?: (value: string) => void;
2793
+ /** Keep mounted even when filtered out */
2794
+ forceMount?: boolean;
2795
+ startIcon?: ReactNode;
2796
+ endIcon?: ReactNode;
2797
+ shortcut?: ReactNode;
2798
+ }
2799
+ type CommandShortcutProps = HTMLAttributes<HTMLSpanElement>;
2800
+
2801
+ declare const defaultCommandFilter: CommandFilter;
2802
+ declare function Command({ children, className, value, defaultValue, onValueChange, shouldFilter, filter, selectedValue: selectedValueProp, defaultSelectedValue, onSelectedValueChange, label, onKeyDown, ...props }: CommandProps): react.JSX.Element;
2803
+ declare function CommandDialog({ children, commandProps, size, ...dialogProps }: CommandDialogProps): react.JSX.Element;
2804
+ declare const CommandInput: react.ForwardRefExoticComponent<Omit<react.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange"> & {
2805
+ startIcon?: ReactNode;
2806
+ } & react.RefAttributes<HTMLInputElement>>;
2807
+ declare function CommandList({ className, children, ...props }: CommandListProps): react.JSX.Element;
2808
+ declare function CommandEmpty({ className, children, ...props }: CommandEmptyProps): react.JSX.Element | null;
2809
+ declare function CommandGroup({ className, children, ...props }: CommandGroupProps): react.JSX.Element;
2810
+ declare function CommandGroupHeading({ className, children, ...props }: CommandGroupHeadingProps): react.JSX.Element;
2811
+ declare function CommandSeparator({ className, ...props }: CommandSeparatorProps): react.JSX.Element;
2812
+ declare function CommandShortcut({ className, children, ...props }: CommandShortcutProps): react.JSX.Element;
2813
+ declare const CommandItem: react.ForwardRefExoticComponent<CommandItemProps & react.RefAttributes<HTMLButtonElement>>;
2814
+
2815
+ type AvatarSize = "3xs" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
2816
+ /** MCP / Figma `Avatar` `layout` */
2817
+ type AvatarLayout = "image" | "icon" | "initials";
2818
+ type AvatarColorImage = "neutral";
2819
+ type AvatarColorIcon = "blue" | "green" | "lime" | "magenta" | "neutral" | "orange" | "purple" | "red" | "teal" | "yellow";
2820
+ type AvatarColorInitials = AvatarColorIcon;
2821
+ type AvatarColor = AvatarColorImage | AvatarColorIcon;
2822
+
2823
+ /** Web Kit `Avatar/Status` `65:65` — `Online` | `Away` | `Unavailable` | `Offline` */
2824
+ type AvatarPresenceStatus = "online" | "away" | "unavailable" | "offline";
2825
+ type AvatarProps = Omit<HTMLAttributes<HTMLDivElement>, "color"> & {
2826
+ src?: string | null;
2827
+ alt?: string;
2828
+ /** When slots are omitted, layout is inferred from children. */
2829
+ layout?: AvatarLayout;
2830
+ size?: AvatarSize;
2831
+ showStatus?: boolean;
2832
+ status?: AvatarPresenceStatus;
2833
+ innerClassName?: string;
2834
+ children?: ReactNode;
2835
+ color?: AvatarColor;
2836
+ };
2837
+ type AvatarImageProps = ImgHTMLAttributes<HTMLImageElement>;
2838
+ type AvatarFallbackProps = HTMLAttributes<HTMLSpanElement>;
2839
+ type AvatarBadgeProps = HTMLAttributes<HTMLSpanElement> & {
2840
+ status?: AvatarPresenceStatus;
2841
+ };
2842
+ type AvatarTextProps = HTMLAttributes<HTMLSpanElement>;
2843
+ interface AvatarGroupProps extends HTMLAttributes<HTMLDivElement> {
2844
+ size?: AvatarSize;
2845
+ layout?: "stack" | "spread";
2846
+ }
2847
+ type AvatarGroupCountProps = HTMLAttributes<HTMLSpanElement>;
2848
+ type AvatarIconProps = Omit<WebIconProps, "size"> & {
2849
+ size?: number;
2850
+ };
2851
+
2852
+ declare function AvatarIcon({ size: sizeProp, ...props }: AvatarIconProps): react.JSX.Element;
2853
+ declare function Avatar({ src, alt, size, layout, color, showStatus, status, className, innerClassName, children, style, ...props }: AvatarProps): react.JSX.Element;
2854
+ declare function AvatarImage(_props: AvatarImageProps): null;
2855
+ declare function AvatarFallback({ className, ...props }: AvatarFallbackProps): react.JSX.Element;
2856
+ declare function AvatarText({ className, ...props }: AvatarTextProps): react.JSX.Element;
2857
+ declare function AvatarBadge({ className, status, style, ...props }: AvatarBadgeProps): react.JSX.Element;
2858
+ declare function AvatarGroup({ size, layout, className, children, style, ...props }: AvatarGroupProps): react.JSX.Element;
2859
+ declare function AvatarGroupCount({ className, ...props }: AvatarGroupCountProps): react.JSX.Element;
2860
+
2861
+ type AvatarsSize = AvatarSize;
2862
+ type AvatarsLayout = "stack" | "spread";
2863
+ interface AvatarItem {
2864
+ src?: string | null;
2865
+ alt: string;
2866
+ }
2867
+ interface AvatarsProps extends HTMLAttributes<HTMLDivElement> {
2868
+ avatars: AvatarItem[];
2869
+ size?: AvatarsSize;
2870
+ max?: number;
2871
+ layout?: AvatarsLayout;
2872
+ }
2873
+
2874
+ declare function Avatars({ avatars, size, max, layout, className, style, ...props }: AvatarsProps): react.JSX.Element;
2875
+
2876
+ type AlertVariant = "default" | "info" | "success" | "warning" | "danger" | "custom";
2877
+ interface AlertProps extends HTMLAttributes<HTMLDivElement> {
2878
+ variant?: AlertVariant;
2879
+ }
2880
+ interface AlertIconProps extends HTMLAttributes<HTMLDivElement> {
2881
+ name?: string;
2882
+ children?: ReactNode;
2883
+ }
2884
+ type AlertContentProps = HTMLAttributes<HTMLDivElement>;
2885
+ type AlertRowProps = HTMLAttributes<HTMLDivElement>;
2886
+ type AlertBodyProps = HTMLAttributes<HTMLDivElement>;
2887
+ type AlertActionsProps = HTMLAttributes<HTMLDivElement>;
2888
+ type AlertActionProps = ButtonHTMLAttributes<HTMLButtonElement>;
2889
+ type AlertCloseProps = ButtonHTMLAttributes<HTMLButtonElement>;
2890
+ type AlertTitleProps = HTMLAttributes<HTMLHeadingElement>;
2891
+ type AlertDescriptionProps = HTMLAttributes<HTMLDivElement>;
2892
+
2893
+ declare function AlertIcon({ className, name, children, ...props }: AlertIconProps): react.JSX.Element;
2894
+ declare function AlertContent({ className, ...props }: AlertContentProps): react.JSX.Element;
2895
+ declare function AlertRow({ className, ...props }: AlertRowProps): react.JSX.Element;
2896
+ declare function AlertBody({ className, ...props }: AlertBodyProps): react.JSX.Element;
2897
+ declare function AlertActions({ className, ...props }: AlertActionsProps): react.JSX.Element;
2898
+ declare function AlertAction({ className, type, ...props }: AlertActionProps): react.JSX.Element;
2899
+ declare function AlertClose({ className, type, children, ...props }: AlertCloseProps): react.JSX.Element;
2900
+ declare function Alert({ variant, className, children, ...props }: AlertProps): react.JSX.Element;
2901
+
2902
+ declare function AlertTitle({ className, ...props }: AlertTitleProps): react.JSX.Element;
2903
+
2904
+ declare function AlertDescription({ className, ...props }: AlertDescriptionProps): react.JSX.Element;
2905
+
2906
+ interface ProgressProps extends HTMLAttributes<HTMLDivElement> {
2907
+ value: number;
2908
+ max?: number;
2909
+ /** Web Kit `Progress bar` `452:3994` — Small(2px) / Large(4px) */
2910
+ size?: "sm" | "lg";
2911
+ }
2912
+
2913
+ declare function Progress({ value, max, size, className, ...props }: ProgressProps): react.JSX.Element;
2914
+
2915
+ type ProgressStepperState = "complete" | "current" | "upcoming";
2916
+ interface ProgressStepperProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
2917
+ /** Controlled active step value. */
2918
+ value?: number;
2919
+ /** Uncontrolled initial step. */
2920
+ defaultValue?: number;
2921
+ onValueChange?: (value: number) => void;
2922
+ }
2923
+ interface ProgressStepperListProps extends OlHTMLAttributes<HTMLOListElement> {
2924
+ }
2925
+ interface ProgressStepperItemProps extends LiHTMLAttributes<HTMLLIElement> {
2926
+ /** Step identity used with `ProgressStepper` value. */
2927
+ value: number;
2928
+ disabled?: boolean;
2929
+ }
2930
+ interface ProgressStepperMarkerProps extends HTMLAttributes<HTMLSpanElement> {
2931
+ }
2932
+ interface ProgressStepperLabelProps extends HTMLAttributes<HTMLSpanElement> {
2933
+ }
2934
+
2935
+ declare function ProgressStepper({ children, className, style, value: valueControlled, defaultValue, onValueChange, ...props }: ProgressStepperProps): react.JSX.Element;
2936
+ declare namespace ProgressStepper {
2937
+ var displayName: string;
2938
+ }
2939
+ declare function ProgressStepperList({ className, children, style, ...props }: ProgressStepperListProps): react.JSX.Element;
2940
+ declare namespace ProgressStepperList {
2941
+ var displayName: string;
2942
+ }
2943
+ declare function ProgressStepperItem({ value: itemValue, disabled, className, onClick, onKeyDown, children, ...props }: ProgressStepperItemProps): react.JSX.Element;
2944
+ declare namespace ProgressStepperItem {
2945
+ var displayName: string;
2946
+ }
2947
+ declare function ProgressStepperMarker({ className, children, style, ...props }: ProgressStepperMarkerProps): react.JSX.Element;
2948
+ declare namespace ProgressStepperMarker {
2949
+ var displayName: string;
2950
+ }
2951
+ declare function ProgressStepperLabel({ className, ...props }: ProgressStepperLabelProps): react.JSX.Element;
2952
+ declare namespace ProgressStepperLabel {
2953
+ var displayName: string;
2954
+ }
2955
+
2956
+ /** Web Kit `550:3669` — short tier ids (`xs` … `xxl`) */
2957
+ type SpinnerSize = "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
2958
+ type SpinnerLabelPosition = "left" | "right" | "top" | "bottom";
2959
+ interface SpinnerProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
2960
+ size?: SpinnerSize;
2961
+ label?: ReactNode;
2962
+ labelPosition?: SpinnerLabelPosition;
2963
+ }
2964
+
2965
+ declare function Spinner({ size, label, labelPosition, className, ...props }: SpinnerProps): react.JSX.Element;
2966
+
2967
+ interface TabsProps extends HTMLAttributes<HTMLDivElement> {
2968
+ defaultValue?: string;
2969
+ value?: string;
2970
+ onValueChange?: (value: string) => void;
2971
+ }
2972
+ interface TabsListProps extends HTMLAttributes<HTMLDivElement> {
2973
+ }
2974
+ interface TabsTriggerProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "type"> {
2975
+ value: string;
2976
+ children: ReactNode;
2977
+ }
2978
+ interface TabsContentProps extends HTMLAttributes<HTMLDivElement> {
2979
+ value: string;
2980
+ }
2981
+
2982
+ declare function Tabs({ children, className, defaultValue, value: valueControlled, onValueChange, ...props }: TabsProps): react.JSX.Element;
2983
+ declare function TabsList({ className, children, ...props }: TabsListProps): react.JSX.Element;
2984
+ declare const TabsTrigger: react.ForwardRefExoticComponent<TabsTriggerProps & react.RefAttributes<HTMLButtonElement>>;
2985
+ declare function TabsContent({ value, className, children, hidden: hiddenProp, ...props }: TabsContentProps): react.JSX.Element;
2986
+
2987
+ interface SegmentedControlProps extends HTMLAttributes<HTMLDivElement> {
2988
+ defaultValue?: string;
2989
+ value?: string;
2990
+ onValueChange?: (value: string) => void;
2991
+ }
2992
+ interface SegmentedControlItemProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "type"> {
2993
+ value: string;
2994
+ children: ReactNode;
2995
+ }
2996
+
2997
+ declare function SegmentedControl({ children, className, defaultValue, value: valueControlled, onValueChange, ...props }: SegmentedControlProps): react.JSX.Element;
2998
+ declare const SegmentedControlItem: react.ForwardRefExoticComponent<SegmentedControlItemProps & react.RefAttributes<HTMLButtonElement>>;
2999
+
3000
+ type TableProps = TableHTMLAttributes<HTMLTableElement>;
3001
+ type TableHeaderProps = HTMLAttributes<HTMLTableSectionElement>;
3002
+ type TableBodyProps = HTMLAttributes<HTMLTableSectionElement>;
3003
+ type TableFooterProps = HTMLAttributes<HTMLTableSectionElement>;
3004
+ type TableRowProps = HTMLAttributes<HTMLTableRowElement>;
3005
+ type TableHeadProps = ThHTMLAttributes<HTMLTableCellElement>;
3006
+ type TableCellProps = TdHTMLAttributes<HTMLTableCellElement>;
3007
+ type TableCaptionProps = HTMLAttributes<HTMLTableCaptionElement>;
3008
+
3009
+ /** Dense semantic table — hover / selected via `refineui.css`. Overflow via composed `ScrollArea`. */
3010
+ declare const Table: react.ForwardRefExoticComponent<TableProps & react.RefAttributes<HTMLTableElement>>;
3011
+ declare function TableHeader({ className, ...props }: TableHeaderProps): react.JSX.Element;
3012
+ declare function TableBody({ className, ...props }: TableBodyProps): react.JSX.Element;
3013
+ declare function TableFooter({ className, ...props }: TableFooterProps): react.JSX.Element;
3014
+ declare function TableRow({ className, ...props }: TableRowProps): react.JSX.Element;
3015
+ declare function TableHead({ className, scope, ...props }: TableHeadProps): react.JSX.Element;
3016
+ declare function TableCell({ className, ...props }: TableCellProps): react.JSX.Element;
3017
+ declare function TableCaption({ className, ...props }: TableCaptionProps): react.JSX.Element;
3018
+
3019
+ type AccordionSize = "sm" | "md" | "lg";
3020
+ type AccordionType = "single" | "multiple";
3021
+
3022
+ interface AccordionProps extends HTMLAttributes<HTMLDivElement> {
3023
+ type?: AccordionType;
3024
+ collapsible?: boolean;
3025
+ defaultValue?: string | string[];
3026
+ value?: string | string[];
3027
+ onValueChange?: (value: string | string[] | undefined) => void;
3028
+ /** Web Kit size tier — scales trigger & content typography via `componentTypographyTokens.accordion`. */
3029
+ size?: AccordionSize;
3030
+ }
3031
+ declare function Accordion({ type, collapsible, defaultValue, value, onValueChange, size, className, children, ...props }: AccordionProps): react.JSX.Element;
3032
+
3033
+ interface AccordionItemSlotProps extends HTMLAttributes<HTMLDivElement> {
3034
+ value: string;
3035
+ icon?: string;
3036
+ }
3037
+ declare function AccordionItem({ value, icon, className, children, ...props }: AccordionItemSlotProps): react.JSX.Element;
3038
+
3039
+ interface AccordionTriggerProps extends HTMLAttributes<HTMLButtonElement> {
3040
+ }
3041
+ declare function AccordionTrigger({ className, children, ...props }: AccordionTriggerProps): react.JSX.Element;
3042
+
3043
+ interface AccordionContentProps extends HTMLAttributes<HTMLDivElement> {
3044
+ }
3045
+ declare function AccordionContent({ className, children, ...props }: AccordionContentProps): react.JSX.Element;
3046
+
3047
+ type BreadcrumbProps = HTMLAttributes<HTMLElement>;
3048
+ type BreadcrumbListProps = OlHTMLAttributes<HTMLOListElement>;
3049
+ type BreadcrumbItemProps = LiHTMLAttributes<HTMLLIElement>;
3050
+ interface BreadcrumbLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
3051
+ }
3052
+ type BreadcrumbPageProps = HTMLAttributes<HTMLSpanElement>;
3053
+ type BreadcrumbSeparatorProps = LiHTMLAttributes<HTMLLIElement>;
3054
+ type BreadcrumbEllipsisProps = HTMLAttributes<HTMLSpanElement>;
3055
+ type BreadcrumbEllipsisTriggerProps = ButtonHTMLAttributes<HTMLButtonElement>;
3056
+
3057
+ declare function Breadcrumb({ className, ...props }: BreadcrumbProps): react.JSX.Element;
3058
+ declare function BreadcrumbList({ className, ...props }: BreadcrumbListProps): react.JSX.Element;
3059
+ declare function BreadcrumbItem({ className, ...props }: BreadcrumbItemProps): react.JSX.Element;
3060
+ declare const breadcrumbLinkClassName: string;
3061
+ declare function BreadcrumbLink({ className, children, ...props }: BreadcrumbLinkProps): react.JSX.Element;
3062
+ declare function BreadcrumbPage({ className, ...props }: BreadcrumbPageProps): react.JSX.Element;
3063
+ declare function BreadcrumbSeparator({ children, className, ...props }: BreadcrumbSeparatorProps): react.JSX.Element;
3064
+ declare function BreadcrumbEllipsis({ className, ...props }: BreadcrumbEllipsisProps): react.JSX.Element;
3065
+ declare const BreadcrumbEllipsisTrigger: react.ForwardRefExoticComponent<BreadcrumbEllipsisTriggerProps & react.RefAttributes<HTMLButtonElement>>;
3066
+
3067
+ type FooterProps = HTMLAttributes<HTMLElement>;
3068
+ type FooterExploreProps = HTMLAttributes<HTMLDivElement>;
3069
+ type FooterContentProps = FooterExploreProps;
3070
+ type FooterBrandProps = HTMLAttributes<HTMLDivElement>;
3071
+ type FooterLogoProps = HTMLAttributes<HTMLDivElement>;
3072
+ type FooterBrandNameProps = HTMLAttributes<HTMLParagraphElement>;
3073
+ type FooterBrandDescriptionProps = HTMLAttributes<HTMLParagraphElement>;
3074
+ type FooterNavProps = HTMLAttributes<HTMLElement>;
3075
+ type FooterGroupProps = HTMLAttributes<HTMLDivElement>;
3076
+ type FooterGroupLabelProps = HTMLAttributes<HTMLParagraphElement>;
3077
+ interface FooterLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
3078
+ }
3079
+ type FooterMetaProps = HTMLAttributes<HTMLDivElement>;
3080
+ type FooterBottomProps = FooterMetaProps;
3081
+ type FooterMetaEndProps = HTMLAttributes<HTMLDivElement>;
3082
+ type FooterCopyrightProps = HTMLAttributes<HTMLParagraphElement>;
3083
+ type FooterLocaleProps = HTMLAttributes<HTMLElement>;
3084
+ type FooterSocialProps = HTMLAttributes<HTMLDivElement>;
3085
+
3086
+ /** Site footer landmark — token composition (no Web Kit COMPONENT_SET). */
3087
+ declare function Footer({ className, ...props }: FooterProps): react.JSX.Element;
3088
+ declare function FooterExplore({ className, ...props }: FooterExploreProps): react.JSX.Element;
3089
+ /** Alias of `FooterExplore`. */
3090
+ declare const FooterContent: typeof FooterExplore;
3091
+ declare function FooterBrand({ className, ...props }: FooterBrandProps): react.JSX.Element;
3092
+ declare function FooterLogo({ className, ...props }: FooterLogoProps): react.JSX.Element;
3093
+ declare function FooterBrandName({ className, ...props }: FooterBrandNameProps): react.JSX.Element;
3094
+ declare function FooterBrandDescription({ className, ...props }: FooterBrandDescriptionProps): react.JSX.Element;
3095
+ declare function FooterNav({ className, "aria-label": ariaLabel, ...props }: FooterNavProps): react.JSX.Element;
3096
+ declare function FooterGroup({ className, ...props }: FooterGroupProps): react.JSX.Element;
3097
+ declare function FooterGroupLabel({ className, ...props }: FooterGroupLabelProps): react.JSX.Element;
3098
+ declare const footerLinkClassName: string;
3099
+ declare const footerSocialLinkClassName: string;
3100
+ declare const footerLocaleLinkClassName: string;
3101
+ declare const footerLocaleTriggerClassName: string;
3102
+ declare function FooterLink({ className, ...props }: FooterLinkProps): react.JSX.Element;
3103
+ declare function FooterMeta({ className, ...props }: FooterMetaProps): react.JSX.Element;
3104
+ /** Alias of `FooterMeta`. */
3105
+ declare const FooterBottom: typeof FooterMeta;
3106
+ declare function FooterMetaEnd({ className, ...props }: FooterMetaEndProps): react.JSX.Element;
3107
+ declare function FooterCopyright({ className, ...props }: FooterCopyrightProps): react.JSX.Element;
3108
+ declare function FooterLocale({ className, ...props }: FooterLocaleProps): react.JSX.Element;
3109
+ declare function FooterSocial({ className, ...props }: FooterSocialProps): react.JSX.Element;
3110
+
3111
+ type CalendarMode = "single" | "range";
3112
+ interface CalendarProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
3113
+ mode?: CalendarMode;
3114
+ value?: Date;
3115
+ onChange?: (date: Date) => void;
3116
+ rangeStart?: Date;
3117
+ rangeEnd?: Date;
3118
+ onRangeChange?: (start: Date | undefined, end: Date | undefined) => void;
3119
+ weekStartsOn?: 0 | 1;
3120
+ defaultMonth?: Date;
3121
+ }
3122
+
3123
+ declare function Calendar({ mode, value, onChange, rangeStart, rangeEnd, onRangeChange, weekStartsOn, defaultMonth, className, ...props }: CalendarProps): react.JSX.Element;
3124
+
3125
+ type DividerHTML = Omit<HTMLAttributes<HTMLDivElement>, "children">;
3126
+ type DividerAlign = "center" | "left" | "right";
3127
+ type DividerProps = (DividerHTML & {
3128
+ layout?: "default";
3129
+ }) | (DividerHTML & {
3130
+ layout: "content";
3131
+ children: ReactNode;
3132
+ align?: DividerAlign;
3133
+ }) | (DividerHTML & {
3134
+ layout: "icon";
3135
+ align?: DividerAlign;
3136
+ });
3137
+
3138
+ /** Divider — layout default · content · icon; align center · left · right (horizontal). */
3139
+ declare function Divider(props: DividerProps): react.JSX.Element;
3140
+
3141
+ type LayoutGap = keyof SpacingTokens;
3142
+ type LayoutDirection = "row" | "column" | "row-reverse" | "column-reverse";
3143
+ type LayoutAlign = "start" | "center" | "end" | "stretch" | "baseline";
3144
+ type LayoutJustify = "start" | "center" | "end" | "between" | "around" | "evenly";
3145
+ type LayoutWrap = "nowrap" | "wrap" | "wrap-reverse";
3146
+ type LayoutAs = ElementType;
3147
+ type LayoutRadius = keyof BorderRadiusTokens;
3148
+ type LayoutStroke = keyof StrokeWidthTokens;
3149
+ type LayoutBackground = Extract<SemanticColorName, `background${string}` | `surface${string}`>;
3150
+ type LayoutBorderColor = Extract<SemanticColorName, `border${string}`>;
3151
+ type DivProps = HTMLAttributes<HTMLDivElement>;
3152
+ type DivPropsNoAlign = Omit<DivProps, "align">;
3153
+ interface StackProps extends DivPropsNoAlign {
3154
+ as?: LayoutAs;
3155
+ direction?: LayoutDirection;
3156
+ gap?: LayoutGap;
3157
+ align?: LayoutAlign;
3158
+ justify?: LayoutJustify;
3159
+ wrap?: LayoutWrap | boolean;
3160
+ inline?: boolean;
3161
+ }
3162
+ interface GridProps extends DivPropsNoAlign {
3163
+ as?: LayoutAs;
3164
+ columns?: number;
3165
+ minItem?: FoundationSizeName;
3166
+ gap?: LayoutGap;
3167
+ columnGap?: LayoutGap;
3168
+ rowGap?: LayoutGap;
3169
+ align?: LayoutAlign;
3170
+ justify?: LayoutJustify;
3171
+ }
3172
+ interface GridItemProps extends DivProps {
3173
+ as?: LayoutAs;
3174
+ span?: number;
3175
+ rowSpan?: number;
3176
+ }
3177
+ interface ContainerProps extends DivProps {
3178
+ as?: LayoutAs;
3179
+ padding?: LayoutGap;
3180
+ }
3181
+ type SpacerProps = DivProps;
3182
+ interface BoxProps extends DivProps {
3183
+ as?: LayoutAs;
3184
+ padding?: LayoutGap;
3185
+ paddingX?: LayoutGap;
3186
+ paddingY?: LayoutGap;
3187
+ background?: LayoutBackground;
3188
+ radius?: LayoutRadius;
3189
+ border?: LayoutStroke;
3190
+ borderColor?: LayoutBorderColor;
3191
+ }
3192
+
3193
+ /** One-axis flex layout with Foundation `gap`. */
3194
+ declare function Stack({ as: Component, direction, gap, align, justify, wrap, inline, className, ...props }: StackProps): react.JSX.Element;
3195
+
3196
+ /** CSS grid with equal columns or Foundation `minItem` auto-fit. */
3197
+ declare function Grid({ as: Component, columns, minItem, gap, columnGap, rowGap, align, justify, className, style, ...props }: GridProps): react.JSX.Element;
3198
+ /** Column / row span inside `Grid`. */
3199
+ declare function GridItem({ as: Component, span, rowSpan, className, style, ...props }: GridItemProps): react.JSX.Element;
3200
+
3201
+ /** Full-width column with Foundation horizontal padding. */
3202
+ declare function Container({ as: Component, padding, className, ...props }: ContainerProps): react.JSX.Element;
3203
+
3204
+ /** Padding, semantic fill, radius, and border. */
3205
+ declare function Box({ as: Component, padding, paddingX, paddingY, background, radius, border, borderColor, className, style, ...props }: BoxProps): react.JSX.Element;
3206
+
3207
+ /** Flex-grow filler between Stack children. */
3208
+ declare function Spacer({ className, ...props }: SpacerProps): react.JSX.Element;
3209
+
3210
+ type DrawerPlacement = "left" | "right";
3211
+ type DrawerSize = "sm" | "md" | "lg";
3212
+ type DrawerType = "overlay" | "inline";
3213
+ type DrawerFooterState = "icons" | "single" | "split";
3214
+ interface DrawerProps {
3215
+ open?: boolean;
3216
+ defaultOpen?: boolean;
3217
+ onOpenChange?: (open: boolean) => void;
3218
+ /** Web Kit Drawer `Type` — Overlay | Inline */
3219
+ type?: DrawerType;
3220
+ /** Web Kit Drawer `showFooter` variant */
3221
+ showFooter?: boolean;
3222
+ placement?: DrawerPlacement;
3223
+ /** Web Kit Overlay `635:1756` — `componentSizes.drawerWidthSm` / `Md` / `Lg` */
3224
+ size?: DrawerSize;
3225
+ children: ReactNode;
3226
+ }
3227
+ type DrawerTriggerProps = ButtonProps;
3228
+ interface DrawerContentProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
3229
+ container?: Element | DocumentFragment | null;
3230
+ style?: CSSProperties;
3231
+ type?: DrawerType;
3232
+ showFooter?: boolean;
3233
+ placement?: DrawerPlacement;
3234
+ size?: DrawerSize;
3235
+ }
3236
+ interface DrawerHeaderProps extends HTMLAttributes<HTMLDivElement> {
3237
+ showClose?: boolean;
3238
+ actions?: ReactNode;
3239
+ }
3240
+ type DrawerTitleProps = HTMLAttributes<HTMLHeadingElement>;
3241
+ type DrawerDescriptionProps = HTMLAttributes<HTMLParagraphElement>;
3242
+ type DrawerBodyProps = HTMLAttributes<HTMLDivElement>;
3243
+ interface DrawerFooterProps extends HTMLAttributes<HTMLDivElement> {
3244
+ /** Web Kit Drawer/Footer state */
3245
+ state?: DrawerFooterState;
3246
+ }
3247
+ interface DrawerCloseProps extends Omit<ButtonProps, "children"> {
3248
+ children?: ReactNode;
3249
+ }
3250
+
3251
+ declare function Drawer({ open: openProp, defaultOpen, onOpenChange, type, showFooter, placement, size, children, }: DrawerProps): react.JSX.Element;
3252
+ declare const DrawerTrigger: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
3253
+ declare function DrawerContent({ className, style, container, children, type: typeProp, showFooter: showFooterProp, placement: placementProp, size: sizeProp, ...props }: DrawerContentProps): react.JSX.Element | null;
3254
+ declare function DrawerHeader({ className, children, showClose, actions, ...props }: DrawerHeaderProps): react.JSX.Element;
3255
+ declare function DrawerTitle({ className, id, children, ...props }: DrawerTitleProps): react.JSX.Element;
3256
+ declare function DrawerDescription({ className, id, children, ...props }: DrawerDescriptionProps): react.JSX.Element;
3257
+ declare function DrawerBody({ className, ...props }: DrawerBodyProps): react.JSX.Element;
3258
+ declare function DrawerFooter({ className, ...props }: DrawerFooterProps): react.JSX.Element | null;
3259
+ declare function DrawerClose({ children, onClick, className, type, variant, size, layout, ...props }: DrawerCloseProps): react.JSX.Element;
3260
+
3261
+ type MenuAlign = "start" | "end" | "center";
3262
+ interface DropdownTriggerProps extends Omit<HTMLAttributes<HTMLElement>, "children"> {
3263
+ children: ReactNode;
3264
+ }
3265
+ interface DropdownContentProps extends HTMLAttributes<HTMLDivElement> {
3266
+ align?: MenuAlign;
3267
+ side?: "auto" | "top" | "bottom";
3268
+ /** Gap between trigger and panel — default `sizeXXSmall` (4px). */
3269
+ sideOffset?: number;
3270
+ }
3271
+ interface DropdownItemProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
3272
+ children: ReactNode;
3273
+ selected?: boolean;
3274
+ }
3275
+ interface DropdownSubTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3276
+ children: ReactNode;
3277
+ }
3278
+ interface DropdownSubContentProps extends HTMLAttributes<HTMLDivElement> {
3279
+ }
3280
+
3281
+ declare function Dropdown({ className, children, defaultOpen, open: openProp, onOpenChange, ...props }: HTMLAttributes<HTMLDivElement> & {
3282
+ defaultOpen?: boolean;
3283
+ open?: boolean;
3284
+ onOpenChange?: (open: boolean) => void;
3285
+ }): react.JSX.Element;
3286
+ /** Like `PopoverTrigger` / `MenuTrigger`: merge ref/events onto one mergeable child, else wrap in `button`. */
3287
+ declare function DropdownTrigger({ children, className, ...props }: DropdownTriggerProps): react.JSX.Element;
3288
+ declare function DropdownContent({ className, align, side, sideOffset, style, children, ...props }: DropdownContentProps): react.ReactPortal | null;
3289
+ declare function DropdownGroup({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
3290
+ declare function DropdownLabel({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
3291
+ declare function DropdownItem({ className, disabled, selected, children, onClick, style, onPointerDown, onPointerUp, onPointerLeave, onPointerCancel, onMouseDown, onMouseUp, onMouseLeave, ...props }: DropdownItemProps): react.JSX.Element;
3292
+ declare function DropdownSeparator({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
3293
+ declare function DropdownShortcut({ className, ...props }: HTMLAttributes<HTMLSpanElement>): react.JSX.Element;
3294
+ /** Legacy: sub-panel already portals to `document.body` internally — renders children only. */
3295
+ declare function DropdownPortal({ children }: {
3296
+ children: ReactNode;
3297
+ }): react.JSX.Element;
3298
+ declare function DropdownSub({ children }: {
3299
+ children: ReactNode;
3300
+ }): react.JSX.Element;
3301
+ declare function DropdownSubTrigger({ className, children, onClick, onPointerEnter, onPointerLeave, disabled, ...props }: DropdownSubTriggerProps): react.JSX.Element;
3302
+ declare function DropdownSubContent({ className, children, style, ...props }: DropdownSubContentProps): react.ReactPortal | null;
3303
+
3304
+ interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
3305
+ /**
3306
+ * Convenience: appends `LabelRequired`. Prefer composing `<LabelRequired />` (same as Field).
3307
+ */
3308
+ required?: boolean;
3309
+ size?: "sm" | "md" | "lg";
3310
+ disabled?: boolean;
3311
+ }
3312
+ type LabelRequiredProps = HTMLAttributes<HTMLSpanElement>;
3313
+
3314
+ interface FieldProps extends HTMLAttributes<HTMLDivElement> {
3315
+ size?: "sm" | "md" | "lg";
3316
+ }
3317
+ /** Same surface as `Label`; `size` defaults from nearest `Field`. */
3318
+ type FieldLabelProps = LabelProps;
3319
+ /** Alias of `LabelRequired` for Field composition. */
3320
+ type FieldRequiredProps = LabelRequiredProps;
3321
+ interface FieldHintProps extends HTMLAttributes<HTMLDivElement> {
3322
+ children: ReactNode;
3323
+ }
3324
+ interface FieldErrorProps extends HTMLAttributes<HTMLDivElement> {
3325
+ children: ReactNode;
3326
+ }
3327
+
3328
+ declare function Field({ size, className, ...props }: FieldProps): react.JSX.Element;
3329
+ /** Field-scoped `Label` — inherits `Field` `size` unless `size` is passed explicitly. */
3330
+ declare function FieldLabel({ size: sizeProp, className, ...props }: FieldLabelProps): react.JSX.Element;
3331
+ /** Field-scoped required mark — same atom as `LabelRequired`. */
3332
+ declare function FieldRequired(props: FieldRequiredProps): react.JSX.Element;
3333
+ declare function FieldHint({ className, ...props }: FieldHintProps): react.JSX.Element;
3334
+ declare function FieldError({ className, ...props }: FieldErrorProps): react.JSX.Element;
3335
+
3336
+ declare function Label({ required, size, disabled, children, className, ...props }: LabelProps): react.JSX.Element;
3337
+
3338
+ /** Required asterisk — Web Kit `red700` / alias `foregroundError`. Decorative (`aria-hidden`). */
3339
+ declare function LabelRequired({ className, children, ...props }: LabelRequiredProps): react.JSX.Element;
3340
+
3341
+ interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
3342
+ /**
3343
+ * When true, show the external-link icon. When omitted, shown automatically for `target="_blank"`.
3344
+ * Set false to hide the icon even for new windows.
3345
+ */
3346
+ showExternalIcon?: boolean;
3347
+ /** Disabled — sets `aria-disabled` and blocks pointer events (anchors have no native `disabled`). */
3348
+ disabled?: boolean;
3349
+ }
3350
+
3351
+ /** Web Kit `Link` `226:158` — colors and underline via `refineui.css` `[data-refineui="link"]`. */
3352
+ declare function Link({ showExternalIcon, target, disabled, children, className, ...props }: LinkProps): react.JSX.Element;
3353
+
3354
+ type MenuPositioning = {
3355
+ autoSize?: boolean;
3356
+ };
3357
+ interface MenuProps extends HTMLAttributes<HTMLDivElement> {
3358
+ positioning?: MenuPositioning;
3359
+ }
3360
+ interface MenuPopoverProps extends HTMLAttributes<HTMLDivElement> {
3361
+ }
3362
+ interface MenuListProps extends HTMLAttributes<HTMLDivElement> {
3363
+ }
3364
+ interface MenuSectionProps extends HTMLAttributes<HTMLDivElement> {
3365
+ children: ReactNode;
3366
+ }
3367
+ interface MenuDividerProps extends HTMLAttributes<HTMLDivElement> {
3368
+ }
3369
+ interface MenuItemProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
3370
+ children: ReactNode;
3371
+ description?: ReactNode;
3372
+ shortcut?: ReactNode;
3373
+ startIcon?: ReactNode;
3374
+ endIcon?: ReactNode;
3375
+ state?: "default" | "hover" | "pressed" | "active" | "disabled";
3376
+ }
3377
+ /** Submenu trigger — chevron is built-in (Web Kit endIcon). */
3378
+ interface MenuSubTriggerProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
3379
+ children: ReactNode;
3380
+ description?: ReactNode;
3381
+ startIcon?: ReactNode;
3382
+ state?: "default" | "hover" | "pressed" | "active" | "disabled";
3383
+ }
3384
+ type MenuSubContentProps = HTMLAttributes<HTMLDivElement>;
3385
+
3386
+ declare function Menu({ children, className, positioning, ...props }: MenuProps): react.JSX.Element;
3387
+ type MenuTriggerProps = {
3388
+ children: ReactNode;
3389
+ };
3390
+ declare function MenuTrigger({ children }: MenuTriggerProps): react.JSX.Element;
3391
+ declare function MenuPopover({ className, children, style, ...props }: MenuPopoverProps): react.ReactPortal | null;
3392
+ declare function MenuList({ className, ...props }: MenuListProps): react.JSX.Element;
3393
+ /** Web Kit `Menu / Section` (`633:4258`) */
3394
+ declare function MenuSection({ className, children, ...props }: MenuSectionProps): react.JSX.Element;
3395
+ /** Web Kit `Menu / Section` Divider (`633:4263`) */
3396
+ declare function MenuDivider({ className, ...props }: MenuDividerProps): react.JSX.Element;
3397
+ declare function MenuItem({ children, description, shortcut, startIcon, endIcon, className, disabled, state, onClick, onKeyDown, ...props }: MenuItemProps): react.JSX.Element;
3398
+ /** Nested menu branch — chevron item opens a sibling panel (Web Kit endIcon / submenu). */
3399
+ declare function MenuSub({ children }: {
3400
+ children: ReactNode;
3401
+ }): react.JSX.Element;
3402
+ declare function MenuSubTrigger({ children, description, startIcon, className, disabled, state, onClick, onPointerEnter, onPointerLeave, ...props }: MenuSubTriggerProps): react.JSX.Element;
3403
+ declare function MenuSubContent({ className, children, style, ...props }: MenuSubContentProps): react.ReactPortal | null;
3404
+
3405
+ interface NavigationMenuProps extends Omit<HTMLAttributes<HTMLElement>, "defaultValue"> {
3406
+ /** Controlled open item value (`""` = closed). */
3407
+ value?: string;
3408
+ /** Uncontrolled initial open item value. */
3409
+ defaultValue?: string;
3410
+ onValueChange?: (value: string) => void;
3411
+ /**
3412
+ * Delay (ms) before opening a panel on pointer enter.
3413
+ * Defaults to semantic `duration.normal`.
3414
+ */
3415
+ delayDuration?: number;
3416
+ /**
3417
+ * When moving between items while a panel is open, wait this long (ms)
3418
+ * before switching — usually shorter than `delayDuration`.
3419
+ * Defaults to semantic `duration.fast`.
3420
+ */
3421
+ skipDelayDuration?: number;
3422
+ /** Accessible name for the landmark. @default "Main" */
3423
+ "aria-label"?: string;
3424
+ }
3425
+ interface NavigationMenuListProps extends HTMLAttributes<HTMLUListElement> {
3426
+ }
3427
+ interface NavigationMenuItemProps extends HTMLAttributes<HTMLLIElement> {
3428
+ /** Stable id for open state. Auto-generated when omitted. */
3429
+ value?: string;
3430
+ }
3431
+ interface NavigationMenuTriggerProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
3432
+ children: ReactNode;
3433
+ }
3434
+ interface NavigationMenuContentProps extends HTMLAttributes<HTMLDivElement> {
3435
+ }
3436
+ interface NavigationMenuLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
3437
+ /** Marks the current page (`aria-current="page"`). */
3438
+ active?: boolean;
3439
+ }
3440
+ interface NavigationMenuIndicatorProps extends HTMLAttributes<HTMLDivElement> {
3441
+ }
3442
+
3443
+ declare function NavigationMenu({ children, className, value: valueControlled, defaultValue, onValueChange, delayDuration: delayDurationProp, skipDelayDuration: skipDelayDurationProp, "aria-label": ariaLabel, ...props }: NavigationMenuProps): react.JSX.Element;
3444
+ declare function NavigationMenuList({ className, onKeyDown, ...props }: NavigationMenuListProps): react.JSX.Element;
3445
+ declare function NavigationMenuItem({ children, className, value: valueProp, onPointerEnter, onPointerLeave, ...props }: NavigationMenuItemProps): react.JSX.Element;
3446
+ declare function NavigationMenuTrigger({ children, className, disabled, onClick, onKeyDown, ...props }: NavigationMenuTriggerProps): react.JSX.Element;
3447
+ declare function NavigationMenuContent({ children, className, onKeyDown, ...props }: NavigationMenuContentProps): react.JSX.Element | null;
3448
+ declare function NavigationMenuLink({ children, className, active, onClick, onFocus, "aria-disabled": ariaDisabled, ...props }: NavigationMenuLinkProps): react.JSX.Element;
3449
+ declare function NavigationMenuIndicator({ className, style, ...props }: NavigationMenuIndicatorProps): react.JSX.Element | null;
3450
+
3451
+ type SidebarProps = HTMLAttributes<HTMLElement>;
3452
+ type SidebarHeaderProps = HTMLAttributes<HTMLDivElement>;
3453
+ type SidebarBrandProps = HTMLAttributes<HTMLDivElement>;
3454
+ type SidebarContentProps = HTMLAttributes<HTMLDivElement>;
3455
+ type SidebarNavProps = HTMLAttributes<HTMLElement>;
3456
+ type SidebarGroupProps = HTMLAttributes<HTMLDivElement>;
3457
+ type SidebarGroupLabelProps = HTMLAttributes<HTMLParagraphElement>;
3458
+ type SidebarFooterProps = HTMLAttributes<HTMLDivElement>;
3459
+ type SidebarPeekMode = "contained" | "viewport";
3460
+ interface SidebarPeekProps extends HTMLAttributes<HTMLDivElement> {
3461
+ /** When false, peek edge/panel/inset offset are inactive. */
3462
+ enabled?: boolean;
3463
+ /** Flyout width as a percentage of the peek root width. */
3464
+ widthPercent: number;
3465
+ mode?: SidebarPeekMode;
3466
+ /** Pin / expand the docked sidebar (flyout toolbar). */
3467
+ onPin?: () => void;
3468
+ }
3469
+ type SidebarPeekEdgeProps = HTMLAttributes<HTMLDivElement>;
3470
+ type SidebarPeekPanelProps = HTMLAttributes<HTMLDivElement>;
3471
+ type SidebarPeekPinProps = HTMLAttributes<HTMLDivElement>;
3472
+ type SidebarPeekInsetProps = HTMLAttributes<HTMLDivElement>;
3473
+ interface SidebarLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
3474
+ /** Marks the current page (`aria-current="page"`). */
3475
+ active?: boolean;
3476
+ }
3477
+
3478
+ /** App sidebar landmark — token composition (no Web Kit COMPONENT_SET). */
3479
+ declare function Sidebar({ className, ...props }: SidebarProps): react.JSX.Element;
3480
+ declare function SidebarHeader({ className, ...props }: SidebarHeaderProps): react.JSX.Element;
3481
+ declare function SidebarBrand({ className, ...props }: SidebarBrandProps): react.JSX.Element;
3482
+ declare function SidebarContent({ className, ...props }: SidebarContentProps): react.JSX.Element;
3483
+ declare function SidebarNav({ className, "aria-label": ariaLabel, ...props }: SidebarNavProps): react.JSX.Element;
3484
+ declare function SidebarGroup({ className, ...props }: SidebarGroupProps): react.JSX.Element;
3485
+ declare function SidebarGroupLabel({ className, ...props }: SidebarGroupLabelProps): react.JSX.Element;
3486
+ declare function SidebarLink({ className, active, "aria-disabled": ariaDisabled, ...props }: SidebarLinkProps): react.JSX.Element;
3487
+ declare function SidebarFooter({ className, ...props }: SidebarFooterProps): react.JSX.Element;
3488
+
3489
+ type SidebarPeekContextValue = {
3490
+ enabled: boolean;
3491
+ mode: "contained" | "viewport";
3492
+ peekOpen: boolean;
3493
+ flyoutWidthPx: number | undefined;
3494
+ schedulePeekOpen: () => void;
3495
+ schedulePeekClose: (delay?: number) => void;
3496
+ closePeekImmediate: () => void;
3497
+ cancelPeekClose: () => void;
3498
+ cancelPeekOpen: () => void;
3499
+ onPin?: () => void;
3500
+ };
3501
+ declare function SidebarPeek({ enabled, widthPercent, mode, onPin, className, style, children, ...props }: SidebarPeekProps): react.JSX.Element;
3502
+ declare function SidebarPeekEdge({ className, ...props }: SidebarPeekEdgeProps): react.JSX.Element | null;
3503
+ declare function SidebarPeekPanel({ className, children, ...props }: SidebarPeekPanelProps): react.JSX.Element | null;
3504
+ declare function SidebarPeekPin({ className, children, ...props }: SidebarPeekPinProps): react.JSX.Element;
3505
+ declare function SidebarPeekInset({ className, style, children, ...props }: SidebarPeekInsetProps): react.JSX.Element;
3506
+ declare function useSidebarPeek(): SidebarPeekContextValue;
3507
+
3508
+ type PaginationRootProps = HTMLAttributes<HTMLElement>;
3509
+ type PaginationProps = PaginationRootProps;
3510
+ type PaginationContentProps = HTMLAttributes<HTMLUListElement>;
3511
+ type PaginationItemProps = HTMLAttributes<HTMLLIElement>;
3512
+ interface PaginationLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
3513
+ isActive?: boolean;
3514
+ }
3515
+ type PaginationPreviousProps = ButtonHTMLAttributes<HTMLButtonElement>;
3516
+ type PaginationNextProps = ButtonHTMLAttributes<HTMLButtonElement>;
3517
+ type PaginationEllipsisProps = HTMLAttributes<HTMLSpanElement>;
3518
+
3519
+ declare function PaginationContent({ className, ...props }: PaginationContentProps): react.JSX.Element;
3520
+ declare function PaginationItem({ className, ...props }: PaginationItemProps): react.JSX.Element;
3521
+ declare function PaginationLink({ className, isActive, ...props }: PaginationLinkProps): react.JSX.Element;
3522
+ declare function PaginationPrevious(props: PaginationPreviousProps): react.JSX.Element;
3523
+ declare function PaginationNext(props: PaginationNextProps): react.JSX.Element;
3524
+ declare function PaginationEllipsis({ className, ...props }: PaginationEllipsisProps): react.JSX.Element;
3525
+ declare function Pagination(props: PaginationProps): react.JSX.Element;
3526
+
3527
+ type PopoverPlacement = "top" | "bottom" | "left" | "right";
3528
+ type PopoverAlign = "start" | "center" | "end";
3529
+ interface PopoverProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
3530
+ children?: ReactNode;
3531
+ open?: boolean;
3532
+ defaultOpen?: boolean;
3533
+ onOpenChange?: (open: boolean) => void;
3534
+ }
3535
+ interface PopoverTriggerProps extends Omit<HTMLAttributes<HTMLElement>, "children"> {
3536
+ children: ReactNode;
3537
+ }
3538
+ interface PopoverContentProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
3539
+ children: ReactNode;
3540
+ placement?: PopoverPlacement;
3541
+ align?: PopoverAlign;
3542
+ }
3543
+ interface PopOverProps extends Omit<HTMLAttributes<HTMLDivElement>, "children" | "content"> {
3544
+ trigger: ReactNode;
3545
+ content: ReactNode;
3546
+ placement?: PopoverPlacement;
3547
+ align?: PopoverAlign;
3548
+ }
3549
+ type PopOverAlign = PopoverAlign;
3550
+
3551
+ declare function Popover({ children, className, open: openProp, defaultOpen, onOpenChange, ...props }: PopoverProps): react.JSX.Element;
3552
+ declare function PopoverTrigger({ children, className, ...props }: PopoverTriggerProps): react.JSX.Element;
3553
+ declare function PopoverContent({ children, placement, align, className, style: styleProp, ...props }: PopoverContentProps): react.JSX.Element | null;
3554
+ declare function PopOver({ trigger, content, placement, align, className, ...props }: PopOverProps): react.JSX.Element;
3555
+
3556
+ interface SkeletonProps extends HTMLAttributes<HTMLDivElement> {
3557
+ width?: number | string;
3558
+ height?: number | string;
3559
+ /** `rectangle` (default) or `circle` */
3560
+ shape?: "rectangle" | "circle";
3561
+ }
3562
+
3563
+ declare function Skeleton({ width, height, shape, className, style, ...props }: SkeletonProps): react.JSX.Element;
3564
+
3565
+ interface SliderProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "onChange" | "size"> {
3566
+ min?: number;
3567
+ max?: number;
3568
+ step?: number;
3569
+ value?: number;
3570
+ onChange?: (value: number) => void;
3571
+ /** Rail thickness: `sm` (2px) / `md` (4px, default). */
3572
+ size?: "sm" | "md";
3573
+ }
3574
+
3575
+ declare function Slider({ min, max, step, value, defaultValue, onChange, onInput, size, className, style, ...props }: SliderProps): react.JSX.Element;
3576
+
3577
+ interface CarouselProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
3578
+ /** Controlled slide index (0-based). */
3579
+ index?: number;
3580
+ /** Uncontrolled initial index. */
3581
+ defaultIndex?: number;
3582
+ onIndexChange?: (index: number) => void;
3583
+ /** Wrap from last → first / first → last. */
3584
+ loop?: boolean;
3585
+ }
3586
+ interface CarouselContentProps extends HTMLAttributes<HTMLDivElement> {
3587
+ }
3588
+ interface CarouselItemProps extends HTMLAttributes<HTMLDivElement> {
3589
+ }
3590
+ interface CarouselControlsProps extends HTMLAttributes<HTMLDivElement> {
3591
+ }
3592
+ interface CarouselPreviousProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3593
+ }
3594
+ interface CarouselNextProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3595
+ }
3596
+ interface CarouselIndicatorsProps extends HTMLAttributes<HTMLDivElement> {
3597
+ }
3598
+
3599
+ declare function Carousel({ children, className, index: indexControlled, defaultIndex, onIndexChange, loop, onKeyDown, ...props }: CarouselProps): react.JSX.Element;
3600
+ declare function CarouselContent({ className, children, ...props }: CarouselContentProps): react.JSX.Element;
3601
+ declare const CarouselItem: react.ForwardRefExoticComponent<CarouselItemProps & react.RefAttributes<HTMLDivElement>>;
3602
+ declare function CarouselControls({ className, children, ...props }: CarouselControlsProps): react.JSX.Element;
3603
+ declare function CarouselPrevious({ className, disabled, onClick, ...props }: CarouselPreviousProps): react.JSX.Element;
3604
+ declare function CarouselNext({ className, disabled, onClick, ...props }: CarouselNextProps): react.JSX.Element;
3605
+ declare function CarouselIndicators({ className, ...props }: CarouselIndicatorsProps): react.JSX.Element | null;
3606
+
3607
+ type BubbleVariant = "default" | "secondary" | "muted" | "tinted" | "outline" | "ghost" | "destructive";
3608
+ type BubbleAlign = "start" | "end";
3609
+ type BubbleReactionsSide = "top" | "bottom";
3610
+ interface BubbleProps extends HTMLAttributes<HTMLDivElement> {
3611
+ variant?: BubbleVariant;
3612
+ align?: BubbleAlign;
3613
+ }
3614
+ type BubbleContentProps = HTMLAttributes<HTMLDivElement>;
3615
+ interface BubbleReactionsProps extends HTMLAttributes<HTMLDivElement> {
3616
+ side?: BubbleReactionsSide;
3617
+ align?: BubbleAlign;
3618
+ }
3619
+ type BubbleGroupProps = HTMLAttributes<HTMLDivElement>;
3620
+
3621
+ declare function BubbleGroup({ className, ...props }: BubbleGroupProps): react.JSX.Element;
3622
+ declare function Bubble({ variant, align, className, style, children, ...props }: BubbleProps): react.JSX.Element;
3623
+ declare function BubbleContent({ className, ...props }: BubbleContentProps): react.JSX.Element;
3624
+ declare function BubbleReactions({ side, align: alignProp, className, ...props }: BubbleReactionsProps): react.JSX.Element;
3625
+
3626
+ type StepperOrientation = "horizontal" | "vertical";
3627
+ type StepperState = "complete" | "current" | "upcoming";
3628
+ interface StepperProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
3629
+ /** Controlled active step value. */
3630
+ value?: number;
3631
+ /** Uncontrolled initial step. */
3632
+ defaultValue?: number;
3633
+ onValueChange?: (value: number) => void;
3634
+ orientation?: StepperOrientation;
3635
+ }
3636
+ interface StepperListProps extends OlHTMLAttributes<HTMLOListElement> {
3637
+ }
3638
+ interface StepperItemProps extends LiHTMLAttributes<HTMLLIElement> {
3639
+ /** Step identity used with `Stepper` value. */
3640
+ value: number;
3641
+ disabled?: boolean;
3642
+ }
3643
+ interface StepperIndicatorProps extends HTMLAttributes<HTMLSpanElement> {
3644
+ }
3645
+ interface StepperContentProps extends HTMLAttributes<HTMLDivElement> {
3646
+ }
3647
+ interface StepperTitleProps extends HTMLAttributes<HTMLSpanElement> {
3648
+ }
3649
+ interface StepperDescriptionProps extends HTMLAttributes<HTMLSpanElement> {
3650
+ }
3651
+ interface StepperSeparatorProps extends LiHTMLAttributes<HTMLLIElement> {
3652
+ }
3653
+
3654
+ declare function Stepper({ children, className, style, value: valueControlled, defaultValue, onValueChange, orientation, ...props }: StepperProps): react.JSX.Element;
3655
+ declare namespace Stepper {
3656
+ var displayName: string;
3657
+ }
3658
+ declare function StepperList({ className, children, ...props }: StepperListProps): react.JSX.Element;
3659
+ declare namespace StepperList {
3660
+ var displayName: string;
3661
+ }
3662
+ declare function StepperItem({ value: itemValue, disabled, className, onClick, onKeyDown, children, ...props }: StepperItemProps): react.JSX.Element;
3663
+ declare namespace StepperItem {
3664
+ var displayName: string;
3665
+ }
3666
+ declare function StepperIndicator({ className, children, ...props }: StepperIndicatorProps): react.JSX.Element;
3667
+ declare namespace StepperIndicator {
3668
+ var displayName: string;
3669
+ }
3670
+ declare function StepperContent({ className, ...props }: StepperContentProps): react.JSX.Element;
3671
+ declare namespace StepperContent {
3672
+ var displayName: string;
3673
+ }
3674
+ declare function StepperTitle({ className, ...props }: StepperTitleProps): react.JSX.Element;
3675
+ declare namespace StepperTitle {
3676
+ var displayName: string;
3677
+ }
3678
+ declare function StepperDescription({ className, ...props }: StepperDescriptionProps): react.JSX.Element;
3679
+ declare namespace StepperDescription {
3680
+ var displayName: string;
3681
+ }
3682
+ declare function StepperSeparator({ className, ...props }: StepperSeparatorProps): react.JSX.Element;
3683
+ declare namespace StepperSeparator {
3684
+ var displayName: string;
3685
+ }
3686
+
3687
+ type ResizableOrientation = "horizontal" | "vertical";
3688
+ interface ResizablePanelGroupProps extends Omit<HTMLAttributes<HTMLDivElement>, "onResize"> {
3689
+ orientation?: ResizableOrientation;
3690
+ /** Fires after a resize settles with panel sizes in order (percentages summing to ~100). */
3691
+ onLayout?: (sizes: number[]) => void;
3692
+ }
3693
+ interface ResizablePanelProps extends HTMLAttributes<HTMLDivElement> {
3694
+ /** Initial size as a percentage of the group (default 50). */
3695
+ defaultSize?: number;
3696
+ /** Minimum size percentage (default 10). */
3697
+ minSize?: number;
3698
+ /** Maximum size percentage (default 100). */
3699
+ maxSize?: number;
3700
+ /** Controlled size percentage. */
3701
+ size?: number;
3702
+ onResize?: (size: number) => void;
3703
+ }
3704
+ interface ResizableHandleProps extends HTMLAttributes<HTMLDivElement> {
3705
+ /** Show a small grip affordance on the separator. */
3706
+ withHandle?: boolean;
3707
+ disabled?: boolean;
3708
+ }
3709
+
3710
+ declare function ResizablePanelGroup({ children, className, style, orientation, onLayout, ...props }: ResizablePanelGroupProps): react.JSX.Element;
3711
+ declare function ResizablePanel({ children, className, style, defaultSize, minSize, maxSize, size: sizeControlled, onResize, ...props }: ResizablePanelProps): react.JSX.Element;
3712
+ declare function ResizableHandle({ className, style, withHandle, disabled, onKeyDown, onPointerDown, "aria-label": ariaLabel, "aria-keyshortcuts": ariaKeyshortcuts, ...props }: ResizableHandleProps): react.JSX.Element;
3713
+
3714
+ type ScrollAreaOrientation = "vertical" | "horizontal";
3715
+ /** When the custom scrollbar is visible. */
3716
+ type ScrollAreaType = "hover" | "always";
3717
+ interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
3718
+ type?: ScrollAreaType;
3719
+ }
3720
+ type ScrollAreaViewportProps = HTMLAttributes<HTMLDivElement>;
3721
+ interface ScrollAreaScrollbarProps extends HTMLAttributes<HTMLDivElement> {
3722
+ orientation?: ScrollAreaOrientation;
3723
+ }
3724
+ type ScrollAreaThumbProps = HTMLAttributes<HTMLDivElement>;
3725
+
3726
+ declare const ScrollArea: react.ForwardRefExoticComponent<ScrollAreaProps & react.RefAttributes<HTMLDivElement>>;
3727
+ declare const ScrollAreaViewport: react.ForwardRefExoticComponent<ScrollAreaViewportProps & react.RefAttributes<HTMLDivElement>>;
3728
+ declare function ScrollAreaScrollbar({ orientation, className, children, onPointerDown, ...props }: ScrollAreaScrollbarProps): react.JSX.Element;
3729
+ declare function ScrollAreaThumb({ className, style, ...props }: ScrollAreaThumbProps): react.JSX.Element;
3730
+
3731
+ interface SpinButtonProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
3732
+ value: number;
3733
+ onChange: (value: number) => void;
3734
+ placeholder?: string;
3735
+ min?: number;
3736
+ max?: number;
3737
+ step?: number;
3738
+ /** Field size — shares Input / Select control height tokens (`sm` / `md` / `lg`). */
3739
+ size?: "sm" | "md" | "lg";
3740
+ disabled?: boolean;
3741
+ }
3742
+
3743
+ declare function SpinButton({ value, onChange, placeholder, min, max, step, size, disabled, className, onKeyDown, ...props }: SpinButtonProps): react.JSX.Element;
3744
+
3745
+ type ToastVariant = "default" | "success" | "error" | "warning";
3746
+ type ToastSwipeDirection = "top" | "right" | "bottom" | "left";
3747
+ type ToastAction = ReactNode | {
3748
+ label: string;
3749
+ onClick?: () => void;
3750
+ variant?: "primary" | "secondary";
3751
+ };
3752
+ interface ToastProps extends HTMLAttributes<HTMLDivElement> {
3753
+ variant?: ToastVariant;
3754
+ message?: ReactNode;
3755
+ iconName?: string;
3756
+ icon?: ReactNode;
3757
+ action?: ToastAction;
3758
+ stackState?: "entering" | "idle" | "leaving";
3759
+ }
3760
+ interface ToastOptions {
3761
+ variant?: ToastVariant;
3762
+ iconName?: string;
3763
+ icon?: ReactNode;
3764
+ action?: ToastAction;
3765
+ duration?: number;
3766
+ }
3767
+ interface ToasterProps {
3768
+ /** Max visible toasts. Default `1` (new toast replaces the previous). */
3769
+ maxToasts?: number;
3770
+ /** Allowed swipe-to-dismiss directions. Default `["top"]` (fixed top-center placement). */
3771
+ swipeDirections?: ToastSwipeDirection[];
3772
+ className?: string;
3773
+ }
3774
+ interface ToastRecord {
3775
+ id: string;
3776
+ message?: ReactNode;
3777
+ variant: ToastVariant;
3778
+ iconName?: string;
3779
+ icon?: ReactNode;
3780
+ action?: ToastAction;
3781
+ duration: number;
3782
+ phase: "entering" | "idle" | "leaving";
3783
+ }
3784
+
3785
+ declare function dismissToast(id?: string): void;
3786
+ /** Show a toast. Replaces any visible toast (Material snackbar-style). */
3787
+ declare function toast(message: ToastRecord["message"], options?: ToastOptions): string;
3788
+ declare const Toast: react.ForwardRefExoticComponent<ToastProps & react.RefAttributes<HTMLDivElement>>;
3789
+ declare function Toaster({ maxToasts, swipeDirections, className, }: ToasterProps): react.ReactPortal | null;
3790
+
3791
+ type TreeSize = "sm" | "md" | "lg";
3792
+
3793
+ interface TreeProps extends HTMLAttributes<HTMLUListElement> {
3794
+ size?: TreeSize;
3795
+ defaultExpanded?: string[];
3796
+ expanded?: string[];
3797
+ onExpandedChange?: (value: string[]) => void;
3798
+ defaultSelected?: string;
3799
+ selected?: string | null;
3800
+ onSelectedChange?: (value: string | null) => void;
3801
+ }
3802
+ declare function Tree({ size, defaultExpanded, expanded: expandedProp, onExpandedChange, defaultSelected, selected: selectedProp, onSelectedChange, className, children, ...props }: TreeProps): react.JSX.Element;
3803
+
3804
+ interface TreeItemProps extends Omit<HTMLAttributes<HTMLLIElement>, "value"> {
3805
+ value: string;
3806
+ disabled?: boolean;
3807
+ children?: ReactNode;
3808
+ }
3809
+ declare function TreeItem({ value, disabled, className, children, ...props }: TreeItemProps): react.JSX.Element;
3810
+
3811
+ interface TreeItemTriggerProps extends HTMLAttributes<HTMLDivElement> {
3812
+ }
3813
+ declare function TreeItemTrigger({ className, children, onClick, onKeyDown, ...props }: TreeItemTriggerProps): react.JSX.Element;
3814
+
3815
+ interface TreeItemContentProps extends HTMLAttributes<HTMLUListElement> {
3816
+ }
3817
+ declare function TreeItemContent({ className, children, ...props }: TreeItemContentProps): react.JSX.Element;
3818
+
3819
+ /** Web Kit MCP Tooltip — `position` */
3820
+ type TooltipPosition = "Top" | "Left" | "Bottom" | "Right";
3821
+ /** Web Kit MCP Tooltip — `align` */
3822
+ type TooltipAlign = "Start" | "Center" | "End";
3823
+ interface TooltipProps extends Omit<HTMLAttributes<HTMLDivElement>, "title" | "content"> {
3824
+ trigger: ReactNode;
3825
+ content: ReactNode;
3826
+ position?: TooltipPosition;
3827
+ align?: TooltipAlign;
3828
+ delayMs?: number;
3829
+ open?: boolean;
3830
+ defaultOpen?: boolean;
3831
+ onOpenChange?: (open: boolean) => void;
3832
+ }
3833
+
3834
+ declare function Tooltip({ trigger, content, position, align, delayMs, open: ctrlOpen, defaultOpen, onOpenChange, className, ...props }: TooltipProps): react.JSX.Element;
3835
+
3836
+ type ChartSeriesColor = keyof typeof componentColorTokens.chart.series;
3837
+ /** Interaction state on a bar / point — same vocabulary as Card / Table. */
3838
+ type ChartItemState = "default" | "hover" | "selected";
3839
+ interface ChartProps extends HTMLAttributes<HTMLDivElement> {
3840
+ }
3841
+ interface ChartBodyProps extends HTMLAttributes<HTMLDivElement> {
3842
+ }
3843
+ interface ChartContentProps extends HTMLAttributes<HTMLDivElement> {
3844
+ }
3845
+ interface ChartPlotProps extends HTMLAttributes<HTMLDivElement> {
3846
+ /** Accessible name for the chart graphic. */
3847
+ "aria-label"?: string;
3848
+ }
3849
+ interface ChartGridProps extends Omit<SVGAttributes<SVGGElement>, "values"> {
3850
+ /** Horizontal grid line count (includes baseline). Default `5`. */
3851
+ lines?: number;
3852
+ /** Y scale maximum — auto-derived from `values` when omitted. */
3853
+ max?: number;
3854
+ /** Source values used to derive a nice scale when `max` is omitted. */
3855
+ values?: number[];
3856
+ }
3857
+ interface ChartBarsProps extends Omit<SVGAttributes<SVGGElement>, "color" | "values"> {
3858
+ values: number[];
3859
+ max?: number;
3860
+ seriesColor?: ChartSeriesColor;
3861
+ /** Full-height track behind each bar. Default `false`. */
3862
+ showTrack?: boolean;
3863
+ }
3864
+ interface ChartLineProps extends Omit<SVGAttributes<SVGGElement>, "color" | "values"> {
3865
+ values: number[];
3866
+ max?: number;
3867
+ seriesColor?: ChartSeriesColor;
3868
+ /** Area fill under the line. Default `false`. */
3869
+ showArea?: boolean;
3870
+ /** Point markers on each value. Default `false` (hover still shows the active point). */
3871
+ showPoints?: boolean;
3872
+ }
3873
+ interface ChartYAxisLabelsProps extends HTMLAttributes<HTMLDivElement> {
3874
+ lines?: number;
3875
+ max?: number;
3876
+ values?: number[];
3877
+ formatTick?: (value: number) => string;
3878
+ }
3879
+ interface ChartAxisLabelsProps extends HTMLAttributes<HTMLDivElement> {
3880
+ labels: string[];
3881
+ /** `bar` centers on band slots; `line` centers on point positions. Default `bar`. */
3882
+ align?: "bar" | "line";
3883
+ }
3884
+ interface ChartTooltipProps extends HTMLAttributes<HTMLDivElement> {
3885
+ }
3886
+ interface ChartLegendProps extends HTMLAttributes<HTMLUListElement> {
3887
+ }
3888
+ interface ChartLegendItemProps extends HTMLAttributes<HTMLLIElement> {
3889
+ seriesColor: ChartSeriesColor;
3890
+ }
3891
+
3892
+ declare function Chart({ className, children, ...props }: ChartProps): react.JSX.Element;
3893
+ declare function ChartBody({ className, ...props }: ChartBodyProps): react.JSX.Element;
3894
+ declare function ChartContent({ className, ...props }: ChartContentProps): react.JSX.Element;
3895
+ declare function ChartPlot({ className, children, "aria-label": ariaLabel, ...props }: ChartPlotProps): react.JSX.Element;
3896
+ declare function ChartTooltip({ className, children, style, ...props }: ChartTooltipProps): react.JSX.Element | null;
3897
+ declare function ChartYAxisLabels({ lines, max, values, formatTick, className, ...props }: ChartYAxisLabelsProps): react.JSX.Element;
3898
+ declare function ChartGrid({ lines, max, values, className, ...props }: ChartGridProps): react.JSX.Element;
3899
+ declare function ChartBars({ values, max, seriesColor, showTrack, className, ...props }: ChartBarsProps): react.JSX.Element;
3900
+ declare function ChartLine({ values, max, seriesColor, showArea, showPoints, className, ...props }: ChartLineProps): react.JSX.Element;
3901
+ declare function ChartAxisLabels({ labels, align, className, ...props }: ChartAxisLabelsProps): react.JSX.Element;
3902
+ declare function ChartLegend({ className, ...props }: ChartLegendProps): react.JSX.Element;
3903
+ declare function ChartLegendItem({ seriesColor, className, children, style, ...props }: ChartLegendItemProps): react.JSX.Element;
3904
+
3905
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemSlotProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, Alert, AlertAction, type AlertActionProps, AlertActions, type AlertActionsProps, AlertBody, type AlertBodyProps, AlertClose, type AlertCloseProps, AlertContent, type AlertContentProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, AlertRow, type AlertRowProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarBadge, type AvatarBadgeProps, type AvatarColor, type AvatarColorIcon, type AvatarColorImage, type AvatarColorInitials, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarItem, type AvatarLayout, type AvatarPresenceStatus, type AvatarProps, type AvatarSize, AvatarText, type AvatarTextProps, Avatars, type AvatarsLayout, type AvatarsProps, type AvatarsSize, Badge, type BadgeLayout, type BadgeProps, type BadgeVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbEllipsisTrigger, type BreadcrumbEllipsisTriggerProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Bubble, type BubbleAlign, BubbleContent, type BubbleContentProps, BubbleGroup, type BubbleGroupProps, type BubbleProps, BubbleReactions, type BubbleReactionsProps, type BubbleReactionsSide, type BubbleVariant, Button, type ButtonLayout, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarMode, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardHeaderMain, type CardProps, CardTitle, Carousel, CarouselContent, type CarouselContentProps, CarouselControls, type CarouselControlsProps, CarouselIndicators, type CarouselIndicatorsProps, CarouselItem, type CarouselItemProps, CarouselNext, type CarouselNextProps, CarouselPrevious, type CarouselPreviousProps, type CarouselProps, Chart, ChartAxisLabels, type ChartAxisLabelsProps, ChartBars, type ChartBarsProps, ChartBody, type ChartBodyProps, ChartContent, type ChartContentProps, ChartGrid, type ChartGridProps, type ChartItemState, ChartLegend, ChartLegendItem, type ChartLegendItemProps, type ChartLegendProps, ChartLine, type ChartLineProps, ChartPlot, type ChartPlotProps, type ChartProps, type ChartSeriesColor, ChartTooltip, type ChartTooltipProps, ChartYAxisLabels, type ChartYAxisLabelsProps, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipSize, type ChipVariant, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandFilter, CommandGroup, CommandGroupHeading, type CommandGroupHeadingProps, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, Container, type ContainerProps, type ControlSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Divider, type DividerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, type MenuAlign as DropdownAlign, DropdownContent, type DropdownContentProps, DropdownGroup, DropdownItem, type DropdownItemProps, DropdownLabel, DropdownPortal, DropdownSeparator, DropdownShortcut, DropdownSub, DropdownSubContent, type DropdownSubContentProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Field, FieldError, type FieldErrorProps, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldRequired, type FieldRequiredProps, Footer, FooterBottom, type FooterBottomProps, FooterBrand, FooterBrandDescription, type FooterBrandDescriptionProps, FooterBrandName, type FooterBrandNameProps, type FooterBrandProps, FooterContent, type FooterContentProps, FooterCopyright, type FooterCopyrightProps, FooterExplore, type FooterExploreProps, FooterGroup, FooterGroupLabel, type FooterGroupLabelProps, type FooterGroupProps, FooterLink, type FooterLinkProps, FooterLocale, type FooterLocaleProps, FooterLogo, type FooterLogoProps, FooterMeta, FooterMetaEnd, type FooterMetaEndProps, type FooterMetaProps, FooterNav, type FooterNavProps, type FooterProps, FooterSocial, type FooterSocialProps, Grid, GridItem, type GridItemProps, type GridProps, Input, InputOTP, type InputOTPProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, Label, type LabelProps, LabelRequired, type LabelRequiredProps, type LayoutAlign, type LayoutAs, type LayoutBackground, type LayoutBorderColor, type LayoutDirection, type LayoutGap, type LayoutJustify, type LayoutRadius, type LayoutStroke, type LayoutWrap, Link, type LinkProps, Menu, MenuDivider, MenuItem, MenuList, MenuPopover, type MenuProps, MenuSection, MenuSub, MenuSubContent, type MenuSubContentProps, MenuSubTrigger, type MenuSubTriggerProps, MenuTrigger, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRootProps, PopOver, type PopOverAlign, type PopOverProps, Popover, type PopoverAlign, PopoverContent, type PopoverContentProps, type PopoverPlacement, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, ProgressStepper, ProgressStepperItem, type ProgressStepperItemProps, ProgressStepperLabel, type ProgressStepperLabelProps, ProgressStepperList, type ProgressStepperListProps, ProgressStepperMarker, type ProgressStepperMarkerProps, type ProgressStepperProps, type ProgressStepperState, Radio, RadioInput, type RadioInputProps, type RadioProps, ResizableHandle, type ResizableHandleProps, type ResizableOrientation, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, type ScrollAreaType, ScrollAreaViewport, type ScrollAreaViewportProps, SearchField, SearchFieldClear, type SearchFieldClearProps, SearchFieldIcon, type SearchFieldIconProps, SearchFieldInput, type SearchFieldInputProps, type SearchFieldProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSection, type SelectSectionProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerAppearance, type SelectTriggerProps, SelectValue, type SelectValueProps, SelectViewport, type SelectViewportProps, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarLink, type SidebarLinkProps, SidebarNav, type SidebarNavProps, SidebarPeek, SidebarPeekEdge, type SidebarPeekEdgeProps, SidebarPeekInset, type SidebarPeekInsetProps, type SidebarPeekMode, SidebarPeekPanel, type SidebarPeekPanelProps, SidebarPeekPin, type SidebarPeekPinProps, type SidebarPeekProps, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Spacer, type SpacerProps, SpinButton, type SpinButtonProps, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, Stack, type StackProps, Stepper, StepperContent, type StepperContentProps, StepperDescription, type StepperDescriptionProps, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperList, type StepperListProps, type StepperOrientation, type StepperProps, StepperSeparator, type StepperSeparatorProps, type StepperState, StepperTitle, type StepperTitleProps, Toggle as Switch, type ToggleProps as SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Chip as Tag, type ChipProps as TagProps, type ChipSize as TagSize, type ChipVariant as TagVariant, Text, type TextProps, Textarea, type TextareaProps, Toast, type ToastAction, type ToastOptions, type ToastProps, type ToastSwipeDirection, type ToastVariant, Toaster, type ToasterProps, Toggle, type ToggleProps, Tooltip, type TooltipAlign, type TooltipPosition, type TooltipProps, Tree, TreeItem, TreeItemContent, type TreeItemContentProps, type TreeItemProps, TreeItemTrigger, type TreeItemTriggerProps, type TreeProps, type TreeSize, WebIcon, type WebIconProps, breadcrumbLinkClassName, componentColorTokens, componentTextClass, componentTypographyTokens, defaultCommandFilter, dismissToast, footerLinkClassName, footerLocaleLinkClassName, footerLocaleTriggerClassName, footerSocialLinkClassName, semanticTextClass, sizedComponentTextClass, toast, useSidebarPeek };