@refineui/react 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,8 +1,10 @@
1
+ import * as _refineui_tokens from '@refineui/tokens';
1
2
  import { SemanticColorName, SemanticTextName, SpacingTokens, BorderRadiusTokens, StrokeWidthTokens, FoundationSizeName } from '@refineui/tokens';
2
3
  export { FoundationTypographyName, SEMANTIC_TEXT, SemanticTextName, componentSizeFoundationKeys, componentSizes, foundationSizes } from '@refineui/tokens';
3
4
  import { SemanticTextTokenRef } from '@refineui/utilities';
4
5
  import * as react from 'react';
5
6
  import { CSSProperties, ReactNode, ButtonHTMLAttributes, InputHTMLAttributes, HTMLAttributes, ElementType, TextareaHTMLAttributes, ImgHTMLAttributes, LiHTMLAttributes, OlHTMLAttributes, TableHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, AnchorHTMLAttributes, LabelHTMLAttributes, SVGAttributes } from 'react';
7
+ export { Slot, SlotProps } from '@refineui/utilities/react';
6
8
 
7
9
  /**
8
10
  * Component Color Tokens (Web Kit language layer)
@@ -402,6 +404,7 @@ declare const componentColorTokens: {
402
404
  };
403
405
  readonly tooltip: {
404
406
  readonly default: {
407
+ /** Menu / Select floating panel semantic */
405
408
  readonly background: Readonly<{
406
409
  type: "semantic";
407
410
  name: SemanticColorName;
@@ -410,10 +413,15 @@ declare const componentColorTokens: {
410
413
  type: "semantic";
411
414
  name: SemanticColorName;
412
415
  }>;
416
+ readonly border: Readonly<{
417
+ type: "semantic";
418
+ name: SemanticColorName;
419
+ }>;
413
420
  };
414
421
  };
415
422
  readonly popover: {
416
423
  readonly default: {
424
+ /** Menu / Select floating panel semantic */
417
425
  readonly background: Readonly<{
418
426
  type: "semantic";
419
427
  name: SemanticColorName;
@@ -879,12 +887,12 @@ declare const componentColorTokens: {
879
887
  };
880
888
  readonly warning: {
881
889
  readonly background: Readonly<{
882
- type: "palette";
883
- name: string;
890
+ type: "semantic";
891
+ name: SemanticColorName;
884
892
  }>;
885
893
  readonly foreground: Readonly<{
886
- type: "palette";
887
- name: string;
894
+ type: "semantic";
895
+ name: SemanticColorName;
888
896
  }>;
889
897
  };
890
898
  readonly danger: {
@@ -1208,6 +1216,7 @@ declare const componentColorTokens: {
1208
1216
  };
1209
1217
  };
1210
1218
  readonly toast: {
1219
+ /** Menu / Select panel semantic — solid, not frosted */
1211
1220
  readonly background: Readonly<{
1212
1221
  type: "semantic";
1213
1222
  name: SemanticColorName;
@@ -1216,6 +1225,10 @@ declare const componentColorTokens: {
1216
1225
  type: "semantic";
1217
1226
  name: SemanticColorName;
1218
1227
  }>;
1228
+ readonly border: Readonly<{
1229
+ type: "semantic";
1230
+ name: SemanticColorName;
1231
+ }>;
1219
1232
  readonly accent: {
1220
1233
  readonly default: Readonly<{
1221
1234
  type: "semantic";
@@ -1388,6 +1401,7 @@ declare const componentColorTokens: {
1388
1401
  };
1389
1402
  readonly menu: {
1390
1403
  readonly panel: {
1404
+ /** Matches Menu.style panel classes */
1391
1405
  readonly background: Readonly<{
1392
1406
  type: "semantic";
1393
1407
  name: SemanticColorName;
@@ -1680,12 +1694,12 @@ declare const componentColorTokens: {
1680
1694
  name: SemanticColorName;
1681
1695
  }>;
1682
1696
  readonly label: Readonly<{
1683
- type: "palette";
1684
- name: string;
1697
+ type: "semantic";
1698
+ name: SemanticColorName;
1685
1699
  }>;
1686
1700
  readonly icon: Readonly<{
1687
- type: "palette";
1688
- name: string;
1701
+ type: "semantic";
1702
+ name: SemanticColorName;
1689
1703
  }>;
1690
1704
  };
1691
1705
  readonly avatar: {
@@ -2424,242 +2438,3682 @@ declare const componentTypographyTokens: {
2424
2438
  };
2425
2439
  };
2426
2440
 
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;
2441
+ declare const componentTokens: {
2442
+ readonly color: {
2443
+ readonly webIcon: {
2444
+ readonly default: "currentColor";
2445
+ readonly primary: Readonly<{
2446
+ type: "semantic";
2447
+ name: _refineui_tokens.SemanticColorName;
2448
+ }>;
2449
+ readonly secondary: Readonly<{
2450
+ type: "semantic";
2451
+ name: _refineui_tokens.SemanticColorName;
2452
+ }>;
2453
+ readonly disabled: Readonly<{
2454
+ type: "semantic";
2455
+ name: _refineui_tokens.SemanticColorName;
2456
+ }>;
2457
+ readonly inversed: Readonly<{
2458
+ type: "semantic";
2459
+ name: _refineui_tokens.SemanticColorName;
2460
+ }>;
2461
+ };
2462
+ readonly button: {
2463
+ readonly primary: {
2464
+ readonly hoverBackground: Readonly<{
2465
+ type: "semantic";
2466
+ name: _refineui_tokens.SemanticColorName;
2467
+ }>;
2468
+ readonly activeBackground: Readonly<{
2469
+ type: "semantic";
2470
+ name: _refineui_tokens.SemanticColorName;
2471
+ }>;
2472
+ readonly disabledBackground: Readonly<{
2473
+ type: "semantic";
2474
+ name: _refineui_tokens.SemanticColorName;
2475
+ }>;
2476
+ readonly disabledForeground: Readonly<{
2477
+ type: "semantic";
2478
+ name: _refineui_tokens.SemanticColorName;
2479
+ }>;
2480
+ readonly appearance: {
2481
+ readonly background: Readonly<{
2482
+ type: "semantic";
2483
+ name: _refineui_tokens.SemanticColorName;
2484
+ }>;
2485
+ readonly foreground: Readonly<{
2486
+ type: "semantic";
2487
+ name: _refineui_tokens.SemanticColorName;
2488
+ }>;
2489
+ };
2490
+ readonly states: {
2491
+ readonly hover: {
2492
+ readonly background: Readonly<{
2493
+ type: "semantic";
2494
+ name: _refineui_tokens.SemanticColorName;
2495
+ }>;
2496
+ };
2497
+ readonly pressed: {
2498
+ readonly background: Readonly<{
2499
+ type: "semantic";
2500
+ name: _refineui_tokens.SemanticColorName;
2501
+ }>;
2502
+ };
2503
+ readonly disabled: {
2504
+ readonly background: Readonly<{
2505
+ type: "semantic";
2506
+ name: _refineui_tokens.SemanticColorName;
2507
+ }>;
2508
+ readonly foreground: Readonly<{
2509
+ type: "semantic";
2510
+ name: _refineui_tokens.SemanticColorName;
2511
+ }>;
2512
+ };
2513
+ };
2514
+ readonly background: Readonly<{
2515
+ type: "semantic";
2516
+ name: _refineui_tokens.SemanticColorName;
2517
+ }>;
2518
+ readonly foreground: Readonly<{
2519
+ type: "semantic";
2520
+ name: _refineui_tokens.SemanticColorName;
2521
+ }>;
2522
+ };
2523
+ readonly secondary: {
2524
+ readonly background: Readonly<{
2525
+ type: "semantic";
2526
+ name: _refineui_tokens.SemanticColorName;
2527
+ }>;
2528
+ readonly foreground: Readonly<{
2529
+ type: "semantic";
2530
+ name: _refineui_tokens.SemanticColorName;
2531
+ }>;
2532
+ readonly border: Readonly<{
2533
+ type: "semantic";
2534
+ name: _refineui_tokens.SemanticColorName;
2535
+ }>;
2536
+ readonly hoverBackground: Readonly<{
2537
+ type: "semantic";
2538
+ name: _refineui_tokens.SemanticColorName;
2539
+ }>;
2540
+ readonly hoverBorder: Readonly<{
2541
+ type: "semantic";
2542
+ name: _refineui_tokens.SemanticColorName;
2543
+ }>;
2544
+ readonly activeBackground: Readonly<{
2545
+ type: "semantic";
2546
+ name: _refineui_tokens.SemanticColorName;
2547
+ }>;
2548
+ readonly disabledBackground: Readonly<{
2549
+ type: "semantic";
2550
+ name: _refineui_tokens.SemanticColorName;
2551
+ }>;
2552
+ readonly disabledBorder: Readonly<{
2553
+ type: "semantic";
2554
+ name: _refineui_tokens.SemanticColorName;
2555
+ }>;
2556
+ readonly disabledForeground: Readonly<{
2557
+ type: "semantic";
2558
+ name: _refineui_tokens.SemanticColorName;
2559
+ }>;
2560
+ };
2561
+ readonly outline: {
2562
+ readonly background: "transparent";
2563
+ readonly foreground: Readonly<{
2564
+ type: "semantic";
2565
+ name: _refineui_tokens.SemanticColorName;
2566
+ }>;
2567
+ readonly border: Readonly<{
2568
+ type: "semantic";
2569
+ name: _refineui_tokens.SemanticColorName;
2570
+ }>;
2571
+ readonly hoverBorder: Readonly<{
2572
+ type: "semantic";
2573
+ name: _refineui_tokens.SemanticColorName;
2574
+ }>;
2575
+ readonly activeBorder: Readonly<{
2576
+ type: "semantic";
2577
+ name: _refineui_tokens.SemanticColorName;
2578
+ }>;
2579
+ readonly disabledBorder: Readonly<{
2580
+ type: "semantic";
2581
+ name: _refineui_tokens.SemanticColorName;
2582
+ }>;
2583
+ readonly disabledForeground: Readonly<{
2584
+ type: "semantic";
2585
+ name: _refineui_tokens.SemanticColorName;
2586
+ }>;
2587
+ };
2588
+ readonly ghost: {
2589
+ readonly background: "transparent";
2590
+ readonly foreground: Readonly<{
2591
+ type: "semantic";
2592
+ name: _refineui_tokens.SemanticColorName;
2593
+ }>;
2594
+ readonly hoverBackground: Readonly<{
2595
+ type: "semantic";
2596
+ name: _refineui_tokens.SemanticColorName;
2597
+ }>;
2598
+ readonly hoverForeground: Readonly<{
2599
+ type: "semantic";
2600
+ name: _refineui_tokens.SemanticColorName;
2601
+ }>;
2602
+ readonly activeBackground: Readonly<{
2603
+ type: "semantic";
2604
+ name: _refineui_tokens.SemanticColorName;
2605
+ }>;
2606
+ readonly activeForeground: Readonly<{
2607
+ type: "semantic";
2608
+ name: _refineui_tokens.SemanticColorName;
2609
+ }>;
2610
+ readonly disabledForeground: Readonly<{
2611
+ type: "semantic";
2612
+ name: _refineui_tokens.SemanticColorName;
2613
+ }>;
2614
+ };
2615
+ };
2616
+ readonly input: {
2617
+ readonly text: Readonly<{
2618
+ type: "semantic";
2619
+ name: _refineui_tokens.SemanticColorName;
2620
+ }>;
2621
+ readonly placeholder: Readonly<{
2622
+ type: "semantic";
2623
+ name: _refineui_tokens.SemanticColorName;
2624
+ }>;
2625
+ readonly background: Readonly<{
2626
+ type: "semantic";
2627
+ name: _refineui_tokens.SemanticColorName;
2628
+ }>;
2629
+ readonly disabledBackground: Readonly<{
2630
+ type: "semantic";
2631
+ name: _refineui_tokens.SemanticColorName;
2632
+ }>;
2633
+ readonly border: {
2634
+ readonly default: Readonly<{
2635
+ type: "semantic";
2636
+ name: _refineui_tokens.SemanticColorName;
2637
+ }>;
2638
+ readonly focus: Readonly<{
2639
+ type: "semantic";
2640
+ name: _refineui_tokens.SemanticColorName;
2641
+ }>;
2642
+ readonly error: Readonly<{
2643
+ type: "semantic";
2644
+ name: _refineui_tokens.SemanticColorName;
2645
+ }>;
2646
+ readonly success: Readonly<{
2647
+ type: "semantic";
2648
+ name: _refineui_tokens.SemanticColorName;
2649
+ }>;
2650
+ readonly disabled: Readonly<{
2651
+ type: "semantic";
2652
+ name: _refineui_tokens.SemanticColorName;
2653
+ }>;
2654
+ };
2655
+ };
2656
+ readonly textarea: {
2657
+ readonly text: Readonly<{
2658
+ type: "semantic";
2659
+ name: _refineui_tokens.SemanticColorName;
2660
+ }>;
2661
+ readonly placeholder: Readonly<{
2662
+ type: "semantic";
2663
+ name: _refineui_tokens.SemanticColorName;
2664
+ }>;
2665
+ readonly background: Readonly<{
2666
+ type: "semantic";
2667
+ name: _refineui_tokens.SemanticColorName;
2668
+ }>;
2669
+ readonly disabledBackground: Readonly<{
2670
+ type: "semantic";
2671
+ name: _refineui_tokens.SemanticColorName;
2672
+ }>;
2673
+ readonly border: {
2674
+ readonly default: Readonly<{
2675
+ type: "semantic";
2676
+ name: _refineui_tokens.SemanticColorName;
2677
+ }>;
2678
+ readonly focus: Readonly<{
2679
+ type: "semantic";
2680
+ name: _refineui_tokens.SemanticColorName;
2681
+ }>;
2682
+ readonly error: Readonly<{
2683
+ type: "semantic";
2684
+ name: _refineui_tokens.SemanticColorName;
2685
+ }>;
2686
+ readonly success: Readonly<{
2687
+ type: "semantic";
2688
+ name: _refineui_tokens.SemanticColorName;
2689
+ }>;
2690
+ readonly disabled: Readonly<{
2691
+ type: "semantic";
2692
+ name: _refineui_tokens.SemanticColorName;
2693
+ }>;
2694
+ };
2695
+ };
2696
+ readonly pagination: {
2697
+ readonly navIcon: {
2698
+ readonly default: Readonly<{
2699
+ type: "semantic";
2700
+ name: _refineui_tokens.SemanticColorName;
2701
+ }>;
2702
+ readonly disabled: Readonly<{
2703
+ type: "semantic";
2704
+ name: _refineui_tokens.SemanticColorName;
2705
+ }>;
2706
+ };
2707
+ readonly page: {
2708
+ readonly text: Readonly<{
2709
+ type: "semantic";
2710
+ name: _refineui_tokens.SemanticColorName;
2711
+ }>;
2712
+ readonly border: Readonly<{
2713
+ type: "semantic";
2714
+ name: _refineui_tokens.SemanticColorName;
2715
+ }>;
2716
+ readonly background: Readonly<{
2717
+ type: "semantic";
2718
+ name: _refineui_tokens.SemanticColorName;
2719
+ }>;
2720
+ readonly hoverBackground: Readonly<{
2721
+ type: "semantic";
2722
+ name: _refineui_tokens.SemanticColorName;
2723
+ }>;
2724
+ readonly hoverBorder: Readonly<{
2725
+ type: "semantic";
2726
+ name: _refineui_tokens.SemanticColorName;
2727
+ }>;
2728
+ readonly selectedBackground: Readonly<{
2729
+ type: "semantic";
2730
+ name: _refineui_tokens.SemanticColorName;
2731
+ }>;
2732
+ readonly selectedBorder: Readonly<{
2733
+ type: "semantic";
2734
+ name: _refineui_tokens.SemanticColorName;
2735
+ }>;
2736
+ readonly disabledBackground: Readonly<{
2737
+ type: "semantic";
2738
+ name: _refineui_tokens.SemanticColorName;
2739
+ }>;
2740
+ readonly disabledBorder: Readonly<{
2741
+ type: "semantic";
2742
+ name: _refineui_tokens.SemanticColorName;
2743
+ }>;
2744
+ };
2745
+ };
2746
+ readonly dropdown: {
2747
+ readonly trigger: {
2748
+ readonly icon: Readonly<{
2749
+ type: "semantic";
2750
+ name: _refineui_tokens.SemanticColorName;
2751
+ }>;
2752
+ readonly background: Readonly<{
2753
+ type: "semantic";
2754
+ name: _refineui_tokens.SemanticColorName;
2755
+ }>;
2756
+ readonly border: Readonly<{
2757
+ type: "semantic";
2758
+ name: _refineui_tokens.SemanticColorName;
2759
+ }>;
2760
+ };
2761
+ readonly menu: {
2762
+ readonly background: Readonly<{
2763
+ type: "semantic";
2764
+ name: _refineui_tokens.SemanticColorName;
2765
+ }>;
2766
+ readonly border: Readonly<{
2767
+ type: "semantic";
2768
+ name: _refineui_tokens.SemanticColorName;
2769
+ }>;
2770
+ readonly title: Readonly<{
2771
+ type: "semantic";
2772
+ name: _refineui_tokens.SemanticColorName;
2773
+ }>;
2774
+ readonly itemText: Readonly<{
2775
+ type: "semantic";
2776
+ name: _refineui_tokens.SemanticColorName;
2777
+ }>;
2778
+ readonly itemTextSubtle: Readonly<{
2779
+ type: "semantic";
2780
+ name: _refineui_tokens.SemanticColorName;
2781
+ }>;
2782
+ readonly itemHoverBackground: Readonly<{
2783
+ type: "semantic";
2784
+ name: _refineui_tokens.SemanticColorName;
2785
+ }>;
2786
+ readonly itemDisabledText: Readonly<{
2787
+ type: "semantic";
2788
+ name: _refineui_tokens.SemanticColorName;
2789
+ }>;
2790
+ };
2791
+ };
2792
+ readonly select: {
2793
+ readonly text: Readonly<{
2794
+ type: "semantic";
2795
+ name: _refineui_tokens.SemanticColorName;
2796
+ }>;
2797
+ readonly placeholder: Readonly<{
2798
+ type: "semantic";
2799
+ name: _refineui_tokens.SemanticColorName;
2800
+ }>;
2801
+ readonly background: Readonly<{
2802
+ type: "semantic";
2803
+ name: _refineui_tokens.SemanticColorName;
2804
+ }>;
2805
+ readonly disabledBackground: Readonly<{
2806
+ type: "semantic";
2807
+ name: _refineui_tokens.SemanticColorName;
2808
+ }>;
2809
+ readonly border: {
2810
+ readonly default: Readonly<{
2811
+ type: "semantic";
2812
+ name: _refineui_tokens.SemanticColorName;
2813
+ }>;
2814
+ readonly disabled: Readonly<{
2815
+ type: "semantic";
2816
+ name: _refineui_tokens.SemanticColorName;
2817
+ }>;
2818
+ readonly error: Readonly<{
2819
+ type: "semantic";
2820
+ name: _refineui_tokens.SemanticColorName;
2821
+ }>;
2822
+ readonly success: Readonly<{
2823
+ type: "semantic";
2824
+ name: _refineui_tokens.SemanticColorName;
2825
+ }>;
2826
+ };
2827
+ };
2828
+ readonly tooltip: {
2829
+ readonly default: {
2830
+ readonly background: Readonly<{
2831
+ type: "semantic";
2832
+ name: _refineui_tokens.SemanticColorName;
2833
+ }>;
2834
+ readonly foreground: Readonly<{
2835
+ type: "semantic";
2836
+ name: _refineui_tokens.SemanticColorName;
2837
+ }>;
2838
+ readonly border: Readonly<{
2839
+ type: "semantic";
2840
+ name: _refineui_tokens.SemanticColorName;
2841
+ }>;
2842
+ };
2843
+ };
2844
+ readonly popover: {
2845
+ readonly default: {
2846
+ readonly background: Readonly<{
2847
+ type: "semantic";
2848
+ name: _refineui_tokens.SemanticColorName;
2849
+ }>;
2850
+ readonly foreground: Readonly<{
2851
+ type: "semantic";
2852
+ name: _refineui_tokens.SemanticColorName;
2853
+ }>;
2854
+ readonly border: Readonly<{
2855
+ type: "semantic";
2856
+ name: _refineui_tokens.SemanticColorName;
2857
+ }>;
2858
+ };
2859
+ readonly inverted: {
2860
+ readonly background: Readonly<{
2861
+ type: "semantic";
2862
+ name: _refineui_tokens.SemanticColorName;
2863
+ }>;
2864
+ readonly foreground: Readonly<{
2865
+ type: "semantic";
2866
+ name: _refineui_tokens.SemanticColorName;
2867
+ }>;
2868
+ readonly border: Readonly<{
2869
+ type: "semantic";
2870
+ name: _refineui_tokens.SemanticColorName;
2871
+ }>;
2872
+ };
2873
+ };
2874
+ readonly field: {
2875
+ readonly label: Readonly<{
2876
+ type: "semantic";
2877
+ name: _refineui_tokens.SemanticColorName;
2878
+ }>;
2879
+ readonly required: Readonly<{
2880
+ type: "semantic";
2881
+ name: _refineui_tokens.SemanticColorName;
2882
+ }>;
2883
+ readonly hint: Readonly<{
2884
+ type: "semantic";
2885
+ name: _refineui_tokens.SemanticColorName;
2886
+ }>;
2887
+ readonly error: Readonly<{
2888
+ type: "semantic";
2889
+ name: _refineui_tokens.SemanticColorName;
2890
+ }>;
2891
+ };
2892
+ readonly label: {
2893
+ readonly text: Readonly<{
2894
+ type: "semantic";
2895
+ name: _refineui_tokens.SemanticColorName;
2896
+ }>;
2897
+ readonly disabledText: Readonly<{
2898
+ type: "semantic";
2899
+ name: _refineui_tokens.SemanticColorName;
2900
+ }>;
2901
+ readonly required: Readonly<{
2902
+ type: "semantic";
2903
+ name: _refineui_tokens.SemanticColorName;
2904
+ }>;
2905
+ };
2906
+ readonly checkbox: {
2907
+ readonly label: {
2908
+ readonly default: Readonly<{
2909
+ type: "semantic";
2910
+ name: _refineui_tokens.SemanticColorName;
2911
+ }>;
2912
+ readonly description: Readonly<{
2913
+ type: "semantic";
2914
+ name: _refineui_tokens.SemanticColorName;
2915
+ }>;
2916
+ readonly disabled: Readonly<{
2917
+ type: "semantic";
2918
+ name: _refineui_tokens.SemanticColorName;
2919
+ }>;
2920
+ };
2921
+ readonly checkIcon: {
2922
+ readonly default: Readonly<{
2923
+ type: "semantic";
2924
+ name: _refineui_tokens.SemanticColorName;
2925
+ }>;
2926
+ readonly disabled: Readonly<{
2927
+ type: "semantic";
2928
+ name: _refineui_tokens.SemanticColorName;
2929
+ }>;
2930
+ };
2931
+ };
2932
+ readonly radio: {
2933
+ readonly label: {
2934
+ readonly default: Readonly<{
2935
+ type: "semantic";
2936
+ name: _refineui_tokens.SemanticColorName;
2937
+ }>;
2938
+ readonly description: Readonly<{
2939
+ type: "semantic";
2940
+ name: _refineui_tokens.SemanticColorName;
2941
+ }>;
2942
+ readonly disabled: Readonly<{
2943
+ type: "semantic";
2944
+ name: _refineui_tokens.SemanticColorName;
2945
+ }>;
2946
+ };
2947
+ readonly control: {
2948
+ readonly dot: Readonly<{
2949
+ type: "semantic";
2950
+ name: _refineui_tokens.SemanticColorName;
2951
+ }>;
2952
+ readonly dotHover: Readonly<{
2953
+ type: "semantic";
2954
+ name: _refineui_tokens.SemanticColorName;
2955
+ }>;
2956
+ readonly background: Readonly<{
2957
+ type: "semantic";
2958
+ name: _refineui_tokens.SemanticColorName;
2959
+ }>;
2960
+ readonly disabledDot: Readonly<{
2961
+ type: "semantic";
2962
+ name: _refineui_tokens.SemanticColorName;
2963
+ }>;
2964
+ readonly borderDefault: Readonly<{
2965
+ type: "semantic";
2966
+ name: _refineui_tokens.SemanticColorName;
2967
+ }>;
2968
+ readonly borderFocus: Readonly<{
2969
+ type: "semantic";
2970
+ name: _refineui_tokens.SemanticColorName;
2971
+ }>;
2972
+ readonly borderDisabled: Readonly<{
2973
+ type: "semantic";
2974
+ name: _refineui_tokens.SemanticColorName;
2975
+ }>;
2976
+ };
2977
+ };
2978
+ readonly toggle: {
2979
+ readonly track: {
2980
+ readonly on: Readonly<{
2981
+ type: "semantic";
2982
+ name: _refineui_tokens.SemanticColorName;
2983
+ }>;
2984
+ readonly off: Readonly<{
2985
+ type: "semantic";
2986
+ name: _refineui_tokens.SemanticColorName;
2987
+ }>;
2988
+ readonly hoverOn: Readonly<{
2989
+ type: "semantic";
2990
+ name: _refineui_tokens.SemanticColorName;
2991
+ }>;
2992
+ readonly activeOn: Readonly<{
2993
+ type: "semantic";
2994
+ name: _refineui_tokens.SemanticColorName;
2995
+ }>;
2996
+ readonly hoverOff: Readonly<{
2997
+ type: "semantic";
2998
+ name: _refineui_tokens.SemanticColorName;
2999
+ }>;
3000
+ readonly activeOff: Readonly<{
3001
+ type: "semantic";
3002
+ name: _refineui_tokens.SemanticColorName;
3003
+ }>;
3004
+ readonly disabledOff: Readonly<{
3005
+ type: "semantic";
3006
+ name: _refineui_tokens.SemanticColorName;
3007
+ }>;
3008
+ readonly disabledOn: Readonly<{
3009
+ type: "semantic";
3010
+ name: _refineui_tokens.SemanticColorName;
3011
+ }>;
3012
+ };
3013
+ readonly thumb: {
3014
+ readonly default: Readonly<{
3015
+ type: "semantic";
3016
+ name: _refineui_tokens.SemanticColorName;
3017
+ }>;
3018
+ readonly disabledOff: Readonly<{
3019
+ type: "semantic";
3020
+ name: _refineui_tokens.SemanticColorName;
3021
+ }>;
3022
+ readonly disabledOn: Readonly<{
3023
+ type: "semantic";
3024
+ name: _refineui_tokens.SemanticColorName;
3025
+ }>;
3026
+ };
3027
+ };
3028
+ readonly switch: {
3029
+ readonly track: {
3030
+ readonly on: Readonly<{
3031
+ type: "semantic";
3032
+ name: _refineui_tokens.SemanticColorName;
3033
+ }>;
3034
+ readonly off: Readonly<{
3035
+ type: "semantic";
3036
+ name: _refineui_tokens.SemanticColorName;
3037
+ }>;
3038
+ readonly hoverOn: Readonly<{
3039
+ type: "semantic";
3040
+ name: _refineui_tokens.SemanticColorName;
3041
+ }>;
3042
+ readonly activeOn: Readonly<{
3043
+ type: "semantic";
3044
+ name: _refineui_tokens.SemanticColorName;
3045
+ }>;
3046
+ readonly hoverOff: Readonly<{
3047
+ type: "semantic";
3048
+ name: _refineui_tokens.SemanticColorName;
3049
+ }>;
3050
+ readonly activeOff: Readonly<{
3051
+ type: "semantic";
3052
+ name: _refineui_tokens.SemanticColorName;
3053
+ }>;
3054
+ readonly disabledOff: Readonly<{
3055
+ type: "semantic";
3056
+ name: _refineui_tokens.SemanticColorName;
3057
+ }>;
3058
+ readonly disabledOn: Readonly<{
3059
+ type: "semantic";
3060
+ name: _refineui_tokens.SemanticColorName;
3061
+ }>;
3062
+ };
3063
+ readonly thumb: {
3064
+ readonly default: Readonly<{
3065
+ type: "semantic";
3066
+ name: _refineui_tokens.SemanticColorName;
3067
+ }>;
3068
+ readonly disabledOff: Readonly<{
3069
+ type: "semantic";
3070
+ name: _refineui_tokens.SemanticColorName;
3071
+ }>;
3072
+ readonly disabledOn: Readonly<{
3073
+ type: "semantic";
3074
+ name: _refineui_tokens.SemanticColorName;
3075
+ }>;
3076
+ };
3077
+ };
3078
+ readonly dialog: {
3079
+ readonly overlay: Readonly<{
3080
+ type: "semantic";
3081
+ name: _refineui_tokens.SemanticColorName;
3082
+ }>;
3083
+ readonly content: {
3084
+ readonly background: Readonly<{
3085
+ type: "semantic";
3086
+ name: _refineui_tokens.SemanticColorName;
3087
+ }>;
3088
+ };
3089
+ readonly header: {
3090
+ readonly foreground: Readonly<{
3091
+ type: "semantic";
3092
+ name: _refineui_tokens.SemanticColorName;
3093
+ }>;
3094
+ };
3095
+ readonly title: {
3096
+ readonly foreground: Readonly<{
3097
+ type: "semantic";
3098
+ name: _refineui_tokens.SemanticColorName;
3099
+ }>;
3100
+ };
3101
+ readonly description: {
3102
+ readonly foreground: Readonly<{
3103
+ type: "semantic";
3104
+ name: _refineui_tokens.SemanticColorName;
3105
+ }>;
3106
+ };
3107
+ readonly close: {
3108
+ readonly icon: "currentColor";
3109
+ };
3110
+ readonly panel: {
3111
+ readonly background: Readonly<{
3112
+ type: "semantic";
3113
+ name: _refineui_tokens.SemanticColorName;
3114
+ }>;
3115
+ readonly title: Readonly<{
3116
+ type: "semantic";
3117
+ name: _refineui_tokens.SemanticColorName;
3118
+ }>;
3119
+ readonly description: Readonly<{
3120
+ type: "semantic";
3121
+ name: _refineui_tokens.SemanticColorName;
3122
+ }>;
3123
+ };
3124
+ };
3125
+ readonly drawer: {
3126
+ readonly overlay: Readonly<{
3127
+ type: "semantic";
3128
+ name: _refineui_tokens.SemanticColorName;
3129
+ }>;
3130
+ readonly content: {
3131
+ readonly background: Readonly<{
3132
+ type: "semantic";
3133
+ name: _refineui_tokens.SemanticColorName;
3134
+ }>;
3135
+ };
3136
+ readonly header: {
3137
+ readonly foreground: Readonly<{
3138
+ type: "semantic";
3139
+ name: _refineui_tokens.SemanticColorName;
3140
+ }>;
3141
+ readonly divider: Readonly<{
3142
+ type: "semantic";
3143
+ name: _refineui_tokens.SemanticColorName;
3144
+ }>;
3145
+ };
3146
+ readonly title: {
3147
+ readonly foreground: Readonly<{
3148
+ type: "semantic";
3149
+ name: _refineui_tokens.SemanticColorName;
3150
+ }>;
3151
+ };
3152
+ readonly description: {
3153
+ readonly foreground: Readonly<{
3154
+ type: "semantic";
3155
+ name: _refineui_tokens.SemanticColorName;
3156
+ }>;
3157
+ };
3158
+ readonly body: {
3159
+ readonly foreground: Readonly<{
3160
+ type: "semantic";
3161
+ name: _refineui_tokens.SemanticColorName;
3162
+ }>;
3163
+ readonly divider: Readonly<{
3164
+ type: "semantic";
3165
+ name: _refineui_tokens.SemanticColorName;
3166
+ }>;
3167
+ };
3168
+ readonly footer: {
3169
+ readonly divider: Readonly<{
3170
+ type: "semantic";
3171
+ name: _refineui_tokens.SemanticColorName;
3172
+ }>;
3173
+ };
3174
+ readonly close: {
3175
+ readonly icon: "currentColor";
3176
+ };
3177
+ readonly panel: {
3178
+ readonly background: Readonly<{
3179
+ type: "semantic";
3180
+ name: _refineui_tokens.SemanticColorName;
3181
+ }>;
3182
+ readonly title: Readonly<{
3183
+ type: "semantic";
3184
+ name: _refineui_tokens.SemanticColorName;
3185
+ }>;
3186
+ readonly description: Readonly<{
3187
+ type: "semantic";
3188
+ name: _refineui_tokens.SemanticColorName;
3189
+ }>;
3190
+ readonly divider: Readonly<{
3191
+ type: "semantic";
3192
+ name: _refineui_tokens.SemanticColorName;
3193
+ }>;
3194
+ readonly body: Readonly<{
3195
+ type: "semantic";
3196
+ name: _refineui_tokens.SemanticColorName;
3197
+ }>;
3198
+ };
3199
+ };
3200
+ readonly alert: {
3201
+ readonly background: Readonly<{
3202
+ type: "semantic";
3203
+ name: _refineui_tokens.SemanticColorName;
3204
+ }>;
3205
+ readonly border: Readonly<{
3206
+ type: "semantic";
3207
+ name: _refineui_tokens.SemanticColorName;
3208
+ }>;
3209
+ readonly title: Readonly<{
3210
+ type: "semantic";
3211
+ name: _refineui_tokens.SemanticColorName;
3212
+ }>;
3213
+ readonly description: {
3214
+ readonly default: Readonly<{
3215
+ type: "semantic";
3216
+ name: _refineui_tokens.SemanticColorName;
3217
+ }>;
3218
+ readonly info: Readonly<{
3219
+ type: "semantic";
3220
+ name: _refineui_tokens.SemanticColorName;
3221
+ }>;
3222
+ readonly success: Readonly<{
3223
+ type: "semantic";
3224
+ name: _refineui_tokens.SemanticColorName;
3225
+ }>;
3226
+ readonly warning: Readonly<{
3227
+ type: "semantic";
3228
+ name: _refineui_tokens.SemanticColorName;
3229
+ }>;
3230
+ readonly danger: Readonly<{
3231
+ type: "semantic";
3232
+ name: _refineui_tokens.SemanticColorName;
3233
+ }>;
3234
+ readonly custom: Readonly<{
3235
+ type: "semantic";
3236
+ name: _refineui_tokens.SemanticColorName;
3237
+ }>;
3238
+ };
3239
+ readonly accent: {
3240
+ readonly default: Readonly<{
3241
+ type: "semantic";
3242
+ name: _refineui_tokens.SemanticColorName;
3243
+ }>;
3244
+ readonly info: Readonly<{
3245
+ type: "semantic";
3246
+ name: _refineui_tokens.SemanticColorName;
3247
+ }>;
3248
+ readonly success: Readonly<{
3249
+ type: "semantic";
3250
+ name: _refineui_tokens.SemanticColorName;
3251
+ }>;
3252
+ readonly warning: Readonly<{
3253
+ type: "semantic";
3254
+ name: _refineui_tokens.SemanticColorName;
3255
+ }>;
3256
+ readonly danger: Readonly<{
3257
+ type: "semantic";
3258
+ name: _refineui_tokens.SemanticColorName;
3259
+ }>;
3260
+ readonly custom: Readonly<{
3261
+ type: "semantic";
3262
+ name: _refineui_tokens.SemanticColorName;
3263
+ }>;
3264
+ };
3265
+ };
3266
+ readonly badge: {
3267
+ readonly default: {
3268
+ readonly background: Readonly<{
3269
+ type: "semantic";
3270
+ name: _refineui_tokens.SemanticColorName;
3271
+ }>;
3272
+ readonly foreground: Readonly<{
3273
+ type: "semantic";
3274
+ name: _refineui_tokens.SemanticColorName;
3275
+ }>;
3276
+ };
3277
+ readonly neutral: {
3278
+ readonly background: Readonly<{
3279
+ type: "semantic";
3280
+ name: _refineui_tokens.SemanticColorName;
3281
+ }>;
3282
+ readonly foreground: Readonly<{
3283
+ type: "semantic";
3284
+ name: _refineui_tokens.SemanticColorName;
3285
+ }>;
3286
+ };
3287
+ readonly outline: {
3288
+ readonly background: "transparent";
3289
+ readonly foreground: Readonly<{
3290
+ type: "semantic";
3291
+ name: _refineui_tokens.SemanticColorName;
3292
+ }>;
3293
+ readonly border: Readonly<{
3294
+ type: "semantic";
3295
+ name: _refineui_tokens.SemanticColorName;
3296
+ }>;
3297
+ };
3298
+ readonly success: {
3299
+ readonly background: Readonly<{
3300
+ type: "semantic";
3301
+ name: _refineui_tokens.SemanticColorName;
3302
+ }>;
3303
+ readonly foreground: Readonly<{
3304
+ type: "semantic";
3305
+ name: _refineui_tokens.SemanticColorName;
3306
+ }>;
3307
+ };
3308
+ readonly warning: {
3309
+ readonly background: Readonly<{
3310
+ type: "semantic";
3311
+ name: _refineui_tokens.SemanticColorName;
3312
+ }>;
3313
+ readonly foreground: Readonly<{
3314
+ type: "semantic";
3315
+ name: _refineui_tokens.SemanticColorName;
3316
+ }>;
3317
+ };
3318
+ readonly danger: {
3319
+ readonly background: Readonly<{
3320
+ type: "semantic";
3321
+ name: _refineui_tokens.SemanticColorName;
3322
+ }>;
3323
+ readonly foreground: Readonly<{
3324
+ type: "semantic";
3325
+ name: _refineui_tokens.SemanticColorName;
3326
+ }>;
3327
+ };
3328
+ };
3329
+ readonly chip: {
3330
+ readonly default: {
3331
+ readonly background: Readonly<{
3332
+ type: "semantic";
3333
+ name: _refineui_tokens.SemanticColorName;
3334
+ }>;
3335
+ readonly foreground: Readonly<{
3336
+ type: "semantic";
3337
+ name: _refineui_tokens.SemanticColorName;
3338
+ }>;
3339
+ readonly hoverBackground: Readonly<{
3340
+ type: "semantic";
3341
+ name: _refineui_tokens.SemanticColorName;
3342
+ }>;
3343
+ readonly activeBackground: Readonly<{
3344
+ type: "semantic";
3345
+ name: _refineui_tokens.SemanticColorName;
3346
+ }>;
3347
+ readonly disabledBackground: Readonly<{
3348
+ type: "semantic";
3349
+ name: _refineui_tokens.SemanticColorName;
3350
+ }>;
3351
+ readonly disabledForeground: Readonly<{
3352
+ type: "semantic";
3353
+ name: _refineui_tokens.SemanticColorName;
3354
+ }>;
3355
+ };
3356
+ readonly outline: {
3357
+ readonly background: "transparent";
3358
+ readonly foreground: Readonly<{
3359
+ type: "semantic";
3360
+ name: _refineui_tokens.SemanticColorName;
3361
+ }>;
3362
+ readonly border: Readonly<{
3363
+ type: "semantic";
3364
+ name: _refineui_tokens.SemanticColorName;
3365
+ }>;
3366
+ readonly hoverBorder: Readonly<{
3367
+ type: "semantic";
3368
+ name: _refineui_tokens.SemanticColorName;
3369
+ }>;
3370
+ readonly activeBorder: Readonly<{
3371
+ type: "semantic";
3372
+ name: _refineui_tokens.SemanticColorName;
3373
+ }>;
3374
+ readonly disabledBorder: Readonly<{
3375
+ type: "semantic";
3376
+ name: _refineui_tokens.SemanticColorName;
3377
+ }>;
3378
+ readonly disabledForeground: Readonly<{
3379
+ type: "semantic";
3380
+ name: _refineui_tokens.SemanticColorName;
3381
+ }>;
3382
+ };
3383
+ readonly filled: {
3384
+ readonly background: Readonly<{
3385
+ type: "semantic";
3386
+ name: _refineui_tokens.SemanticColorName;
3387
+ }>;
3388
+ readonly foreground: Readonly<{
3389
+ type: "semantic";
3390
+ name: _refineui_tokens.SemanticColorName;
3391
+ }>;
3392
+ readonly hoverBackground: Readonly<{
3393
+ type: "semantic";
3394
+ name: _refineui_tokens.SemanticColorName;
3395
+ }>;
3396
+ readonly activeBackground: Readonly<{
3397
+ type: "semantic";
3398
+ name: _refineui_tokens.SemanticColorName;
3399
+ }>;
3400
+ readonly disabledBackground: Readonly<{
3401
+ type: "semantic";
3402
+ name: _refineui_tokens.SemanticColorName;
3403
+ }>;
3404
+ readonly disabledForeground: Readonly<{
3405
+ type: "semantic";
3406
+ name: _refineui_tokens.SemanticColorName;
3407
+ }>;
3408
+ };
3409
+ readonly remove: {
3410
+ readonly icon: "currentColor";
3411
+ };
3412
+ };
3413
+ readonly tag: {
3414
+ readonly default: {
3415
+ readonly background: Readonly<{
3416
+ type: "semantic";
3417
+ name: _refineui_tokens.SemanticColorName;
3418
+ }>;
3419
+ readonly foreground: Readonly<{
3420
+ type: "semantic";
3421
+ name: _refineui_tokens.SemanticColorName;
3422
+ }>;
3423
+ };
3424
+ readonly outline: {
3425
+ readonly background: "transparent";
3426
+ readonly foreground: Readonly<{
3427
+ type: "semantic";
3428
+ name: _refineui_tokens.SemanticColorName;
3429
+ }>;
3430
+ readonly border: Readonly<{
3431
+ type: "semantic";
3432
+ name: _refineui_tokens.SemanticColorName;
3433
+ }>;
3434
+ };
3435
+ readonly filled: {
3436
+ readonly background: Readonly<{
3437
+ type: "semantic";
3438
+ name: _refineui_tokens.SemanticColorName;
3439
+ }>;
3440
+ readonly foreground: Readonly<{
3441
+ type: "semantic";
3442
+ name: _refineui_tokens.SemanticColorName;
3443
+ }>;
3444
+ };
3445
+ };
3446
+ readonly progress: {
3447
+ readonly track: Readonly<{
3448
+ type: "semantic";
3449
+ name: _refineui_tokens.SemanticColorName;
3450
+ }>;
3451
+ readonly indicator: {
3452
+ readonly default: Readonly<{
3453
+ type: "semantic";
3454
+ name: _refineui_tokens.SemanticColorName;
3455
+ }>;
3456
+ readonly success: Readonly<{
3457
+ type: "semantic";
3458
+ name: _refineui_tokens.SemanticColorName;
3459
+ }>;
3460
+ readonly warning: Readonly<{
3461
+ type: "semantic";
3462
+ name: _refineui_tokens.SemanticColorName;
3463
+ }>;
3464
+ readonly danger: Readonly<{
3465
+ type: "semantic";
3466
+ name: _refineui_tokens.SemanticColorName;
3467
+ }>;
3468
+ };
3469
+ };
3470
+ readonly chart: {
3471
+ readonly plotBackground: Readonly<{
3472
+ type: "semantic";
3473
+ name: _refineui_tokens.SemanticColorName;
3474
+ }>;
3475
+ readonly grid: Readonly<{
3476
+ type: "semantic";
3477
+ name: _refineui_tokens.SemanticColorName;
3478
+ }>;
3479
+ readonly gridBaseline: Readonly<{
3480
+ type: "semantic";
3481
+ name: _refineui_tokens.SemanticColorName;
3482
+ }>;
3483
+ readonly axis: Readonly<{
3484
+ type: "semantic";
3485
+ name: _refineui_tokens.SemanticColorName;
3486
+ }>;
3487
+ readonly pointStroke: Readonly<{
3488
+ type: "semantic";
3489
+ name: _refineui_tokens.SemanticColorName;
3490
+ }>;
3491
+ readonly cursor: Readonly<{
3492
+ type: "semantic";
3493
+ name: _refineui_tokens.SemanticColorName;
3494
+ }>;
3495
+ readonly tooltip: {
3496
+ readonly background: Readonly<{
3497
+ type: "semantic";
3498
+ name: _refineui_tokens.SemanticColorName;
3499
+ }>;
3500
+ readonly foreground: Readonly<{
3501
+ type: "semantic";
3502
+ name: _refineui_tokens.SemanticColorName;
3503
+ }>;
3504
+ readonly muted: Readonly<{
3505
+ type: "semantic";
3506
+ name: _refineui_tokens.SemanticColorName;
3507
+ }>;
3508
+ readonly border: Readonly<{
3509
+ type: "semantic";
3510
+ name: _refineui_tokens.SemanticColorName;
3511
+ }>;
3512
+ };
3513
+ readonly series: {
3514
+ readonly brand: Readonly<{
3515
+ type: "semantic";
3516
+ name: _refineui_tokens.SemanticColorName;
3517
+ }>;
3518
+ readonly info: Readonly<{
3519
+ type: "semantic";
3520
+ name: _refineui_tokens.SemanticColorName;
3521
+ }>;
3522
+ readonly success: Readonly<{
3523
+ type: "semantic";
3524
+ name: _refineui_tokens.SemanticColorName;
3525
+ }>;
3526
+ readonly warning: Readonly<{
3527
+ type: "semantic";
3528
+ name: _refineui_tokens.SemanticColorName;
3529
+ }>;
3530
+ readonly error: Readonly<{
3531
+ type: "semantic";
3532
+ name: _refineui_tokens.SemanticColorName;
3533
+ }>;
3534
+ readonly discovery: Readonly<{
3535
+ type: "semantic";
3536
+ name: _refineui_tokens.SemanticColorName;
3537
+ }>;
3538
+ };
3539
+ readonly seriesSubtle: {
3540
+ readonly brand: Readonly<{
3541
+ type: "semantic";
3542
+ name: _refineui_tokens.SemanticColorName;
3543
+ }>;
3544
+ readonly info: Readonly<{
3545
+ type: "semantic";
3546
+ name: _refineui_tokens.SemanticColorName;
3547
+ }>;
3548
+ readonly success: Readonly<{
3549
+ type: "semantic";
3550
+ name: _refineui_tokens.SemanticColorName;
3551
+ }>;
3552
+ readonly warning: Readonly<{
3553
+ type: "semantic";
3554
+ name: _refineui_tokens.SemanticColorName;
3555
+ }>;
3556
+ readonly error: Readonly<{
3557
+ type: "semantic";
3558
+ name: _refineui_tokens.SemanticColorName;
3559
+ }>;
3560
+ readonly discovery: Readonly<{
3561
+ type: "semantic";
3562
+ name: _refineui_tokens.SemanticColorName;
3563
+ }>;
3564
+ };
3565
+ };
3566
+ readonly spinner: {
3567
+ readonly track: Readonly<{
3568
+ type: "semantic";
3569
+ name: _refineui_tokens.SemanticColorName;
3570
+ }>;
3571
+ readonly indicator: Readonly<{
3572
+ type: "semantic";
3573
+ name: _refineui_tokens.SemanticColorName;
3574
+ }>;
3575
+ readonly label: Readonly<{
3576
+ type: "semantic";
3577
+ name: _refineui_tokens.SemanticColorName;
3578
+ }>;
3579
+ };
3580
+ readonly skeleton: {
3581
+ readonly background: Readonly<{
3582
+ type: "semantic";
3583
+ name: _refineui_tokens.SemanticColorName;
3584
+ }>;
3585
+ };
3586
+ readonly carousel: {
3587
+ readonly nav: {
3588
+ readonly background: Readonly<{
3589
+ type: "semantic";
3590
+ name: _refineui_tokens.SemanticColorName;
3591
+ }>;
3592
+ readonly border: Readonly<{
3593
+ type: "semantic";
3594
+ name: _refineui_tokens.SemanticColorName;
3595
+ }>;
3596
+ readonly foreground: Readonly<{
3597
+ type: "semantic";
3598
+ name: _refineui_tokens.SemanticColorName;
3599
+ }>;
3600
+ readonly hoverBackground: Readonly<{
3601
+ type: "semantic";
3602
+ name: _refineui_tokens.SemanticColorName;
3603
+ }>;
3604
+ readonly hoverBorder: Readonly<{
3605
+ type: "semantic";
3606
+ name: _refineui_tokens.SemanticColorName;
3607
+ }>;
3608
+ };
3609
+ readonly indicator: {
3610
+ readonly default: Readonly<{
3611
+ type: "semantic";
3612
+ name: _refineui_tokens.SemanticColorName;
3613
+ }>;
3614
+ readonly selected: Readonly<{
3615
+ type: "semantic";
3616
+ name: _refineui_tokens.SemanticColorName;
3617
+ }>;
3618
+ };
3619
+ };
3620
+ readonly scrollArea: {
3621
+ readonly track: {
3622
+ readonly background: Readonly<{
3623
+ type: "semantic";
3624
+ name: _refineui_tokens.SemanticColorName;
3625
+ }>;
3626
+ };
3627
+ readonly thumb: {
3628
+ readonly background: Readonly<{
3629
+ type: "semantic";
3630
+ name: _refineui_tokens.SemanticColorName;
3631
+ }>;
3632
+ readonly hoverBackground: Readonly<{
3633
+ type: "semantic";
3634
+ name: _refineui_tokens.SemanticColorName;
3635
+ }>;
3636
+ };
3637
+ };
3638
+ readonly toast: {
3639
+ readonly background: Readonly<{
3640
+ type: "semantic";
3641
+ name: _refineui_tokens.SemanticColorName;
3642
+ }>;
3643
+ readonly message: Readonly<{
3644
+ type: "semantic";
3645
+ name: _refineui_tokens.SemanticColorName;
3646
+ }>;
3647
+ readonly border: Readonly<{
3648
+ type: "semantic";
3649
+ name: _refineui_tokens.SemanticColorName;
3650
+ }>;
3651
+ readonly accent: {
3652
+ readonly default: Readonly<{
3653
+ type: "semantic";
3654
+ name: _refineui_tokens.SemanticColorName;
3655
+ }>;
3656
+ readonly success: Readonly<{
3657
+ type: "semantic";
3658
+ name: _refineui_tokens.SemanticColorName;
3659
+ }>;
3660
+ readonly error: Readonly<{
3661
+ type: "semantic";
3662
+ name: _refineui_tokens.SemanticColorName;
3663
+ }>;
3664
+ readonly warning: Readonly<{
3665
+ type: "semantic";
3666
+ name: _refineui_tokens.SemanticColorName;
3667
+ }>;
3668
+ };
3669
+ };
3670
+ readonly toaster: {
3671
+ readonly stackBackground: "transparent";
3672
+ };
3673
+ readonly tabs: {
3674
+ readonly listLine: Readonly<{
3675
+ type: "semantic";
3676
+ name: _refineui_tokens.SemanticColorName;
3677
+ }>;
3678
+ readonly selectedLine: Readonly<{
3679
+ type: "semantic";
3680
+ name: _refineui_tokens.SemanticColorName;
3681
+ }>;
3682
+ readonly itemForeground: Readonly<{
3683
+ type: "semantic";
3684
+ name: _refineui_tokens.SemanticColorName;
3685
+ }>;
3686
+ readonly selectedForeground: Readonly<{
3687
+ type: "semantic";
3688
+ name: _refineui_tokens.SemanticColorName;
3689
+ }>;
3690
+ readonly hoverForeground: Readonly<{
3691
+ type: "semantic";
3692
+ name: _refineui_tokens.SemanticColorName;
3693
+ }>;
3694
+ readonly itemDisabledForeground: Readonly<{
3695
+ type: "semantic";
3696
+ name: _refineui_tokens.SemanticColorName;
3697
+ }>;
3698
+ };
3699
+ readonly segmentedControl: {
3700
+ readonly barBackground: Readonly<{
3701
+ type: "semantic";
3702
+ name: _refineui_tokens.SemanticColorName;
3703
+ }>;
3704
+ readonly barBorder: Readonly<{
3705
+ type: "semantic";
3706
+ name: _refineui_tokens.SemanticColorName;
3707
+ }>;
3708
+ readonly itemForeground: Readonly<{
3709
+ type: "semantic";
3710
+ name: _refineui_tokens.SemanticColorName;
3711
+ }>;
3712
+ readonly itemDisabledForeground: Readonly<{
3713
+ type: "semantic";
3714
+ name: _refineui_tokens.SemanticColorName;
3715
+ }>;
3716
+ readonly selectedBackground: Readonly<{
3717
+ type: "semantic";
3718
+ name: _refineui_tokens.SemanticColorName;
3719
+ }>;
3720
+ readonly selectedForeground: Readonly<{
3721
+ type: "semantic";
3722
+ name: _refineui_tokens.SemanticColorName;
3723
+ }>;
3724
+ readonly selectedHoverBackground: Readonly<{
3725
+ type: "semantic";
3726
+ name: _refineui_tokens.SemanticColorName;
3727
+ }>;
3728
+ readonly selectedDisabledBackground: Readonly<{
3729
+ type: "semantic";
3730
+ name: _refineui_tokens.SemanticColorName;
3731
+ }>;
3732
+ readonly hoverForeground: Readonly<{
3733
+ type: "semantic";
3734
+ name: _refineui_tokens.SemanticColorName;
3735
+ }>;
3736
+ };
3737
+ readonly accordion: {
3738
+ readonly item: {
3739
+ readonly border: Readonly<{
3740
+ type: "semantic";
3741
+ name: _refineui_tokens.SemanticColorName;
3742
+ }>;
3743
+ };
3744
+ readonly trigger: {
3745
+ readonly background: Readonly<{
3746
+ type: "semantic";
3747
+ name: _refineui_tokens.SemanticColorName;
3748
+ }>;
3749
+ readonly foreground: Readonly<{
3750
+ type: "semantic";
3751
+ name: _refineui_tokens.SemanticColorName;
3752
+ }>;
3753
+ readonly border: Readonly<{
3754
+ type: "semantic";
3755
+ name: _refineui_tokens.SemanticColorName;
3756
+ }>;
3757
+ };
3758
+ readonly content: {
3759
+ readonly background: Readonly<{
3760
+ type: "semantic";
3761
+ name: _refineui_tokens.SemanticColorName;
3762
+ }>;
3763
+ readonly foreground: Readonly<{
3764
+ type: "semantic";
3765
+ name: _refineui_tokens.SemanticColorName;
3766
+ }>;
3767
+ readonly border: Readonly<{
3768
+ type: "semantic";
3769
+ name: _refineui_tokens.SemanticColorName;
3770
+ }>;
3771
+ };
3772
+ };
3773
+ readonly breadcrumb: {
3774
+ readonly list: {
3775
+ readonly foreground: Readonly<{
3776
+ type: "semantic";
3777
+ name: _refineui_tokens.SemanticColorName;
3778
+ }>;
3779
+ };
3780
+ readonly item: Readonly<{
3781
+ type: "semantic";
3782
+ name: _refineui_tokens.SemanticColorName;
3783
+ }>;
3784
+ readonly link: {
3785
+ readonly foreground: Readonly<{
3786
+ type: "semantic";
3787
+ name: _refineui_tokens.SemanticColorName;
3788
+ }>;
3789
+ };
3790
+ readonly page: {
3791
+ readonly foreground: Readonly<{
3792
+ type: "semantic";
3793
+ name: _refineui_tokens.SemanticColorName;
3794
+ }>;
3795
+ };
3796
+ readonly current: Readonly<{
3797
+ type: "semantic";
3798
+ name: _refineui_tokens.SemanticColorName;
3799
+ }>;
3800
+ readonly separatorToken: {
3801
+ readonly foreground: Readonly<{
3802
+ type: "semantic";
3803
+ name: _refineui_tokens.SemanticColorName;
3804
+ }>;
3805
+ };
3806
+ readonly separator: Readonly<{
3807
+ type: "semantic";
3808
+ name: _refineui_tokens.SemanticColorName;
3809
+ }>;
3810
+ readonly ellipsisTrigger: {
3811
+ readonly foreground: Readonly<{
3812
+ type: "semantic";
3813
+ name: _refineui_tokens.SemanticColorName;
3814
+ }>;
3815
+ };
3816
+ readonly ellipsis: Readonly<{
3817
+ type: "semantic";
3818
+ name: _refineui_tokens.SemanticColorName;
3819
+ }>;
3820
+ };
3821
+ readonly menu: {
3822
+ readonly panel: {
3823
+ readonly background: Readonly<{
3824
+ type: "semantic";
3825
+ name: _refineui_tokens.SemanticColorName;
3826
+ }>;
3827
+ readonly border: Readonly<{
3828
+ type: "semantic";
3829
+ name: _refineui_tokens.SemanticColorName;
3830
+ }>;
3831
+ };
3832
+ readonly popover: {
3833
+ readonly background: "transparent";
3834
+ };
3835
+ readonly list: {
3836
+ readonly background: Readonly<{
3837
+ type: "semantic";
3838
+ name: _refineui_tokens.SemanticColorName;
3839
+ }>;
3840
+ readonly border: Readonly<{
3841
+ type: "semantic";
3842
+ name: _refineui_tokens.SemanticColorName;
3843
+ }>;
3844
+ };
3845
+ readonly section: Readonly<{
3846
+ type: "semantic";
3847
+ name: _refineui_tokens.SemanticColorName;
3848
+ }>;
3849
+ readonly sectionToken: {
3850
+ readonly foreground: Readonly<{
3851
+ type: "semantic";
3852
+ name: _refineui_tokens.SemanticColorName;
3853
+ }>;
3854
+ };
3855
+ readonly divider: Readonly<{
3856
+ type: "semantic";
3857
+ name: _refineui_tokens.SemanticColorName;
3858
+ }>;
3859
+ readonly dividerToken: {
3860
+ readonly border: Readonly<{
3861
+ type: "semantic";
3862
+ name: _refineui_tokens.SemanticColorName;
3863
+ }>;
3864
+ };
3865
+ readonly item: {
3866
+ readonly text: Readonly<{
3867
+ type: "semantic";
3868
+ name: _refineui_tokens.SemanticColorName;
3869
+ }>;
3870
+ readonly description: Readonly<{
3871
+ type: "semantic";
3872
+ name: _refineui_tokens.SemanticColorName;
3873
+ }>;
3874
+ readonly disabledText: Readonly<{
3875
+ type: "semantic";
3876
+ name: _refineui_tokens.SemanticColorName;
3877
+ }>;
3878
+ readonly hoverBackground: Readonly<{
3879
+ type: "semantic";
3880
+ name: _refineui_tokens.SemanticColorName;
3881
+ }>;
3882
+ readonly activeBackground: Readonly<{
3883
+ type: "semantic";
3884
+ name: _refineui_tokens.SemanticColorName;
3885
+ }>;
3886
+ readonly pressedBackground: Readonly<{
3887
+ type: "semantic";
3888
+ name: _refineui_tokens.SemanticColorName;
3889
+ }>;
3890
+ readonly disabledBackground: Readonly<{
3891
+ type: "semantic";
3892
+ name: _refineui_tokens.SemanticColorName;
3893
+ }>;
3894
+ };
3895
+ };
3896
+ readonly command: {
3897
+ readonly panel: {
3898
+ readonly background: Readonly<{
3899
+ type: "semantic";
3900
+ name: _refineui_tokens.SemanticColorName;
3901
+ }>;
3902
+ readonly border: Readonly<{
3903
+ type: "semantic";
3904
+ name: _refineui_tokens.SemanticColorName;
3905
+ }>;
3906
+ };
3907
+ readonly input: {
3908
+ readonly foreground: Readonly<{
3909
+ type: "semantic";
3910
+ name: _refineui_tokens.SemanticColorName;
3911
+ }>;
3912
+ readonly placeholder: Readonly<{
3913
+ type: "semantic";
3914
+ name: _refineui_tokens.SemanticColorName;
3915
+ }>;
3916
+ readonly icon: Readonly<{
3917
+ type: "semantic";
3918
+ name: _refineui_tokens.SemanticColorName;
3919
+ }>;
3920
+ };
3921
+ readonly group: Readonly<{
3922
+ type: "semantic";
3923
+ name: _refineui_tokens.SemanticColorName;
3924
+ }>;
3925
+ readonly empty: Readonly<{
3926
+ type: "semantic";
3927
+ name: _refineui_tokens.SemanticColorName;
3928
+ }>;
3929
+ readonly separator: Readonly<{
3930
+ type: "semantic";
3931
+ name: _refineui_tokens.SemanticColorName;
3932
+ }>;
3933
+ readonly item: {
3934
+ readonly text: Readonly<{
3935
+ type: "semantic";
3936
+ name: _refineui_tokens.SemanticColorName;
3937
+ }>;
3938
+ readonly disabledText: Readonly<{
3939
+ type: "semantic";
3940
+ name: _refineui_tokens.SemanticColorName;
3941
+ }>;
3942
+ readonly selectedBackground: Readonly<{
3943
+ type: "semantic";
3944
+ name: _refineui_tokens.SemanticColorName;
3945
+ }>;
3946
+ readonly shortcut: Readonly<{
3947
+ type: "semantic";
3948
+ name: _refineui_tokens.SemanticColorName;
3949
+ }>;
3950
+ };
3951
+ };
3952
+ readonly link: {
3953
+ readonly default: Readonly<{
3954
+ type: "semantic";
3955
+ name: _refineui_tokens.SemanticColorName;
3956
+ }>;
3957
+ readonly hover: Readonly<{
3958
+ type: "semantic";
3959
+ name: _refineui_tokens.SemanticColorName;
3960
+ }>;
3961
+ readonly active: Readonly<{
3962
+ type: "semantic";
3963
+ name: _refineui_tokens.SemanticColorName;
3964
+ }>;
3965
+ readonly visited: Readonly<{
3966
+ type: "semantic";
3967
+ name: _refineui_tokens.SemanticColorName;
3968
+ }>;
3969
+ readonly disabled: Readonly<{
3970
+ type: "semantic";
3971
+ name: _refineui_tokens.SemanticColorName;
3972
+ }>;
3973
+ readonly subtle: {
3974
+ readonly default: Readonly<{
3975
+ type: "semantic";
3976
+ name: _refineui_tokens.SemanticColorName;
3977
+ }>;
3978
+ readonly hover: Readonly<{
3979
+ type: "semantic";
3980
+ name: _refineui_tokens.SemanticColorName;
3981
+ }>;
3982
+ readonly active: Readonly<{
3983
+ type: "semantic";
3984
+ name: _refineui_tokens.SemanticColorName;
3985
+ }>;
3986
+ };
3987
+ };
3988
+ readonly calendar: {
3989
+ readonly background: Readonly<{
3990
+ type: "semantic";
3991
+ name: _refineui_tokens.SemanticColorName;
3992
+ }>;
3993
+ readonly border: Readonly<{
3994
+ type: "semantic";
3995
+ name: _refineui_tokens.SemanticColorName;
3996
+ }>;
3997
+ readonly weekday: Readonly<{
3998
+ type: "semantic";
3999
+ name: _refineui_tokens.SemanticColorName;
4000
+ }>;
4001
+ readonly day: {
4002
+ readonly default: Readonly<{
4003
+ type: "semantic";
4004
+ name: _refineui_tokens.SemanticColorName;
4005
+ }>;
4006
+ readonly otherMonth: Readonly<{
4007
+ type: "semantic";
4008
+ name: _refineui_tokens.SemanticColorName;
4009
+ }>;
4010
+ readonly selectedBackground: Readonly<{
4011
+ type: "semantic";
4012
+ name: _refineui_tokens.SemanticColorName;
4013
+ }>;
4014
+ readonly selectedForeground: Readonly<{
4015
+ type: "semantic";
4016
+ name: _refineui_tokens.SemanticColorName;
4017
+ }>;
4018
+ readonly rangeMiddleBackground: Readonly<{
4019
+ type: "semantic";
4020
+ name: _refineui_tokens.SemanticColorName;
4021
+ }>;
4022
+ readonly rangeMiddleForeground: Readonly<{
4023
+ type: "semantic";
4024
+ name: _refineui_tokens.SemanticColorName;
4025
+ }>;
4026
+ readonly hoverBackground: Readonly<{
4027
+ type: "semantic";
4028
+ name: _refineui_tokens.SemanticColorName;
4029
+ }>;
4030
+ readonly hoverForeground: Readonly<{
4031
+ type: "semantic";
4032
+ name: _refineui_tokens.SemanticColorName;
4033
+ }>;
4034
+ readonly activeBackground: Readonly<{
4035
+ type: "semantic";
4036
+ name: _refineui_tokens.SemanticColorName;
4037
+ }>;
4038
+ readonly activeForeground: Readonly<{
4039
+ type: "semantic";
4040
+ name: _refineui_tokens.SemanticColorName;
4041
+ }>;
4042
+ };
4043
+ };
4044
+ readonly card: {
4045
+ readonly header: {
4046
+ readonly foreground: Readonly<{
4047
+ type: "semantic";
4048
+ name: _refineui_tokens.SemanticColorName;
4049
+ }>;
4050
+ };
4051
+ readonly headerMain: {
4052
+ readonly foreground: Readonly<{
4053
+ type: "semantic";
4054
+ name: _refineui_tokens.SemanticColorName;
4055
+ }>;
4056
+ };
4057
+ readonly content: {
4058
+ readonly foreground: Readonly<{
4059
+ type: "semantic";
4060
+ name: _refineui_tokens.SemanticColorName;
4061
+ }>;
4062
+ };
4063
+ readonly footer: {
4064
+ readonly foreground: Readonly<{
4065
+ type: "semantic";
4066
+ name: _refineui_tokens.SemanticColorName;
4067
+ }>;
4068
+ };
4069
+ readonly action: {
4070
+ readonly foreground: "currentColor";
4071
+ };
4072
+ readonly titleToken: {
4073
+ readonly foreground: Readonly<{
4074
+ type: "semantic";
4075
+ name: _refineui_tokens.SemanticColorName;
4076
+ }>;
4077
+ };
4078
+ readonly descriptionToken: {
4079
+ readonly foreground: Readonly<{
4080
+ type: "semantic";
4081
+ name: _refineui_tokens.SemanticColorName;
4082
+ }>;
4083
+ };
4084
+ readonly elevated: {
4085
+ readonly background: Readonly<{
4086
+ type: "semantic";
4087
+ name: _refineui_tokens.SemanticColorName;
4088
+ }>;
4089
+ };
4090
+ readonly outlined: {
4091
+ readonly background: Readonly<{
4092
+ type: "semantic";
4093
+ name: _refineui_tokens.SemanticColorName;
4094
+ }>;
4095
+ readonly border: Readonly<{
4096
+ type: "semantic";
4097
+ name: _refineui_tokens.SemanticColorName;
4098
+ }>;
4099
+ };
4100
+ readonly title: Readonly<{
4101
+ type: "semantic";
4102
+ name: _refineui_tokens.SemanticColorName;
4103
+ }>;
4104
+ readonly description: Readonly<{
4105
+ type: "semantic";
4106
+ name: _refineui_tokens.SemanticColorName;
4107
+ }>;
4108
+ };
4109
+ readonly divider: {
4110
+ readonly line: Readonly<{
4111
+ type: "semantic";
4112
+ name: _refineui_tokens.SemanticColorName;
4113
+ }>;
4114
+ readonly label: Readonly<{
4115
+ type: "semantic";
4116
+ name: _refineui_tokens.SemanticColorName;
4117
+ }>;
4118
+ readonly icon: Readonly<{
4119
+ type: "semantic";
4120
+ name: _refineui_tokens.SemanticColorName;
4121
+ }>;
4122
+ };
4123
+ readonly avatar: {
4124
+ readonly image: {
4125
+ readonly background: "transparent";
4126
+ };
4127
+ readonly fallback: {
4128
+ readonly foreground: "currentColor";
4129
+ };
4130
+ readonly badge: {
4131
+ readonly background: "transparent";
4132
+ };
4133
+ readonly avatarIcon: {
4134
+ readonly foreground: "currentColor";
4135
+ };
4136
+ readonly overflow: {
4137
+ readonly background: Readonly<{
4138
+ type: "semantic";
4139
+ name: _refineui_tokens.SemanticColorName;
4140
+ }>;
4141
+ readonly border: Readonly<{
4142
+ type: "semantic";
4143
+ name: _refineui_tokens.SemanticColorName;
4144
+ }>;
4145
+ readonly foreground: Readonly<{
4146
+ type: "semantic";
4147
+ name: _refineui_tokens.SemanticColorName;
4148
+ }>;
4149
+ readonly icon: Readonly<{
4150
+ type: "semantic";
4151
+ name: _refineui_tokens.SemanticColorName;
4152
+ }>;
4153
+ };
4154
+ readonly group: {
4155
+ readonly background: "transparent";
4156
+ };
4157
+ readonly groupCount: {
4158
+ readonly background: Readonly<{
4159
+ type: "semantic";
4160
+ name: _refineui_tokens.SemanticColorName;
4161
+ }>;
4162
+ readonly border: Readonly<{
4163
+ type: "semantic";
4164
+ name: _refineui_tokens.SemanticColorName;
4165
+ }>;
4166
+ readonly foreground: Readonly<{
4167
+ type: "semantic";
4168
+ name: _refineui_tokens.SemanticColorName;
4169
+ }>;
4170
+ };
4171
+ readonly shell: {
4172
+ readonly background: {
4173
+ readonly neutral: Readonly<{
4174
+ type: "palette";
4175
+ name: string;
4176
+ }>;
4177
+ readonly blue: Readonly<{
4178
+ type: "palette";
4179
+ name: string;
4180
+ }>;
4181
+ readonly green: Readonly<{
4182
+ type: "palette";
4183
+ name: string;
4184
+ }>;
4185
+ readonly lime: Readonly<{
4186
+ type: "palette";
4187
+ name: string;
4188
+ }>;
4189
+ readonly magenta: Readonly<{
4190
+ type: "palette";
4191
+ name: string;
4192
+ }>;
4193
+ readonly orange: Readonly<{
4194
+ type: "palette";
4195
+ name: string;
4196
+ }>;
4197
+ readonly purple: Readonly<{
4198
+ type: "palette";
4199
+ name: string;
4200
+ }>;
4201
+ readonly red: Readonly<{
4202
+ type: "palette";
4203
+ name: string;
4204
+ }>;
4205
+ readonly teal: Readonly<{
4206
+ type: "palette";
4207
+ name: string;
4208
+ }>;
4209
+ readonly yellow: Readonly<{
4210
+ type: "palette";
4211
+ name: string;
4212
+ }>;
4213
+ };
4214
+ };
4215
+ readonly icon: {
4216
+ readonly neutral: Readonly<{
4217
+ type: "palette";
4218
+ name: string;
4219
+ }>;
4220
+ readonly blue: Readonly<{
4221
+ type: "palette";
4222
+ name: string;
4223
+ }>;
4224
+ readonly green: Readonly<{
4225
+ type: "palette";
4226
+ name: string;
4227
+ }>;
4228
+ readonly lime: Readonly<{
4229
+ type: "palette";
4230
+ name: string;
4231
+ }>;
4232
+ readonly magenta: Readonly<{
4233
+ type: "palette";
4234
+ name: string;
4235
+ }>;
4236
+ readonly orange: Readonly<{
4237
+ type: "palette";
4238
+ name: string;
4239
+ }>;
4240
+ readonly purple: Readonly<{
4241
+ type: "palette";
4242
+ name: string;
4243
+ }>;
4244
+ readonly red: Readonly<{
4245
+ type: "palette";
4246
+ name: string;
4247
+ }>;
4248
+ readonly teal: Readonly<{
4249
+ type: "palette";
4250
+ name: string;
4251
+ }>;
4252
+ readonly yellow: Readonly<{
4253
+ type: "palette";
4254
+ name: string;
4255
+ }>;
4256
+ };
4257
+ readonly status: {
4258
+ readonly online: Readonly<{
4259
+ type: "palette";
4260
+ name: string;
4261
+ }>;
4262
+ readonly away: Readonly<{
4263
+ type: "palette";
4264
+ name: string;
4265
+ }>;
4266
+ readonly unavailable: {
4267
+ readonly background: Readonly<{
4268
+ type: "palette";
4269
+ name: string;
4270
+ }>;
4271
+ readonly mark: Readonly<{
4272
+ type: "palette";
4273
+ name: string;
4274
+ }>;
4275
+ };
4276
+ readonly offline: Readonly<{
4277
+ type: "palette";
4278
+ name: string;
4279
+ }>;
4280
+ };
4281
+ };
4282
+ readonly avatars: {
4283
+ readonly stack: {
4284
+ readonly background: "transparent";
4285
+ };
4286
+ readonly spread: {
4287
+ readonly background: "transparent";
4288
+ };
4289
+ readonly count: {
4290
+ readonly background: Readonly<{
4291
+ type: "semantic";
4292
+ name: _refineui_tokens.SemanticColorName;
4293
+ }>;
4294
+ readonly border: Readonly<{
4295
+ type: "semantic";
4296
+ name: _refineui_tokens.SemanticColorName;
4297
+ }>;
4298
+ readonly foreground: Readonly<{
4299
+ type: "semantic";
4300
+ name: _refineui_tokens.SemanticColorName;
4301
+ }>;
4302
+ };
4303
+ };
4304
+ };
4305
+ readonly typography: {
4306
+ readonly formControl: {
4307
+ readonly sm: Readonly<{
4308
+ type: "semantic-text";
4309
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4310
+ }>;
4311
+ readonly md: Readonly<{
4312
+ type: "semantic-text";
4313
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4314
+ }>;
4315
+ readonly lg: Readonly<{
4316
+ type: "semantic-text";
4317
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4318
+ }>;
4319
+ };
4320
+ readonly label: {
4321
+ readonly sm: Readonly<{
4322
+ type: "semantic-text";
4323
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4324
+ }>;
4325
+ readonly md: Readonly<{
4326
+ type: "semantic-text";
4327
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4328
+ }>;
4329
+ readonly lg: Readonly<{
4330
+ type: "semantic-text";
4331
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4332
+ }>;
4333
+ };
4334
+ readonly labelCompanion: {
4335
+ readonly label: Readonly<{
4336
+ type: "semantic-text";
4337
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4338
+ }>;
4339
+ readonly description: Readonly<{
4340
+ type: "semantic-text";
4341
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4342
+ }>;
4343
+ };
4344
+ readonly fieldFeedback: Readonly<{
4345
+ type: "semantic-text";
4346
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4347
+ }>;
4348
+ readonly accordion: {
4349
+ readonly trigger: {
4350
+ readonly sm: Readonly<{
4351
+ type: "semantic-text";
4352
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4353
+ }>;
4354
+ readonly md: Readonly<{
4355
+ type: "semantic-text";
4356
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4357
+ }>;
4358
+ readonly lg: Readonly<{
4359
+ type: "semantic-text";
4360
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4361
+ }>;
4362
+ };
4363
+ readonly content: {
4364
+ readonly sm: Readonly<{
4365
+ type: "semantic-text";
4366
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4367
+ }>;
4368
+ readonly md: Readonly<{
4369
+ type: "semantic-text";
4370
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4371
+ }>;
4372
+ readonly lg: Readonly<{
4373
+ type: "semantic-text";
4374
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4375
+ }>;
4376
+ };
4377
+ };
4378
+ readonly button: {
4379
+ readonly sm: Readonly<{
4380
+ type: "semantic-text";
4381
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4382
+ }>;
4383
+ readonly md: Readonly<{
4384
+ type: "semantic-text";
4385
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4386
+ }>;
4387
+ readonly lg: Readonly<{
4388
+ type: "semantic-text";
4389
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4390
+ }>;
4391
+ };
4392
+ readonly link: Readonly<{
4393
+ type: "semantic-text";
4394
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4395
+ }>;
4396
+ readonly breadcrumb: {
4397
+ readonly row: Readonly<{
4398
+ type: "semantic-text";
4399
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4400
+ }>;
4401
+ };
4402
+ readonly navigationMenu: {
4403
+ readonly trigger: Readonly<{
4404
+ type: "semantic-text";
4405
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4406
+ }>;
4407
+ readonly link: Readonly<{
4408
+ type: "semantic-text";
4409
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4410
+ }>;
4411
+ readonly contentLink: Readonly<{
4412
+ type: "semantic-text";
4413
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4414
+ }>;
4415
+ };
4416
+ readonly footer: {
4417
+ readonly brandName: Readonly<{
4418
+ type: "semantic-text";
4419
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4420
+ }>;
4421
+ readonly brandDescription: Readonly<{
4422
+ type: "semantic-text";
4423
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4424
+ }>;
4425
+ readonly groupLabel: Readonly<{
4426
+ type: "semantic-text";
4427
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4428
+ }>;
4429
+ readonly link: Readonly<{
4430
+ type: "semantic-text";
4431
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4432
+ }>;
4433
+ readonly copyright: Readonly<{
4434
+ type: "semantic-text";
4435
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4436
+ }>;
4437
+ };
4438
+ readonly sidebar: {
4439
+ readonly brand: Readonly<{
4440
+ type: "semantic-text";
4441
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4442
+ }>;
4443
+ readonly groupLabel: Readonly<{
4444
+ type: "semantic-text";
4445
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4446
+ }>;
4447
+ readonly link: Readonly<{
4448
+ type: "semantic-text";
4449
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4450
+ }>;
4451
+ };
4452
+ readonly menu: {
4453
+ readonly section: Readonly<{
4454
+ type: "semantic-text";
4455
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4456
+ }>;
4457
+ readonly item: Readonly<{
4458
+ type: "semantic-text";
4459
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4460
+ }>;
4461
+ readonly description: Readonly<{
4462
+ type: "semantic-text";
4463
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4464
+ }>;
4465
+ readonly shortcut: Readonly<{
4466
+ type: "semantic-text";
4467
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4468
+ }>;
4469
+ };
4470
+ readonly command: {
4471
+ readonly group: Readonly<{
4472
+ type: "semantic-text";
4473
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4474
+ }>;
4475
+ readonly item: Readonly<{
4476
+ type: "semantic-text";
4477
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4478
+ }>;
4479
+ readonly empty: Readonly<{
4480
+ type: "semantic-text";
4481
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4482
+ }>;
4483
+ readonly shortcut: Readonly<{
4484
+ type: "semantic-text";
4485
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4486
+ }>;
4487
+ readonly input: Readonly<{
4488
+ type: "semantic-text";
4489
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4490
+ }>;
4491
+ };
4492
+ readonly dropdown: {
4493
+ readonly label: Readonly<{
4494
+ type: "semantic-text";
4495
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4496
+ }>;
4497
+ readonly item: Readonly<{
4498
+ type: "semantic-text";
4499
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4500
+ }>;
4501
+ readonly shortcut: Readonly<{
4502
+ type: "semantic-text";
4503
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4504
+ }>;
4505
+ };
4506
+ readonly dialog: {
4507
+ readonly title: Readonly<{
4508
+ type: "semantic-text";
4509
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4510
+ }>;
4511
+ readonly description: Readonly<{
4512
+ type: "semantic-text";
4513
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4514
+ }>;
4515
+ };
4516
+ readonly drawer: {
4517
+ readonly title: Readonly<{
4518
+ type: "semantic-text";
4519
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4520
+ }>;
4521
+ readonly description: Readonly<{
4522
+ type: "semantic-text";
4523
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4524
+ }>;
4525
+ readonly body: Readonly<{
4526
+ type: "semantic-text";
4527
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4528
+ }>;
4529
+ };
4530
+ readonly card: {
4531
+ readonly title: Readonly<{
4532
+ type: "semantic-text";
4533
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4534
+ }>;
4535
+ readonly description: Readonly<{
4536
+ type: "semantic-text";
4537
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4538
+ }>;
4539
+ };
4540
+ readonly alert: {
4541
+ readonly title: Readonly<{
4542
+ type: "semantic-text";
4543
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4544
+ }>;
4545
+ readonly description: Readonly<{
4546
+ type: "semantic-text";
4547
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4548
+ }>;
4549
+ };
4550
+ readonly bubble: Readonly<{
4551
+ type: "semantic-text";
4552
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4553
+ }>;
4554
+ readonly inputOtp: {
4555
+ readonly sm: Readonly<{
4556
+ type: "semantic-text";
4557
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4558
+ }>;
4559
+ readonly md: Readonly<{
4560
+ type: "semantic-text";
4561
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4562
+ }>;
4563
+ readonly lg: Readonly<{
4564
+ type: "semantic-text";
4565
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4566
+ }>;
4567
+ };
4568
+ readonly stepper: {
4569
+ readonly indicator: Readonly<{
4570
+ type: "semantic-text";
4571
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4572
+ }>;
4573
+ readonly title: Readonly<{
4574
+ type: "semantic-text";
4575
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4576
+ }>;
4577
+ readonly description: Readonly<{
4578
+ type: "semantic-text";
4579
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4580
+ }>;
4581
+ };
4582
+ readonly progressStepper: {
4583
+ readonly marker: Readonly<{
4584
+ type: "semantic-text";
4585
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4586
+ }>;
4587
+ readonly label: Readonly<{
4588
+ type: "semantic-text";
4589
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4590
+ }>;
4591
+ };
4592
+ readonly toast: {
4593
+ readonly message: Readonly<{
4594
+ type: "semantic-text";
4595
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4596
+ }>;
4597
+ };
4598
+ readonly tree: {
4599
+ readonly item: {
4600
+ readonly sm: Readonly<{
4601
+ type: "semantic-text";
4602
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4603
+ }>;
4604
+ readonly md: Readonly<{
4605
+ type: "semantic-text";
4606
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4607
+ }>;
4608
+ readonly lg: Readonly<{
4609
+ type: "semantic-text";
4610
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4611
+ }>;
4612
+ };
4613
+ };
4614
+ readonly pagination: Readonly<{
4615
+ type: "semantic-text";
4616
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4617
+ }>;
4618
+ readonly chip: {
4619
+ readonly sm: Readonly<{
4620
+ type: "semantic-text";
4621
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4622
+ }>;
4623
+ readonly md: Readonly<{
4624
+ type: "semantic-text";
4625
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4626
+ }>;
4627
+ readonly lg: Readonly<{
4628
+ type: "semantic-text";
4629
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4630
+ }>;
4631
+ };
4632
+ readonly badge: Readonly<{
4633
+ type: "semantic-text";
4634
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4635
+ }>;
4636
+ readonly segmentedControl: Readonly<{
4637
+ type: "semantic-text";
4638
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4639
+ }>;
4640
+ readonly tabs: Readonly<{
4641
+ type: "semantic-text";
4642
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4643
+ }>;
4644
+ readonly table: {
4645
+ readonly head: Readonly<{
4646
+ type: "semantic-text";
4647
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4648
+ }>;
4649
+ readonly cell: Readonly<{
4650
+ type: "semantic-text";
4651
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4652
+ }>;
4653
+ readonly caption: Readonly<{
4654
+ type: "semantic-text";
4655
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4656
+ }>;
4657
+ };
4658
+ readonly tooltip: Readonly<{
4659
+ type: "semantic-text";
4660
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4661
+ }>;
4662
+ readonly textarea: Readonly<{
4663
+ type: "semantic-text";
4664
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4665
+ }>;
4666
+ readonly select: {
4667
+ readonly trigger: {
4668
+ readonly sm: Readonly<{
4669
+ type: "semantic-text";
4670
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4671
+ }>;
4672
+ readonly md: Readonly<{
4673
+ type: "semantic-text";
4674
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4675
+ }>;
4676
+ readonly lg: Readonly<{
4677
+ type: "semantic-text";
4678
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4679
+ }>;
4680
+ };
4681
+ readonly label: Readonly<{
4682
+ type: "semantic-text";
4683
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4684
+ }>;
4685
+ readonly item: Readonly<{
4686
+ type: "semantic-text";
4687
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4688
+ }>;
4689
+ };
4690
+ readonly calendar: {
4691
+ readonly day: Readonly<{
4692
+ type: "semantic-text";
4693
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4694
+ }>;
4695
+ readonly weekday: Readonly<{
4696
+ type: "semantic-text";
4697
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4698
+ }>;
4699
+ };
4700
+ readonly divider: {
4701
+ readonly contentLabel: Readonly<{
4702
+ type: "semantic-text";
4703
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4704
+ }>;
4705
+ };
4706
+ readonly chart: {
4707
+ readonly axisLabel: Readonly<{
4708
+ type: "semantic-text";
4709
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4710
+ }>;
4711
+ readonly legendLabel: Readonly<{
4712
+ type: "semantic-text";
4713
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4714
+ }>;
4715
+ readonly tooltipLabel: Readonly<{
4716
+ type: "semantic-text";
4717
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4718
+ }>;
4719
+ readonly tooltipValue: Readonly<{
4720
+ type: "semantic-text";
4721
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4722
+ }>;
4723
+ };
4724
+ readonly spinner: {
4725
+ readonly xs: Readonly<{
4726
+ type: "semantic-text";
4727
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4728
+ }>;
4729
+ readonly sm: Readonly<{
4730
+ type: "semantic-text";
4731
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4732
+ }>;
4733
+ readonly md: Readonly<{
4734
+ type: "semantic-text";
4735
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4736
+ }>;
4737
+ readonly lg: Readonly<{
4738
+ type: "semantic-text";
4739
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4740
+ }>;
4741
+ readonly xl: Readonly<{
4742
+ type: "semantic-text";
4743
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4744
+ }>;
4745
+ readonly xxl: Readonly<{
4746
+ type: "semantic-text";
4747
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4748
+ }>;
4749
+ };
4750
+ readonly avatar: {
4751
+ readonly initialsNeutral: {
4752
+ readonly xxxsmall: Readonly<{
4753
+ type: "semantic-text";
4754
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4755
+ }>;
4756
+ readonly xxsmall: Readonly<{
4757
+ type: "semantic-text";
4758
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4759
+ }>;
4760
+ readonly xsmall: Readonly<{
4761
+ type: "semantic-text";
4762
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4763
+ }>;
4764
+ readonly small: Readonly<{
4765
+ type: "semantic-text";
4766
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4767
+ }>;
4768
+ readonly medium: Readonly<{
4769
+ type: "semantic-text";
4770
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4771
+ }>;
4772
+ readonly large: Readonly<{
4773
+ type: "semantic-text";
4774
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4775
+ }>;
4776
+ readonly xlarge: Readonly<{
4777
+ type: "semantic-text";
4778
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4779
+ }>;
4780
+ readonly xxlarge: Readonly<{
4781
+ type: "semantic-text";
4782
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4783
+ }>;
4784
+ readonly xxxlarge: Readonly<{
4785
+ type: "semantic-text";
4786
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4787
+ }>;
4788
+ };
4789
+ readonly initialsAccent: {
4790
+ readonly xxxlarge: Readonly<{
4791
+ type: "semantic-text";
4792
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4793
+ }>;
4794
+ readonly xxlarge: Readonly<{
4795
+ type: "semantic-text";
4796
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4797
+ }>;
4798
+ readonly xlarge: Readonly<{
4799
+ type: "semantic-text";
4800
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4801
+ }>;
4802
+ readonly default: Readonly<{
4803
+ type: "semantic-text";
4804
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4805
+ }>;
4806
+ };
4807
+ readonly groupCount: {
4808
+ readonly xxxsmall: Readonly<{
4809
+ type: "semantic-text";
4810
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4811
+ }>;
4812
+ readonly xxsmall: Readonly<{
4813
+ type: "semantic-text";
4814
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4815
+ }>;
4816
+ readonly xsmall: Readonly<{
4817
+ type: "semantic-text";
4818
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4819
+ }>;
4820
+ readonly small: Readonly<{
4821
+ type: "semantic-text";
4822
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4823
+ }>;
4824
+ readonly medium: Readonly<{
4825
+ type: "semantic-text";
4826
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4827
+ }>;
4828
+ readonly large: Readonly<{
4829
+ type: "semantic-text";
4830
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4831
+ }>;
4832
+ readonly xlarge: Readonly<{
4833
+ type: "semantic-text";
4834
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4835
+ }>;
4836
+ readonly xxlarge: Readonly<{
4837
+ type: "semantic-text";
4838
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4839
+ }>;
4840
+ readonly xxxlarge: Readonly<{
4841
+ type: "semantic-text";
4842
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4843
+ }>;
4844
+ };
4845
+ };
4846
+ };
4847
+ readonly motion: {
4848
+ readonly fast: {
4849
+ readonly duration: string;
4850
+ readonly easing: string;
4851
+ };
4852
+ readonly indicator: {
4853
+ readonly duration: string;
4854
+ readonly easing: string;
4855
+ };
4856
+ readonly panel: {
4857
+ readonly duration: string;
4858
+ readonly easing: string;
4859
+ };
4860
+ };
4861
+ readonly elevation: _refineui_tokens.SemanticElevationTokens;
4862
+ readonly toast: {
4863
+ readonly color: {
4864
+ readonly background: Readonly<{
4865
+ type: "semantic";
4866
+ name: _refineui_tokens.SemanticColorName;
4867
+ }>;
4868
+ readonly message: Readonly<{
4869
+ type: "semantic";
4870
+ name: _refineui_tokens.SemanticColorName;
4871
+ }>;
4872
+ readonly border: Readonly<{
4873
+ type: "semantic";
4874
+ name: _refineui_tokens.SemanticColorName;
4875
+ }>;
4876
+ readonly accent: {
4877
+ readonly default: Readonly<{
4878
+ type: "semantic";
4879
+ name: _refineui_tokens.SemanticColorName;
4880
+ }>;
4881
+ readonly success: Readonly<{
4882
+ type: "semantic";
4883
+ name: _refineui_tokens.SemanticColorName;
4884
+ }>;
4885
+ readonly error: Readonly<{
4886
+ type: "semantic";
4887
+ name: _refineui_tokens.SemanticColorName;
4888
+ }>;
4889
+ readonly warning: Readonly<{
4890
+ type: "semantic";
4891
+ name: _refineui_tokens.SemanticColorName;
4892
+ }>;
4893
+ };
4894
+ };
4895
+ readonly typography: {
4896
+ readonly message: Readonly<{
4897
+ type: "semantic-text";
4898
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4899
+ }>;
4900
+ };
4901
+ readonly size: {
4902
+ readonly minWidth: "200px";
4903
+ readonly maxWidth: "325px";
4904
+ };
4905
+ readonly elevation: {
4906
+ readonly role: "toast";
4907
+ readonly foundation: _refineui_tokens.SemanticShadowElevationPair;
4908
+ };
4909
+ readonly motion: {
4910
+ readonly enter: string;
4911
+ readonly leave: string;
4912
+ readonly easing: string;
4913
+ };
4914
+ };
4915
+ readonly segmentedControl: {
4916
+ readonly color: {
4917
+ readonly barBackground: Readonly<{
4918
+ type: "semantic";
4919
+ name: _refineui_tokens.SemanticColorName;
4920
+ }>;
4921
+ readonly barBorder: Readonly<{
4922
+ type: "semantic";
4923
+ name: _refineui_tokens.SemanticColorName;
4924
+ }>;
4925
+ readonly itemForeground: Readonly<{
4926
+ type: "semantic";
4927
+ name: _refineui_tokens.SemanticColorName;
4928
+ }>;
4929
+ readonly itemDisabledForeground: Readonly<{
4930
+ type: "semantic";
4931
+ name: _refineui_tokens.SemanticColorName;
4932
+ }>;
4933
+ readonly selectedBackground: Readonly<{
4934
+ type: "semantic";
4935
+ name: _refineui_tokens.SemanticColorName;
4936
+ }>;
4937
+ readonly selectedForeground: Readonly<{
4938
+ type: "semantic";
4939
+ name: _refineui_tokens.SemanticColorName;
4940
+ }>;
4941
+ readonly selectedHoverBackground: Readonly<{
4942
+ type: "semantic";
4943
+ name: _refineui_tokens.SemanticColorName;
4944
+ }>;
4945
+ readonly selectedDisabledBackground: Readonly<{
4946
+ type: "semantic";
4947
+ name: _refineui_tokens.SemanticColorName;
4948
+ }>;
4949
+ readonly hoverForeground: Readonly<{
4950
+ type: "semantic";
4951
+ name: _refineui_tokens.SemanticColorName;
4952
+ }>;
4953
+ };
4954
+ readonly typography: Readonly<{
4955
+ type: "semantic-text";
4956
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
4957
+ }>;
4958
+ readonly elevation: {
4959
+ /** Selected thumb — recipe `shadow-refineui-2` / surface */
4960
+ readonly role: "surface";
4961
+ readonly foundation: _refineui_tokens.SemanticShadowElevationPair;
4962
+ };
4963
+ readonly motion: {
4964
+ /** Indicator slide after first layout */
4965
+ readonly indicator: {
4966
+ readonly duration: string;
4967
+ readonly easing: string;
4968
+ };
4969
+ /** Item label color fade */
4970
+ readonly itemColor: {
4971
+ readonly duration: string;
4972
+ readonly easing: string;
4973
+ };
4974
+ };
4975
+ };
4976
+ readonly button: {
4977
+ readonly color: {
4978
+ readonly primary: {
4979
+ readonly hoverBackground: Readonly<{
4980
+ type: "semantic";
4981
+ name: _refineui_tokens.SemanticColorName;
4982
+ }>;
4983
+ readonly activeBackground: Readonly<{
4984
+ type: "semantic";
4985
+ name: _refineui_tokens.SemanticColorName;
4986
+ }>;
4987
+ readonly disabledBackground: Readonly<{
4988
+ type: "semantic";
4989
+ name: _refineui_tokens.SemanticColorName;
4990
+ }>;
4991
+ readonly disabledForeground: Readonly<{
4992
+ type: "semantic";
4993
+ name: _refineui_tokens.SemanticColorName;
4994
+ }>;
4995
+ readonly appearance: {
4996
+ readonly background: Readonly<{
4997
+ type: "semantic";
4998
+ name: _refineui_tokens.SemanticColorName;
4999
+ }>;
5000
+ readonly foreground: Readonly<{
5001
+ type: "semantic";
5002
+ name: _refineui_tokens.SemanticColorName;
5003
+ }>;
5004
+ };
5005
+ readonly states: {
5006
+ readonly hover: {
5007
+ readonly background: Readonly<{
5008
+ type: "semantic";
5009
+ name: _refineui_tokens.SemanticColorName;
5010
+ }>;
5011
+ };
5012
+ readonly pressed: {
5013
+ readonly background: Readonly<{
5014
+ type: "semantic";
5015
+ name: _refineui_tokens.SemanticColorName;
5016
+ }>;
5017
+ };
5018
+ readonly disabled: {
5019
+ readonly background: Readonly<{
5020
+ type: "semantic";
5021
+ name: _refineui_tokens.SemanticColorName;
5022
+ }>;
5023
+ readonly foreground: Readonly<{
5024
+ type: "semantic";
5025
+ name: _refineui_tokens.SemanticColorName;
5026
+ }>;
5027
+ };
5028
+ };
5029
+ readonly background: Readonly<{
5030
+ type: "semantic";
5031
+ name: _refineui_tokens.SemanticColorName;
5032
+ }>;
5033
+ readonly foreground: Readonly<{
5034
+ type: "semantic";
5035
+ name: _refineui_tokens.SemanticColorName;
5036
+ }>;
5037
+ };
5038
+ readonly secondary: {
5039
+ readonly background: Readonly<{
5040
+ type: "semantic";
5041
+ name: _refineui_tokens.SemanticColorName;
5042
+ }>;
5043
+ readonly foreground: Readonly<{
5044
+ type: "semantic";
5045
+ name: _refineui_tokens.SemanticColorName;
5046
+ }>;
5047
+ readonly border: Readonly<{
5048
+ type: "semantic";
5049
+ name: _refineui_tokens.SemanticColorName;
5050
+ }>;
5051
+ readonly hoverBackground: Readonly<{
5052
+ type: "semantic";
5053
+ name: _refineui_tokens.SemanticColorName;
5054
+ }>;
5055
+ readonly hoverBorder: Readonly<{
5056
+ type: "semantic";
5057
+ name: _refineui_tokens.SemanticColorName;
5058
+ }>;
5059
+ readonly activeBackground: Readonly<{
5060
+ type: "semantic";
5061
+ name: _refineui_tokens.SemanticColorName;
5062
+ }>;
5063
+ readonly disabledBackground: Readonly<{
5064
+ type: "semantic";
5065
+ name: _refineui_tokens.SemanticColorName;
5066
+ }>;
5067
+ readonly disabledBorder: Readonly<{
5068
+ type: "semantic";
5069
+ name: _refineui_tokens.SemanticColorName;
5070
+ }>;
5071
+ readonly disabledForeground: Readonly<{
5072
+ type: "semantic";
5073
+ name: _refineui_tokens.SemanticColorName;
5074
+ }>;
5075
+ };
5076
+ readonly outline: {
5077
+ readonly background: "transparent";
5078
+ readonly foreground: Readonly<{
5079
+ type: "semantic";
5080
+ name: _refineui_tokens.SemanticColorName;
5081
+ }>;
5082
+ readonly border: Readonly<{
5083
+ type: "semantic";
5084
+ name: _refineui_tokens.SemanticColorName;
5085
+ }>;
5086
+ readonly hoverBorder: Readonly<{
5087
+ type: "semantic";
5088
+ name: _refineui_tokens.SemanticColorName;
5089
+ }>;
5090
+ readonly activeBorder: Readonly<{
5091
+ type: "semantic";
5092
+ name: _refineui_tokens.SemanticColorName;
5093
+ }>;
5094
+ readonly disabledBorder: Readonly<{
5095
+ type: "semantic";
5096
+ name: _refineui_tokens.SemanticColorName;
5097
+ }>;
5098
+ readonly disabledForeground: Readonly<{
5099
+ type: "semantic";
5100
+ name: _refineui_tokens.SemanticColorName;
5101
+ }>;
5102
+ };
5103
+ readonly ghost: {
5104
+ readonly background: "transparent";
5105
+ readonly foreground: Readonly<{
5106
+ type: "semantic";
5107
+ name: _refineui_tokens.SemanticColorName;
5108
+ }>;
5109
+ readonly hoverBackground: Readonly<{
5110
+ type: "semantic";
5111
+ name: _refineui_tokens.SemanticColorName;
5112
+ }>;
5113
+ readonly hoverForeground: Readonly<{
5114
+ type: "semantic";
5115
+ name: _refineui_tokens.SemanticColorName;
5116
+ }>;
5117
+ readonly activeBackground: Readonly<{
5118
+ type: "semantic";
5119
+ name: _refineui_tokens.SemanticColorName;
5120
+ }>;
5121
+ readonly activeForeground: Readonly<{
5122
+ type: "semantic";
5123
+ name: _refineui_tokens.SemanticColorName;
5124
+ }>;
5125
+ readonly disabledForeground: Readonly<{
5126
+ type: "semantic";
5127
+ name: _refineui_tokens.SemanticColorName;
5128
+ }>;
5129
+ };
5130
+ };
5131
+ readonly typography: {
5132
+ readonly sm: Readonly<{
5133
+ type: "semantic-text";
5134
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5135
+ }>;
5136
+ readonly md: Readonly<{
5137
+ type: "semantic-text";
5138
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5139
+ }>;
5140
+ readonly lg: Readonly<{
5141
+ type: "semantic-text";
5142
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5143
+ }>;
5144
+ };
5145
+ readonly motion: {
5146
+ readonly pressScale: string;
5147
+ readonly color: {
5148
+ readonly duration: string;
5149
+ readonly easing: string;
5150
+ };
5151
+ };
5152
+ };
5153
+ readonly chip: {
5154
+ readonly color: {
5155
+ readonly default: {
5156
+ readonly background: Readonly<{
5157
+ type: "semantic";
5158
+ name: _refineui_tokens.SemanticColorName;
5159
+ }>;
5160
+ readonly foreground: Readonly<{
5161
+ type: "semantic";
5162
+ name: _refineui_tokens.SemanticColorName;
5163
+ }>;
5164
+ readonly hoverBackground: Readonly<{
5165
+ type: "semantic";
5166
+ name: _refineui_tokens.SemanticColorName;
5167
+ }>;
5168
+ readonly activeBackground: Readonly<{
5169
+ type: "semantic";
5170
+ name: _refineui_tokens.SemanticColorName;
5171
+ }>;
5172
+ readonly disabledBackground: Readonly<{
5173
+ type: "semantic";
5174
+ name: _refineui_tokens.SemanticColorName;
5175
+ }>;
5176
+ readonly disabledForeground: Readonly<{
5177
+ type: "semantic";
5178
+ name: _refineui_tokens.SemanticColorName;
5179
+ }>;
5180
+ };
5181
+ readonly outline: {
5182
+ readonly background: "transparent";
5183
+ readonly foreground: Readonly<{
5184
+ type: "semantic";
5185
+ name: _refineui_tokens.SemanticColorName;
5186
+ }>;
5187
+ readonly border: Readonly<{
5188
+ type: "semantic";
5189
+ name: _refineui_tokens.SemanticColorName;
5190
+ }>;
5191
+ readonly hoverBorder: Readonly<{
5192
+ type: "semantic";
5193
+ name: _refineui_tokens.SemanticColorName;
5194
+ }>;
5195
+ readonly activeBorder: Readonly<{
5196
+ type: "semantic";
5197
+ name: _refineui_tokens.SemanticColorName;
5198
+ }>;
5199
+ readonly disabledBorder: Readonly<{
5200
+ type: "semantic";
5201
+ name: _refineui_tokens.SemanticColorName;
5202
+ }>;
5203
+ readonly disabledForeground: Readonly<{
5204
+ type: "semantic";
5205
+ name: _refineui_tokens.SemanticColorName;
5206
+ }>;
5207
+ };
5208
+ readonly filled: {
5209
+ readonly background: Readonly<{
5210
+ type: "semantic";
5211
+ name: _refineui_tokens.SemanticColorName;
5212
+ }>;
5213
+ readonly foreground: Readonly<{
5214
+ type: "semantic";
5215
+ name: _refineui_tokens.SemanticColorName;
5216
+ }>;
5217
+ readonly hoverBackground: Readonly<{
5218
+ type: "semantic";
5219
+ name: _refineui_tokens.SemanticColorName;
5220
+ }>;
5221
+ readonly activeBackground: Readonly<{
5222
+ type: "semantic";
5223
+ name: _refineui_tokens.SemanticColorName;
5224
+ }>;
5225
+ readonly disabledBackground: Readonly<{
5226
+ type: "semantic";
5227
+ name: _refineui_tokens.SemanticColorName;
5228
+ }>;
5229
+ readonly disabledForeground: Readonly<{
5230
+ type: "semantic";
5231
+ name: _refineui_tokens.SemanticColorName;
5232
+ }>;
5233
+ };
5234
+ readonly remove: {
5235
+ readonly icon: "currentColor";
5236
+ };
5237
+ };
5238
+ readonly typography: {
5239
+ readonly sm: Readonly<{
5240
+ type: "semantic-text";
5241
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5242
+ }>;
5243
+ readonly md: Readonly<{
5244
+ type: "semantic-text";
5245
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5246
+ }>;
5247
+ readonly lg: Readonly<{
5248
+ type: "semantic-text";
5249
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5250
+ }>;
5251
+ };
5252
+ };
5253
+ readonly badge: {
5254
+ readonly color: {
5255
+ readonly default: {
5256
+ readonly background: Readonly<{
5257
+ type: "semantic";
5258
+ name: _refineui_tokens.SemanticColorName;
5259
+ }>;
5260
+ readonly foreground: Readonly<{
5261
+ type: "semantic";
5262
+ name: _refineui_tokens.SemanticColorName;
5263
+ }>;
5264
+ };
5265
+ readonly neutral: {
5266
+ readonly background: Readonly<{
5267
+ type: "semantic";
5268
+ name: _refineui_tokens.SemanticColorName;
5269
+ }>;
5270
+ readonly foreground: Readonly<{
5271
+ type: "semantic";
5272
+ name: _refineui_tokens.SemanticColorName;
5273
+ }>;
5274
+ };
5275
+ readonly outline: {
5276
+ readonly background: "transparent";
5277
+ readonly foreground: Readonly<{
5278
+ type: "semantic";
5279
+ name: _refineui_tokens.SemanticColorName;
5280
+ }>;
5281
+ readonly border: Readonly<{
5282
+ type: "semantic";
5283
+ name: _refineui_tokens.SemanticColorName;
5284
+ }>;
5285
+ };
5286
+ readonly success: {
5287
+ readonly background: Readonly<{
5288
+ type: "semantic";
5289
+ name: _refineui_tokens.SemanticColorName;
5290
+ }>;
5291
+ readonly foreground: Readonly<{
5292
+ type: "semantic";
5293
+ name: _refineui_tokens.SemanticColorName;
5294
+ }>;
5295
+ };
5296
+ readonly warning: {
5297
+ readonly background: Readonly<{
5298
+ type: "semantic";
5299
+ name: _refineui_tokens.SemanticColorName;
5300
+ }>;
5301
+ readonly foreground: Readonly<{
5302
+ type: "semantic";
5303
+ name: _refineui_tokens.SemanticColorName;
5304
+ }>;
5305
+ };
5306
+ readonly danger: {
5307
+ readonly background: Readonly<{
5308
+ type: "semantic";
5309
+ name: _refineui_tokens.SemanticColorName;
5310
+ }>;
5311
+ readonly foreground: Readonly<{
5312
+ type: "semantic";
5313
+ name: _refineui_tokens.SemanticColorName;
5314
+ }>;
5315
+ };
5316
+ };
5317
+ };
5318
+ readonly alert: {
5319
+ readonly color: {
5320
+ readonly background: Readonly<{
5321
+ type: "semantic";
5322
+ name: _refineui_tokens.SemanticColorName;
5323
+ }>;
5324
+ readonly border: Readonly<{
5325
+ type: "semantic";
5326
+ name: _refineui_tokens.SemanticColorName;
5327
+ }>;
5328
+ readonly title: Readonly<{
5329
+ type: "semantic";
5330
+ name: _refineui_tokens.SemanticColorName;
5331
+ }>;
5332
+ readonly description: {
5333
+ readonly default: Readonly<{
5334
+ type: "semantic";
5335
+ name: _refineui_tokens.SemanticColorName;
5336
+ }>;
5337
+ readonly info: Readonly<{
5338
+ type: "semantic";
5339
+ name: _refineui_tokens.SemanticColorName;
5340
+ }>;
5341
+ readonly success: Readonly<{
5342
+ type: "semantic";
5343
+ name: _refineui_tokens.SemanticColorName;
5344
+ }>;
5345
+ readonly warning: Readonly<{
5346
+ type: "semantic";
5347
+ name: _refineui_tokens.SemanticColorName;
5348
+ }>;
5349
+ readonly danger: Readonly<{
5350
+ type: "semantic";
5351
+ name: _refineui_tokens.SemanticColorName;
5352
+ }>;
5353
+ readonly custom: Readonly<{
5354
+ type: "semantic";
5355
+ name: _refineui_tokens.SemanticColorName;
5356
+ }>;
5357
+ };
5358
+ readonly accent: {
5359
+ readonly default: Readonly<{
5360
+ type: "semantic";
5361
+ name: _refineui_tokens.SemanticColorName;
5362
+ }>;
5363
+ readonly info: Readonly<{
5364
+ type: "semantic";
5365
+ name: _refineui_tokens.SemanticColorName;
5366
+ }>;
5367
+ readonly success: Readonly<{
5368
+ type: "semantic";
5369
+ name: _refineui_tokens.SemanticColorName;
5370
+ }>;
5371
+ readonly warning: Readonly<{
5372
+ type: "semantic";
5373
+ name: _refineui_tokens.SemanticColorName;
5374
+ }>;
5375
+ readonly danger: Readonly<{
5376
+ type: "semantic";
5377
+ name: _refineui_tokens.SemanticColorName;
5378
+ }>;
5379
+ readonly custom: Readonly<{
5380
+ type: "semantic";
5381
+ name: _refineui_tokens.SemanticColorName;
5382
+ }>;
5383
+ };
5384
+ };
5385
+ readonly typography: {
5386
+ readonly title: Readonly<{
5387
+ type: "semantic-text";
5388
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5389
+ }>;
5390
+ readonly description: Readonly<{
5391
+ type: "semantic-text";
5392
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5393
+ }>;
5394
+ };
5395
+ };
5396
+ readonly dialog: {
5397
+ readonly color: {
5398
+ readonly overlay: Readonly<{
5399
+ type: "semantic";
5400
+ name: _refineui_tokens.SemanticColorName;
5401
+ }>;
5402
+ readonly content: {
5403
+ readonly background: Readonly<{
5404
+ type: "semantic";
5405
+ name: _refineui_tokens.SemanticColorName;
5406
+ }>;
5407
+ };
5408
+ readonly header: {
5409
+ readonly foreground: Readonly<{
5410
+ type: "semantic";
5411
+ name: _refineui_tokens.SemanticColorName;
5412
+ }>;
5413
+ };
5414
+ readonly title: {
5415
+ readonly foreground: Readonly<{
5416
+ type: "semantic";
5417
+ name: _refineui_tokens.SemanticColorName;
5418
+ }>;
5419
+ };
5420
+ readonly description: {
5421
+ readonly foreground: Readonly<{
5422
+ type: "semantic";
5423
+ name: _refineui_tokens.SemanticColorName;
5424
+ }>;
5425
+ };
5426
+ readonly close: {
5427
+ readonly icon: "currentColor";
5428
+ };
5429
+ readonly panel: {
5430
+ readonly background: Readonly<{
5431
+ type: "semantic";
5432
+ name: _refineui_tokens.SemanticColorName;
5433
+ }>;
5434
+ readonly title: Readonly<{
5435
+ type: "semantic";
5436
+ name: _refineui_tokens.SemanticColorName;
5437
+ }>;
5438
+ readonly description: Readonly<{
5439
+ type: "semantic";
5440
+ name: _refineui_tokens.SemanticColorName;
5441
+ }>;
5442
+ };
5443
+ };
5444
+ readonly typography: {
5445
+ readonly title: Readonly<{
5446
+ type: "semantic-text";
5447
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5448
+ }>;
5449
+ readonly description: Readonly<{
5450
+ type: "semantic-text";
5451
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5452
+ }>;
5453
+ };
5454
+ readonly elevation: {
5455
+ readonly role: "modal";
5456
+ readonly foundation: _refineui_tokens.SemanticShadowElevationPair;
5457
+ };
5458
+ readonly motion: {
5459
+ readonly enterScale: string;
5460
+ readonly panel: {
5461
+ readonly duration: string;
5462
+ readonly easing: string;
5463
+ };
5464
+ };
5465
+ };
5466
+ readonly drawer: {
5467
+ readonly color: {
5468
+ readonly overlay: Readonly<{
5469
+ type: "semantic";
5470
+ name: _refineui_tokens.SemanticColorName;
5471
+ }>;
5472
+ readonly content: {
5473
+ readonly background: Readonly<{
5474
+ type: "semantic";
5475
+ name: _refineui_tokens.SemanticColorName;
5476
+ }>;
5477
+ };
5478
+ readonly header: {
5479
+ readonly foreground: Readonly<{
5480
+ type: "semantic";
5481
+ name: _refineui_tokens.SemanticColorName;
5482
+ }>;
5483
+ readonly divider: Readonly<{
5484
+ type: "semantic";
5485
+ name: _refineui_tokens.SemanticColorName;
5486
+ }>;
5487
+ };
5488
+ readonly title: {
5489
+ readonly foreground: Readonly<{
5490
+ type: "semantic";
5491
+ name: _refineui_tokens.SemanticColorName;
5492
+ }>;
5493
+ };
5494
+ readonly description: {
5495
+ readonly foreground: Readonly<{
5496
+ type: "semantic";
5497
+ name: _refineui_tokens.SemanticColorName;
5498
+ }>;
5499
+ };
5500
+ readonly body: {
5501
+ readonly foreground: Readonly<{
5502
+ type: "semantic";
5503
+ name: _refineui_tokens.SemanticColorName;
5504
+ }>;
5505
+ readonly divider: Readonly<{
5506
+ type: "semantic";
5507
+ name: _refineui_tokens.SemanticColorName;
5508
+ }>;
5509
+ };
5510
+ readonly footer: {
5511
+ readonly divider: Readonly<{
5512
+ type: "semantic";
5513
+ name: _refineui_tokens.SemanticColorName;
5514
+ }>;
5515
+ };
5516
+ readonly close: {
5517
+ readonly icon: "currentColor";
5518
+ };
5519
+ readonly panel: {
5520
+ readonly background: Readonly<{
5521
+ type: "semantic";
5522
+ name: _refineui_tokens.SemanticColorName;
5523
+ }>;
5524
+ readonly title: Readonly<{
5525
+ type: "semantic";
5526
+ name: _refineui_tokens.SemanticColorName;
5527
+ }>;
5528
+ readonly description: Readonly<{
5529
+ type: "semantic";
5530
+ name: _refineui_tokens.SemanticColorName;
5531
+ }>;
5532
+ readonly divider: Readonly<{
5533
+ type: "semantic";
5534
+ name: _refineui_tokens.SemanticColorName;
5535
+ }>;
5536
+ readonly body: Readonly<{
5537
+ type: "semantic";
5538
+ name: _refineui_tokens.SemanticColorName;
5539
+ }>;
5540
+ };
5541
+ };
5542
+ readonly typography: {
5543
+ readonly title: Readonly<{
5544
+ type: "semantic-text";
5545
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5546
+ }>;
5547
+ readonly description: Readonly<{
5548
+ type: "semantic-text";
5549
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5550
+ }>;
5551
+ readonly body: Readonly<{
5552
+ type: "semantic-text";
5553
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5554
+ }>;
5555
+ };
5556
+ readonly motion: {
5557
+ readonly panel: {
5558
+ readonly duration: string;
5559
+ readonly easing: string;
5560
+ };
5561
+ };
5562
+ };
5563
+ readonly accordion: {
5564
+ readonly color: {
5565
+ readonly item: {
5566
+ readonly border: Readonly<{
5567
+ type: "semantic";
5568
+ name: _refineui_tokens.SemanticColorName;
5569
+ }>;
5570
+ };
5571
+ readonly trigger: {
5572
+ readonly background: Readonly<{
5573
+ type: "semantic";
5574
+ name: _refineui_tokens.SemanticColorName;
5575
+ }>;
5576
+ readonly foreground: Readonly<{
5577
+ type: "semantic";
5578
+ name: _refineui_tokens.SemanticColorName;
5579
+ }>;
5580
+ readonly border: Readonly<{
5581
+ type: "semantic";
5582
+ name: _refineui_tokens.SemanticColorName;
5583
+ }>;
5584
+ };
5585
+ readonly content: {
5586
+ readonly background: Readonly<{
5587
+ type: "semantic";
5588
+ name: _refineui_tokens.SemanticColorName;
5589
+ }>;
5590
+ readonly foreground: Readonly<{
5591
+ type: "semantic";
5592
+ name: _refineui_tokens.SemanticColorName;
5593
+ }>;
5594
+ readonly border: Readonly<{
5595
+ type: "semantic";
5596
+ name: _refineui_tokens.SemanticColorName;
5597
+ }>;
5598
+ };
5599
+ };
5600
+ readonly typography: {
5601
+ readonly trigger: {
5602
+ readonly sm: Readonly<{
5603
+ type: "semantic-text";
5604
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5605
+ }>;
5606
+ readonly md: Readonly<{
5607
+ type: "semantic-text";
5608
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5609
+ }>;
5610
+ readonly lg: Readonly<{
5611
+ type: "semantic-text";
5612
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5613
+ }>;
5614
+ };
5615
+ readonly content: {
5616
+ readonly sm: Readonly<{
5617
+ type: "semantic-text";
5618
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5619
+ }>;
5620
+ readonly md: Readonly<{
5621
+ type: "semantic-text";
5622
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5623
+ }>;
5624
+ readonly lg: Readonly<{
5625
+ type: "semantic-text";
5626
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5627
+ }>;
5628
+ };
5629
+ };
5630
+ readonly motion: {
5631
+ readonly panel: string;
5632
+ readonly content: string;
5633
+ };
5634
+ };
5635
+ readonly tabs: {
5636
+ readonly motion: {
5637
+ readonly indicator: {
5638
+ readonly duration: string;
5639
+ readonly easing: string;
5640
+ };
5641
+ };
5642
+ };
5643
+ readonly input: {
5644
+ readonly color: {
5645
+ readonly text: Readonly<{
5646
+ type: "semantic";
5647
+ name: _refineui_tokens.SemanticColorName;
5648
+ }>;
5649
+ readonly placeholder: Readonly<{
5650
+ type: "semantic";
5651
+ name: _refineui_tokens.SemanticColorName;
5652
+ }>;
5653
+ readonly background: Readonly<{
5654
+ type: "semantic";
5655
+ name: _refineui_tokens.SemanticColorName;
5656
+ }>;
5657
+ readonly disabledBackground: Readonly<{
5658
+ type: "semantic";
5659
+ name: _refineui_tokens.SemanticColorName;
5660
+ }>;
5661
+ readonly border: {
5662
+ readonly default: Readonly<{
5663
+ type: "semantic";
5664
+ name: _refineui_tokens.SemanticColorName;
5665
+ }>;
5666
+ readonly focus: Readonly<{
5667
+ type: "semantic";
5668
+ name: _refineui_tokens.SemanticColorName;
5669
+ }>;
5670
+ readonly error: Readonly<{
5671
+ type: "semantic";
5672
+ name: _refineui_tokens.SemanticColorName;
5673
+ }>;
5674
+ readonly success: Readonly<{
5675
+ type: "semantic";
5676
+ name: _refineui_tokens.SemanticColorName;
5677
+ }>;
5678
+ readonly disabled: Readonly<{
5679
+ type: "semantic";
5680
+ name: _refineui_tokens.SemanticColorName;
5681
+ }>;
5682
+ };
5683
+ };
5684
+ readonly typography: {
5685
+ readonly sm: Readonly<{
5686
+ type: "semantic-text";
5687
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5688
+ }>;
5689
+ readonly md: Readonly<{
5690
+ type: "semantic-text";
5691
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5692
+ }>;
5693
+ readonly lg: Readonly<{
5694
+ type: "semantic-text";
5695
+ name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
5696
+ }>;
5697
+ };
5698
+ };
5699
+ readonly checkbox: {
5700
+ readonly color: {
5701
+ readonly label: {
5702
+ readonly default: Readonly<{
5703
+ type: "semantic";
5704
+ name: _refineui_tokens.SemanticColorName;
5705
+ }>;
5706
+ readonly description: Readonly<{
5707
+ type: "semantic";
5708
+ name: _refineui_tokens.SemanticColorName;
5709
+ }>;
5710
+ readonly disabled: Readonly<{
5711
+ type: "semantic";
5712
+ name: _refineui_tokens.SemanticColorName;
5713
+ }>;
5714
+ };
5715
+ readonly checkIcon: {
5716
+ readonly default: Readonly<{
5717
+ type: "semantic";
5718
+ name: _refineui_tokens.SemanticColorName;
5719
+ }>;
5720
+ readonly disabled: Readonly<{
5721
+ type: "semantic";
5722
+ name: _refineui_tokens.SemanticColorName;
5723
+ }>;
5724
+ };
5725
+ };
5726
+ };
5727
+ readonly radio: {
5728
+ readonly color: {
5729
+ readonly label: {
5730
+ readonly default: Readonly<{
5731
+ type: "semantic";
5732
+ name: _refineui_tokens.SemanticColorName;
5733
+ }>;
5734
+ readonly description: Readonly<{
5735
+ type: "semantic";
5736
+ name: _refineui_tokens.SemanticColorName;
5737
+ }>;
5738
+ readonly disabled: Readonly<{
5739
+ type: "semantic";
5740
+ name: _refineui_tokens.SemanticColorName;
5741
+ }>;
5742
+ };
5743
+ readonly control: {
5744
+ readonly dot: Readonly<{
5745
+ type: "semantic";
5746
+ name: _refineui_tokens.SemanticColorName;
5747
+ }>;
5748
+ readonly dotHover: Readonly<{
5749
+ type: "semantic";
5750
+ name: _refineui_tokens.SemanticColorName;
5751
+ }>;
5752
+ readonly background: Readonly<{
5753
+ type: "semantic";
5754
+ name: _refineui_tokens.SemanticColorName;
5755
+ }>;
5756
+ readonly disabledDot: Readonly<{
5757
+ type: "semantic";
5758
+ name: _refineui_tokens.SemanticColorName;
5759
+ }>;
5760
+ readonly borderDefault: Readonly<{
5761
+ type: "semantic";
5762
+ name: _refineui_tokens.SemanticColorName;
5763
+ }>;
5764
+ readonly borderFocus: Readonly<{
5765
+ type: "semantic";
5766
+ name: _refineui_tokens.SemanticColorName;
5767
+ }>;
5768
+ readonly borderDisabled: Readonly<{
5769
+ type: "semantic";
5770
+ name: _refineui_tokens.SemanticColorName;
5771
+ }>;
5772
+ };
5773
+ };
5774
+ };
5775
+ readonly switch: {
5776
+ readonly color: {
5777
+ readonly track: {
5778
+ readonly on: Readonly<{
5779
+ type: "semantic";
5780
+ name: _refineui_tokens.SemanticColorName;
5781
+ }>;
5782
+ readonly off: Readonly<{
5783
+ type: "semantic";
5784
+ name: _refineui_tokens.SemanticColorName;
5785
+ }>;
5786
+ readonly hoverOn: Readonly<{
5787
+ type: "semantic";
5788
+ name: _refineui_tokens.SemanticColorName;
5789
+ }>;
5790
+ readonly activeOn: Readonly<{
5791
+ type: "semantic";
5792
+ name: _refineui_tokens.SemanticColorName;
5793
+ }>;
5794
+ readonly hoverOff: Readonly<{
5795
+ type: "semantic";
5796
+ name: _refineui_tokens.SemanticColorName;
5797
+ }>;
5798
+ readonly activeOff: Readonly<{
5799
+ type: "semantic";
5800
+ name: _refineui_tokens.SemanticColorName;
5801
+ }>;
5802
+ readonly disabledOff: Readonly<{
5803
+ type: "semantic";
5804
+ name: _refineui_tokens.SemanticColorName;
5805
+ }>;
5806
+ readonly disabledOn: Readonly<{
5807
+ type: "semantic";
5808
+ name: _refineui_tokens.SemanticColorName;
5809
+ }>;
5810
+ };
5811
+ readonly thumb: {
5812
+ readonly default: Readonly<{
5813
+ type: "semantic";
5814
+ name: _refineui_tokens.SemanticColorName;
5815
+ }>;
5816
+ readonly disabledOff: Readonly<{
5817
+ type: "semantic";
5818
+ name: _refineui_tokens.SemanticColorName;
5819
+ }>;
5820
+ readonly disabledOn: Readonly<{
5821
+ type: "semantic";
5822
+ name: _refineui_tokens.SemanticColorName;
5823
+ }>;
5824
+ };
5825
+ };
5826
+ };
5827
+ readonly toggle: {
5828
+ readonly color: {
5829
+ readonly track: {
5830
+ readonly on: Readonly<{
5831
+ type: "semantic";
5832
+ name: _refineui_tokens.SemanticColorName;
5833
+ }>;
5834
+ readonly off: Readonly<{
5835
+ type: "semantic";
5836
+ name: _refineui_tokens.SemanticColorName;
5837
+ }>;
5838
+ readonly hoverOn: Readonly<{
5839
+ type: "semantic";
5840
+ name: _refineui_tokens.SemanticColorName;
5841
+ }>;
5842
+ readonly activeOn: Readonly<{
5843
+ type: "semantic";
5844
+ name: _refineui_tokens.SemanticColorName;
5845
+ }>;
5846
+ readonly hoverOff: Readonly<{
5847
+ type: "semantic";
5848
+ name: _refineui_tokens.SemanticColorName;
5849
+ }>;
5850
+ readonly activeOff: Readonly<{
5851
+ type: "semantic";
5852
+ name: _refineui_tokens.SemanticColorName;
5853
+ }>;
5854
+ readonly disabledOff: Readonly<{
5855
+ type: "semantic";
5856
+ name: _refineui_tokens.SemanticColorName;
5857
+ }>;
5858
+ readonly disabledOn: Readonly<{
5859
+ type: "semantic";
5860
+ name: _refineui_tokens.SemanticColorName;
5861
+ }>;
5862
+ };
5863
+ readonly thumb: {
5864
+ readonly default: Readonly<{
5865
+ type: "semantic";
5866
+ name: _refineui_tokens.SemanticColorName;
5867
+ }>;
5868
+ readonly disabledOff: Readonly<{
5869
+ type: "semantic";
5870
+ name: _refineui_tokens.SemanticColorName;
5871
+ }>;
5872
+ readonly disabledOn: Readonly<{
5873
+ type: "semantic";
5874
+ name: _refineui_tokens.SemanticColorName;
5875
+ }>;
5876
+ };
5877
+ };
5878
+ };
5879
+ };
5880
+
5881
+ /** Resolve a semantic text role → `refineui-typo-*` utility class. */
5882
+ declare function semanticTextClass(name: SemanticTextName): string;
5883
+ /** Resolve a component typography token ref → utility class. */
5884
+ declare function componentTextClass(ref: SemanticTextTokenRef<SemanticTextName>): string;
5885
+ /** Size-keyed component token map → utility class (`formControl`, `label`, …). */
5886
+ declare function sizedComponentTextClass<TSize extends string>(map: Record<TSize, SemanticTextTokenRef<SemanticTextName>>, size: TSize): string;
5887
+
5888
+ interface WebIconProps {
5889
+ name: string;
5890
+ size?: number;
5891
+ color?: string;
5892
+ /** RefineUI System Icons style (default: regular) */
5893
+ iconStyle?: "regular" | "filled";
5894
+ className?: string;
5895
+ style?: CSSProperties;
5896
+ /** Shown when the glyph is missing */
5897
+ fallback?: ReactNode;
5898
+ /** Accessibility: omit label → aria-hidden */
5899
+ "aria-label"?: string;
5900
+ }
5901
+ /** Glyph from @refineui/web-icons — size/color stay inline on the glyph */
5902
+ declare function WebIcon({ name, size, color, iconStyle, className, style, fallback, "aria-label": ariaLabel, }: WebIconProps): react.JSX.Element;
5903
+
5904
+ /** Web Kit `Button` `79:3304` — Style: Primary · Secondary · Outline · Ghost */
5905
+ type ButtonVariant = "primary" | "secondary" | "outline" | "ghost";
5906
+ /** Web Kit Size — Small / Medium / Large */
5907
+ type ButtonSize = "sm" | "md" | "lg";
5908
+ /** Web Kit Layout — Label / Icon-only (MCP `Layout=Icon`). */
5909
+ type ButtonLayout = "label" | "icon";
5910
+ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
5911
+ variant?: ButtonVariant;
5912
+ size?: ButtonSize;
5913
+ layout?: ButtonLayout;
5914
+ fullWidth?: boolean;
5915
+ }
5916
+
5917
+ declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
5918
+
5919
+ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
5920
+ error?: boolean;
5921
+ success?: boolean;
5922
+ fullWidth?: boolean;
5923
+ size?: "sm" | "md" | "lg";
5924
+ }
5925
+
5926
+ declare function Input({ error, success, fullWidth, size: sizeProp, disabled, className, ...props }: InputProps): react.JSX.Element;
5927
+
5928
+ /** Shared sm / md / lg tiers for Input, SpinButton — keep in sync. */
5929
+
5930
+ type FormControlSize = ControlSize;
5931
+
5932
+ type InputOTPSize = FormControlSize;
5933
+ interface InputOTPProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
5934
+ /** Controlled OTP string. */
5935
+ value?: string;
5936
+ /** Uncontrolled initial value. */
5937
+ defaultValue?: string;
5938
+ onValueChange?: (value: string) => void;
5939
+ /** Number of slots (must match rendered `InputOTPSlot` indices). */
5940
+ maxLength: number;
5941
+ size?: InputOTPSize;
5942
+ disabled?: boolean;
5943
+ /**
5944
+ * Per-character allowlist. Default: digits only (`/\d/`).
5945
+ * Characters that fail the test are dropped.
5946
+ */
5947
+ pattern?: RegExp;
5948
+ autoFocus?: boolean;
5949
+ name?: string;
5950
+ id?: string;
5951
+ inputMode?: InputHTMLAttributes<HTMLInputElement>["inputMode"];
5952
+ autoComplete?: InputHTMLAttributes<HTMLInputElement>["autoComplete"];
5953
+ /** Accessible name for the control. */
5954
+ "aria-label"?: string;
5955
+ }
5956
+ interface InputOTPSlotProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "defaultValue" | "maxLength" | "disabled" | "type" | "children"> {
5957
+ /** Zero-based slot index. */
5958
+ index: number;
5959
+ }
5960
+
5961
+ 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;
5962
+ declare function InputOTPSlot({ index, className, onChange, onKeyDown, onPaste, onFocus, ...props }: InputOTPSlotProps): react.JSX.Element;
5963
+
5964
+ interface SearchFieldProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
5965
+ /** Controlled query */
5966
+ value?: string;
5967
+ /** Uncontrolled initial query */
5968
+ defaultValue?: string;
5969
+ onValueChange?: (value: string) => void;
5970
+ disabled?: boolean;
5971
+ /**
5972
+ * `filled` — standalone control (sunken surface).
5973
+ * `plain` — flush row for composed surfaces like Command.
5974
+ * @default "filled"
5975
+ */
5976
+ appearance?: "filled" | "plain";
5977
+ /** Forwarded to the inner input. */
5978
+ id?: string;
5979
+ /** Accessible name for the search input. */
5980
+ "aria-label"?: string;
5981
+ }
5982
+ type SearchFieldIconProps = HTMLAttributes<HTMLSpanElement> & {
5983
+ /** Defaults to the search glyph */
5984
+ children?: ReactNode;
5985
+ };
5986
+ type SearchFieldInputProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "value" | "defaultValue" | "disabled">;
5987
+ type SearchFieldClearProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, "type"> & {
5988
+ /** Defaults to the dismiss glyph */
5989
+ children?: ReactNode;
5990
+ };
5991
+
5992
+ declare function SearchField({ value, defaultValue, onValueChange, disabled, appearance, className, children, id, onPointerDown, "aria-label": ariaLabel, ...props }: SearchFieldProps): react.JSX.Element;
5993
+ declare function SearchFieldIcon({ children, className, ...props }: SearchFieldIconProps): react.JSX.Element;
5994
+ declare const SearchFieldInput: react.ForwardRefExoticComponent<SearchFieldInputProps & react.RefAttributes<HTMLInputElement>>;
5995
+ declare function SearchFieldClear({ className, children, disabled: disabledProp, onClick, "aria-label": ariaLabel, ...props }: SearchFieldClearProps): react.JSX.Element | null;
5996
+
5997
+ interface TextProps extends HTMLAttributes<HTMLElement> {
5998
+ /** Semantic text role — maps to Foundation typography via `SEMANTIC_TEXT`. */
5999
+ variant: SemanticTextName;
6000
+ /** Root element. Default `span`. */
6001
+ as?: ElementType;
6002
+ }
6003
+ /** Semantic typography primitive — Polaris `Text` / M3 typescale consumer. */
6004
+ declare function Text({ variant, as: Component, className, ...props }: TextProps): react.JSX.Element;
6005
+
6006
+ interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
6007
+ error?: boolean;
6008
+ success?: boolean;
6009
+ fullWidth?: boolean;
6010
+ }
6011
+
6012
+ declare function Textarea({ error, success, fullWidth, disabled, className, ...props }: TextareaProps): react.JSX.Element;
6013
+
6014
+ type BadgeVariant = "default" | "neutral" | "outline" | "success" | "warning" | "danger";
6015
+ type BadgeLayout = "label" | "number";
6016
+ interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
6017
+ variant?: BadgeVariant;
6018
+ layout?: BadgeLayout;
6019
+ }
6020
+
6021
+ declare function Badge({ variant, layout, className, ...props }: BadgeProps): react.JSX.Element;
6022
+
6023
+ interface CardProps extends HTMLAttributes<HTMLDivElement> {
6024
+ variant?: "elevated" | "outlined";
6025
+ interactive?: boolean;
6026
+ state?: "default" | "hover" | "pressed" | "disabled";
6027
+ }
6028
+ declare function Card({ variant, interactive, state, className, ...props }: CardProps): react.JSX.Element;
6029
+
6030
+ declare function CardHeaderMain({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
6031
+
6032
+ declare function CardHeader({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
6033
+
6034
+ declare function CardTitle({ className, ...props }: HTMLAttributes<HTMLHeadingElement>): react.JSX.Element;
6035
+
6036
+ declare function CardDescription({ className, ...props }: HTMLAttributes<HTMLParagraphElement>): react.JSX.Element;
6037
+
6038
+ declare function CardAction({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
6039
+
6040
+ declare function CardContent({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
6041
+
6042
+ declare function CardFooter({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
6043
+
6044
+ interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
6045
+ description?: string;
6046
+ label?: string;
6047
+ variant?: "default" | "circular";
6048
+ }
6049
+
6050
+ declare function Checkbox({ label, description, variant, id, className, disabled, checked: checkedProp, defaultChecked, onChange, ...props }: CheckboxProps): react.JSX.Element;
6051
+
6052
+ interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
6053
+ label?: string;
6054
+ description?: string;
6055
+ allowUncheck?: boolean;
6056
+ }
6057
+ interface RadioInputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
6058
+ }
6059
+
6060
+ declare function Radio({ label, description, id, className, disabled, allowUncheck, onClick, ...props }: RadioProps): react.JSX.Element;
6061
+
6062
+ declare const RadioInput: react.ForwardRefExoticComponent<RadioInputProps & react.RefAttributes<HTMLInputElement>>;
6063
+
6064
+ type SelectSize = "sm" | "md" | "lg";
6065
+ /**
6066
+ * `filled` — standalone field chrome (border + surface).
6067
+ * `plain` — flush trigger for composed surfaces (Footer locale, Calendar caption).
6068
+ */
6069
+ type SelectTriggerAppearance = "filled" | "plain";
6070
+ interface SelectProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
6071
+ value?: string;
6072
+ defaultValue?: string;
6073
+ open?: boolean;
6074
+ onOpenChange?: (open: boolean) => void;
6075
+ onValueChange?: (value: string) => void;
6076
+ placeholder?: string;
6077
+ size?: SelectSize;
6078
+ fullWidth?: boolean;
6079
+ disabled?: boolean;
6080
+ children?: ReactNode;
6081
+ }
6082
+ interface SelectTriggerProps extends HTMLAttributes<HTMLButtonElement> {
6083
+ children?: ReactNode;
6084
+ /**
6085
+ * `filled` — default field chrome.
6086
+ * `plain` — no field chrome; compose visuals via `className` / parent recipe.
6087
+ * @default "filled"
6088
+ */
6089
+ appearance?: SelectTriggerAppearance;
6090
+ }
6091
+ interface SelectValueProps extends HTMLAttributes<HTMLSpanElement> {
6092
+ placeholder?: string;
6093
+ }
6094
+ interface SelectIconProps extends HTMLAttributes<HTMLSpanElement> {
6095
+ children?: ReactNode;
6096
+ }
6097
+ interface SelectContentProps extends HTMLAttributes<HTMLDivElement> {
6098
+ children?: ReactNode;
6099
+ /** Default `item-aligned`. `popper`: compact panel below/above trigger */
6100
+ position?: "item-aligned" | "popper";
6101
+ /** Portal target when set (else nearest `SelectPortal` or `document.body`) */
6102
+ container?: HTMLElement | null;
6103
+ }
6104
+ interface SelectViewportProps extends HTMLAttributes<HTMLDivElement> {
6105
+ children?: ReactNode;
6106
+ }
6107
+ interface SelectGroupProps extends HTMLAttributes<HTMLDivElement> {
6108
+ children?: ReactNode;
6109
+ }
6110
+ interface SelectLabelProps extends HTMLAttributes<HTMLDivElement> {
6111
+ children?: ReactNode;
6112
+ }
6113
+ interface SelectSeparatorProps extends HTMLAttributes<HTMLDivElement> {
6114
+ }
6115
+ interface SelectItemProps extends HTMLAttributes<HTMLDivElement> {
6116
+ value: string;
2663
6117
  disabled?: boolean;
2664
6118
  children?: ReactNode;
2665
6119
  textValue?: string;
@@ -3902,4 +7356,84 @@ declare function ChartAxisLabels({ labels, align, className, ...props }: ChartAx
3902
7356
  declare function ChartLegend({ className, ...props }: ChartLegendProps): react.JSX.Element;
3903
7357
  declare function ChartLegendItem({ seriesColor, className, children, style, ...props }: ChartLegendItemProps): react.JSX.Element;
3904
7358
 
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 };
7359
+ interface CollapsibleRootProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
7360
+ open?: boolean;
7361
+ defaultOpen?: boolean;
7362
+ onOpenChange?: (open: boolean) => void;
7363
+ asChild?: boolean;
7364
+ children?: any;
7365
+ }
7366
+ declare const CollapsibleRoot: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>>;
7367
+ interface CollapsibleTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
7368
+ asChild?: boolean;
7369
+ }
7370
+ declare const CollapsibleTrigger: react.ForwardRefExoticComponent<CollapsibleTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7371
+ interface CollapsibleContentProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
7372
+ children?: any;
7373
+ }
7374
+ declare const CollapsibleContent: react.ForwardRefExoticComponent<CollapsibleContentProps & react.RefAttributes<HTMLDivElement>>;
7375
+ declare const Collapsible: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>> & {
7376
+ Root: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>>;
7377
+ Trigger: react.ForwardRefExoticComponent<CollapsibleTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7378
+ Content: react.ForwardRefExoticComponent<CollapsibleContentProps & react.RefAttributes<HTMLDivElement>>;
7379
+ };
7380
+
7381
+ type ContextMenuSelectEvent = {
7382
+ preventDefault: () => void;
7383
+ defaultPrevented: boolean;
7384
+ };
7385
+ interface ContextMenuRootProps {
7386
+ modal?: boolean;
7387
+ onOpenChange?: (open: boolean) => void;
7388
+ children?: ReactNode;
7389
+ className?: string;
7390
+ }
7391
+ declare function ContextMenuRoot({ modal, onOpenChange, children }: ContextMenuRootProps): react.JSX.Element;
7392
+ interface ContextMenuTriggerProps extends HTMLAttributes<HTMLElement> {
7393
+ asChild?: boolean;
7394
+ }
7395
+ declare const ContextMenuTrigger: react.ForwardRefExoticComponent<ContextMenuTriggerProps & react.RefAttributes<HTMLElement>>;
7396
+ declare function ContextMenuPortal({ children }: {
7397
+ children?: ReactNode;
7398
+ }): react.JSX.Element;
7399
+ interface ContextMenuContentProps extends HTMLAttributes<HTMLDivElement> {
7400
+ }
7401
+ declare const ContextMenuContent: react.ForwardRefExoticComponent<ContextMenuContentProps & react.RefAttributes<HTMLDivElement>>;
7402
+ interface ContextMenuItemProps extends HTMLAttributes<HTMLButtonElement> {
7403
+ disabled?: boolean;
7404
+ description?: ReactNode;
7405
+ shortcut?: ReactNode;
7406
+ startIcon?: ReactNode;
7407
+ endIcon?: ReactNode;
7408
+ state?: "default" | "hover" | "pressed" | "active" | "disabled";
7409
+ onSelect?: (event: ContextMenuSelectEvent) => void;
7410
+ }
7411
+ declare const ContextMenuItem: react.ForwardRefExoticComponent<ContextMenuItemProps & react.RefAttributes<HTMLButtonElement>>;
7412
+ declare const ContextMenuSeparator: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
7413
+ declare function ContextMenuSection({ className, children, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
7414
+ declare function ContextMenuSub({ children }: {
7415
+ children?: ReactNode;
7416
+ }): react.JSX.Element;
7417
+ interface ContextMenuSubTriggerProps extends HTMLAttributes<HTMLButtonElement> {
7418
+ asChild?: boolean;
7419
+ description?: ReactNode;
7420
+ startIcon?: ReactNode;
7421
+ }
7422
+ declare const ContextMenuSubTrigger: react.ForwardRefExoticComponent<ContextMenuSubTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7423
+ interface ContextMenuSubContentProps extends HTMLAttributes<HTMLDivElement> {
7424
+ }
7425
+ declare const ContextMenuSubContent: react.ForwardRefExoticComponent<ContextMenuSubContentProps & react.RefAttributes<HTMLDivElement>>;
7426
+ declare const ContextMenu: typeof ContextMenuRoot & {
7427
+ Root: typeof ContextMenuRoot;
7428
+ Trigger: react.ForwardRefExoticComponent<ContextMenuTriggerProps & react.RefAttributes<HTMLElement>>;
7429
+ Portal: typeof ContextMenuPortal;
7430
+ Content: react.ForwardRefExoticComponent<ContextMenuContentProps & react.RefAttributes<HTMLDivElement>>;
7431
+ Item: react.ForwardRefExoticComponent<ContextMenuItemProps & react.RefAttributes<HTMLButtonElement>>;
7432
+ Section: typeof ContextMenuSection;
7433
+ Separator: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
7434
+ Sub: typeof ContextMenuSub;
7435
+ SubTrigger: react.ForwardRefExoticComponent<ContextMenuSubTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7436
+ SubContent: react.ForwardRefExoticComponent<ContextMenuSubContentProps & react.RefAttributes<HTMLDivElement>>;
7437
+ };
7438
+
7439
+ 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, Collapsible, CollapsibleContent, type CollapsibleContentProps, CollapsibleRoot, type CollapsibleRootProps, CollapsibleTrigger, type CollapsibleTriggerProps, 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, ContextMenu, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, type ContextMenuRootProps, ContextMenuSection, type ContextMenuSelectEvent, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, 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, componentTokens, componentTypographyTokens, defaultCommandFilter, dismissToast, footerLinkClassName, footerLocaleLinkClassName, footerLocaleTriggerClassName, footerSocialLinkClassName, semanticTextClass, sizedComponentTextClass, toast, useSidebarPeek };