@etus/ui 0.3.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -15,7 +15,7 @@ import * as TogglePrimitive from '@radix-ui/react-toggle';
15
15
  import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
16
16
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
17
17
  import { Locale } from 'date-fns';
18
- import { DayPicker, DayButton } from 'react-day-picker';
18
+ import { DayPicker, DayButton, DateRange as DateRange$1 } from 'react-day-picker';
19
19
  import * as react_hook_form from 'react-hook-form';
20
20
  import { FieldValues, FieldPath, UseFormReturn, ControllerProps } from 'react-hook-form';
21
21
  import { Slot } from '@radix-ui/react-slot';
@@ -445,7 +445,7 @@ type BadgeLegacyVariant = NonNullable<BadgeProps["variant"]>;
445
445
 
446
446
  declare const badgeVariants: (props?: ({
447
447
  type?: "pill-color" | "pill-outline" | "badge-color" | "badge-outline" | "badge-modern" | null | undefined;
448
- color?: "destructive" | "primary" | "success" | "warning" | "muted" | "blue-gray" | "blue-light" | "blue" | "indigo" | "purple" | "pink" | "orange" | null | undefined;
448
+ color?: "destructive" | "primary" | "success" | "warning" | "info" | "tip" | "muted" | "blue-gray" | "blue-light" | "blue" | "indigo" | "purple" | "pink" | "orange" | null | undefined;
449
449
  size?: "default" | "sm" | "lg" | null | undefined;
450
450
  } & class_variance_authority_types.ClassProp) | undefined) => string;
451
451
  declare function Badge({ className, type, color, size, dot, icon, leadingIcon, trailingIcon, country, avatar, iconOnly, onDismiss, dismissLabel, interactive, tooltip, variant, asChild, children, onClick, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
@@ -662,6 +662,7 @@ declare const dividerWrapperVariants: (props?: ({
662
662
  orientation?: "vertical" | "horizontal" | null | undefined;
663
663
  labelPosition?: "center" | "left" | "right" | null | undefined;
664
664
  } & class_variance_authority_types.ClassProp) | undefined) => string;
665
+
665
666
  /**
666
667
  * Divider - A visual separator with optional content
667
668
  *
@@ -750,6 +751,10 @@ type ButtonGroupItemIconMode = "dot" | "leading" | "none" | "only";
750
751
  * State for ButtonGroupItem
751
752
  */
752
753
  type ButtonGroupItemState = "default" | "disabled" | "focused" | "hover";
754
+ /**
755
+ * Size for ButtonGroupItem (h=32/36/40px per DES-1250 item 3)
756
+ */
757
+ type ButtonGroupItemSize = "lg" | "md" | "sm";
753
758
  /**
754
759
  * ButtonGroupItem component props - individual segment in a segmented button group
755
760
  */
@@ -788,6 +793,11 @@ interface ButtonGroupItemProps extends Omit<ComponentProps<"button">, "children"
788
793
  * @internal - set automatically by ButtonGroup
789
794
  */
790
795
  isLast?: boolean;
796
+ /**
797
+ * Item size (h=32/36/40px per DES-1250 item 3)
798
+ * @default "md"
799
+ */
800
+ size?: ButtonGroupItemSize;
791
801
  }
792
802
  /**
793
803
  * Available button group orientations
@@ -809,10 +819,11 @@ declare const ButtonGroupContext: React$1.Context<ButtonGroupContextValue | null
809
819
  */
810
820
  declare function useButtonGroup(): ButtonGroupContextValue | null;
811
821
  declare const buttonGroupVariants: (props?: ({
812
- variant?: "default" | "segmented" | null | undefined;
822
+ variant?: "default" | "primary" | "segmented" | null | undefined;
813
823
  orientation?: "vertical" | "horizontal" | null | undefined;
814
824
  } & class_variance_authority_types.ClassProp) | undefined) => string;
815
825
  declare const buttonGroupItemVariants: (props?: ({
826
+ size?: "sm" | "lg" | "md" | null | undefined;
816
827
  iconMode?: "none" | "dot" | "leading" | "only" | null | undefined;
817
828
  current?: boolean | null | undefined;
818
829
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -823,7 +834,7 @@ declare function ButtonGroupSeparator({ className, orientation, ...props }: Butt
823
834
  * ButtonGroupItem - Individual segment in a segmented button group
824
835
  * Use within ButtonGroup variant="segmented"
825
836
  */
826
- declare function ButtonGroupItem({ className, current, iconMode, icon, dot, children, disabled, ...props }: ButtonGroupItemProps): react_jsx_runtime.JSX.Element;
837
+ declare function ButtonGroupItem({ className, current, iconMode, icon, dot, children, disabled, size, ...props }: ButtonGroupItemProps): react_jsx_runtime.JSX.Element;
827
838
 
828
839
  /**
829
840
  * ConfirmButton component props
@@ -932,6 +943,57 @@ type ConfirmButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]
932
943
  */
933
944
  declare function ConfirmButton({ className, variant, size, leftIcon, rightIcon, disabled, children, confirmTitle, confirmDescription, confirmLabel, cancelLabel, confirmVariant, requireTyping, typingPlaceholder, typingLabel, caseSensitive, loading, open: controlledOpen, onOpenChange: controlledOnOpenChange, onConfirm, onCancel, ...props }: ConfirmButtonProps): react_jsx_runtime.JSX.Element;
934
945
 
946
+ declare const featureItemVariants: (props?: ({
947
+ tone?: "warning" | "info" | "subtle" | "brand" | null | undefined;
948
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
949
+ declare const featureItemIconVariants: (props?: ({
950
+ tone?: "warning" | "info" | "subtle" | "brand" | null | undefined;
951
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
952
+
953
+ interface FeatureItemProps extends Omit<ComponentProps<"div">, "title">, VariantProps<typeof featureItemVariants> {
954
+ /**
955
+ * Optional CTA action. Renders below the description as an inline link.
956
+ */
957
+ action?: {
958
+ href?: string;
959
+ label: ReactNode;
960
+ onClick?: () => void;
961
+ };
962
+ /**
963
+ * Feature description (13px / muted).
964
+ */
965
+ description?: ReactNode;
966
+ /**
967
+ * Icon node (typically a Lucide icon component).
968
+ */
969
+ icon: ReactNode;
970
+ /**
971
+ * Feature title — short noun phrase (14px / semibold).
972
+ */
973
+ title: ReactNode;
974
+ }
975
+ type FeatureItemTone = NonNullable<VariantProps<typeof featureItemVariants>["tone"]>;
976
+
977
+ declare function FeatureItem({ className, tone, icon, title, description, action, ...props }: FeatureItemProps): react_jsx_runtime.JSX.Element;
978
+
979
+ declare const featuredIconVariants: (props?: ({
980
+ size?: "xs" | "sm" | "lg" | "xl" | "2xl" | "md" | null | undefined;
981
+ shape?: "circle" | "default" | null | undefined;
982
+ tone?: "default" | "destructive" | "success" | "warning" | "info" | "brand" | null | undefined;
983
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
984
+
985
+ interface FeaturedIconProps extends Omit<ComponentProps<"span">, "color">, VariantProps<typeof featuredIconVariants> {
986
+ /**
987
+ * Icon content (typically a Lucide icon). Sized via CSS — pass the icon component without explicit size.
988
+ */
989
+ children: ReactNode;
990
+ }
991
+ type FeaturedIconSize = NonNullable<VariantProps<typeof featuredIconVariants>["size"]>;
992
+ type FeaturedIconShape = NonNullable<VariantProps<typeof featuredIconVariants>["shape"]>;
993
+ type FeaturedIconTone = NonNullable<VariantProps<typeof featuredIconVariants>["tone"]>;
994
+
995
+ declare function FeaturedIcon({ className, size, shape, tone, children, ...props }: FeaturedIconProps): react_jsx_runtime.JSX.Element;
996
+
935
997
  /**
936
998
  * Semantic heading level (h1-h6)
937
999
  */
@@ -1243,9 +1305,14 @@ interface LabelProps extends ComponentProps<typeof LabelPrimitive.Root> {
1243
1305
  * @default false
1244
1306
  */
1245
1307
  required?: boolean;
1308
+ /**
1309
+ * Size of the label. Maps to Figma canonical `Label/sm·md·lg` typography.
1310
+ * @default "md"
1311
+ */
1312
+ size?: "lg" | "md" | "sm";
1246
1313
  }
1247
1314
 
1248
- declare function Label({ className, required, optional, optionalText, children, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
1315
+ declare function Label({ className, size, required, optional, optionalText, children, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
1249
1316
 
1250
1317
  /**
1251
1318
  * Event payload passed to Link callbacks
@@ -2118,6 +2185,11 @@ interface SplitButtonProps extends Omit<React__default.ComponentProps<"div">, "c
2118
2185
  * Data identifier for event payloads
2119
2186
  */
2120
2187
  "data-id"?: string;
2188
+ /**
2189
+ * Default open state for uncontrolled usage (DES-1306 item 7)
2190
+ * @default false
2191
+ */
2192
+ defaultOpen?: boolean;
2121
2193
  /**
2122
2194
  * Disable both buttons
2123
2195
  * @default false
@@ -2144,6 +2216,14 @@ interface SplitButtonProps extends Omit<React__default.ComponentProps<"div">, "c
2144
2216
  * Primary button click handler
2145
2217
  */
2146
2218
  onClick?: (event: React__default.MouseEvent<HTMLButtonElement>, payload: SplitButtonEventPayload) => void;
2219
+ /**
2220
+ * Callback when dropdown open state changes (DES-1306 item 7)
2221
+ */
2222
+ onOpenChange?: (open: boolean) => void;
2223
+ /**
2224
+ * Controlled open state for the dropdown menu (DES-1306 item 7)
2225
+ */
2226
+ open?: boolean;
2147
2227
  /**
2148
2228
  * Accessible label for the dropdown trigger
2149
2229
  * @default "Open menu"
@@ -2159,11 +2239,15 @@ type SplitButtonVariant = NonNullable<VariantProps<typeof splitButtonVariants>["
2159
2239
  */
2160
2240
  type SplitButtonSize = NonNullable<VariantProps<typeof splitButtonVariants>["size"]>;
2161
2241
 
2242
+ /**
2243
+ * Primary action button variants (left half of SplitButton).
2244
+ */
2162
2245
  declare const splitButtonVariants: (props?: ({
2163
- variant?: "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
2246
+ variant?: "default" | "destructive" | "primary" | "secondary" | "outline" | "ghost" | null | undefined;
2164
2247
  size?: "default" | "sm" | "lg" | null | undefined;
2165
2248
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2166
- declare function SplitButton({ className, variant, size, children, onClick, menuItems, loading, loadingText, disabled, leftIcon, "data-id": dataId, triggerAriaLabel, ...props }: SplitButtonProps): react_jsx_runtime.JSX.Element;
2249
+
2250
+ declare function SplitButton({ className, variant, size, children, onClick, menuItems, loading, loadingText, disabled, leftIcon, "data-id": dataId, triggerAriaLabel, defaultOpen, open, onOpenChange, ...props }: SplitButtonProps): react_jsx_runtime.JSX.Element;
2167
2251
 
2168
2252
  /**
2169
2253
  * StatusIndicator component props
@@ -2194,8 +2278,8 @@ type StatusIndicatorVariant = NonNullable<VariantProps<typeof statusIndicatorVar
2194
2278
  type StatusIndicatorSize = NonNullable<VariantProps<typeof statusIndicatorVariants>["size"]>;
2195
2279
 
2196
2280
  declare const statusIndicatorVariants: (props?: ({
2197
- variant?: "success" | "warning" | "error" | "info" | "neutral" | null | undefined;
2198
- size?: "default" | "xs" | "sm" | "lg" | null | undefined;
2281
+ variant?: "destructive" | "success" | "warning" | "info" | "error" | "neutral" | null | undefined;
2282
+ size?: "default" | "xs" | "sm" | "lg" | "xl" | "2xl" | null | undefined;
2199
2283
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2200
2284
  declare function StatusIndicator({ className, variant, size, pulse, label, labelPosition, "aria-label": ariaLabel, ...props }: StatusIndicatorProps): react_jsx_runtime.JSX.Element;
2201
2285
 
@@ -2391,7 +2475,7 @@ declare const textVariants: (props?: ({
2391
2475
  size?: "base" | "xs" | "sm" | "lg" | "xl" | "2xl" | "4xl" | "3xl" | null | undefined;
2392
2476
  weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
2393
2477
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2394
- type TextElement = "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "label" | "p" | "span";
2478
+ type TextElement = "code" | "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "label" | "p" | "span";
2395
2479
  interface TextProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof textVariants> {
2396
2480
  as?: TextElement;
2397
2481
  asChild?: boolean;
@@ -2399,7 +2483,7 @@ interface TextProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<ty
2399
2483
  htmlFor?: string;
2400
2484
  truncate?: boolean;
2401
2485
  }
2402
- declare function Text({ className, variant, size, weight, as: Element, asChild, truncate, children, ...props }: TextProps): react_jsx_runtime.JSX.Element;
2486
+ declare function Text({ className, variant, size, weight, as, asChild, truncate, children, ...props }: TextProps): react_jsx_runtime.JSX.Element;
2403
2487
 
2404
2488
  /**
2405
2489
  * Variant type derived from textVariants
@@ -3253,6 +3337,17 @@ interface ComboboxProps extends Omit<ComponentProps<"button">, "onChange" | "val
3253
3337
  * @default "No results found."
3254
3338
  */
3255
3339
  emptyMessage?: string;
3340
+ /**
3341
+ * Keyboard shortcut hint shown inside the search input header
3342
+ * (Figma `Caption/C2` kbd indicator per DES-1258 item 3).
3343
+ *
3344
+ * Pass a string ("⌘K", "Ctrl+K") or a ReactNode to render a custom hint.
3345
+ * Omit to hide the hint.
3346
+ *
3347
+ * @example
3348
+ * <Combobox kbdHint="⌘K" ... />
3349
+ */
3350
+ kbdHint?: React.ReactNode;
3256
3351
  /**
3257
3352
  * Callback when value changes
3258
3353
  */
@@ -3318,7 +3413,7 @@ interface ComboboxProps extends Omit<ComponentProps<"button">, "onChange" | "val
3318
3413
  * />
3319
3414
  * ```
3320
3415
  */
3321
- declare function Combobox({ options, value: controlledValue, defaultValue, placeholder, searchPlaceholder, emptyMessage, disabled, open: controlledOpen, defaultOpen, onOpenChange, onChange, onSearch, size, variant, className, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
3416
+ declare function Combobox({ options, value: controlledValue, defaultValue, placeholder, searchPlaceholder, emptyMessage, disabled, open: controlledOpen, defaultOpen, onOpenChange, onChange, onSearch, size, variant, kbdHint, className, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
3322
3417
 
3323
3418
  /**
3324
3419
  * DatePicker size variants
@@ -4101,9 +4196,9 @@ declare function Field({ className, orientation, ...props }: FieldProps): react_
4101
4196
  declare function FieldContent({ className, ...props }: FieldContentProps): react_jsx_runtime.JSX.Element;
4102
4197
  declare function FieldLabel({ className, ...props }: FieldLabelProps): react_jsx_runtime.JSX.Element;
4103
4198
  declare function FieldTitle({ className, ...props }: FieldTitleProps): react_jsx_runtime.JSX.Element;
4104
- declare function FieldDescription({ className, ...props }: FieldDescriptionProps): react_jsx_runtime.JSX.Element;
4199
+ declare function FieldDescription({ className, id, ...props }: FieldDescriptionProps): react_jsx_runtime.JSX.Element;
4105
4200
  declare function FieldSeparator({ children, className, ...props }: FieldSeparatorProps): react_jsx_runtime.JSX.Element;
4106
- declare function FieldError({ className, children, errors, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element | null;
4201
+ declare function FieldError({ className, children, errors, id, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element | null;
4107
4202
 
4108
4203
  /**
4109
4204
  * FloatLabel variant determines label position behavior
@@ -4268,7 +4363,7 @@ interface HelpTextProps extends ComponentProps<"span"> {
4268
4363
  * HelpText variant styles using CVA
4269
4364
  */
4270
4365
  declare const helpTextVariants: (props?: ({
4271
- variant?: "default" | "success" | "warning" | "muted" | "error" | "info" | null | undefined;
4366
+ variant?: "default" | "success" | "warning" | "info" | "muted" | "error" | null | undefined;
4272
4367
  size?: "default" | "sm" | "lg" | null | undefined;
4273
4368
  srOnly?: boolean | null | undefined;
4274
4369
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -4380,7 +4475,7 @@ declare const formDescriptionVariants: (props?: ({
4380
4475
  * Styles validation messages with different states (error, success).
4381
4476
  */
4382
4477
  declare const formMessageVariants: (props?: ({
4383
- state?: "success" | "error" | null | undefined;
4478
+ state?: "success" | "info" | "error" | null | undefined;
4384
4479
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4385
4480
  type FormItemVariantProps = VariantProps<typeof formItemVariants>;
4386
4481
  type FormLabelVariantProps = VariantProps<typeof formLabelVariants>;
@@ -4470,7 +4565,8 @@ interface UseFormFieldReturn {
4470
4565
  formItemId: string;
4471
4566
  formMessageId: string;
4472
4567
  id: string;
4473
- invalid?: boolean;
4568
+ /** Whether the field has validation errors. Always present (react-hook-form FieldState). DES-1270 item 5: was incorrectly optional. */
4569
+ invalid: boolean;
4474
4570
  isDirty: boolean;
4475
4571
  isTouched: boolean;
4476
4572
  isValidating: boolean;
@@ -6143,22 +6239,47 @@ type SuccessMessageVariantProps = VariantProps<typeof successMessageVariants>;
6143
6239
  * Switch size variants
6144
6240
  */
6145
6241
  type SwitchSize = "lg" | "md" | "sm";
6242
+ /**
6243
+ * Switch composition type per Figma
6244
+ */
6245
+ type SwitchType = "box" | "default";
6146
6246
  /**
6147
6247
  * Switch component props
6148
6248
  */
6149
- interface SwitchProps extends ComponentProps<typeof SwitchPrimitive.Root> {
6249
+ interface SwitchProps extends Omit<ComponentProps<typeof SwitchPrimitive.Root>, "type"> {
6250
+ /**
6251
+ * Description text displayed below the label.
6252
+ */
6253
+ descriptionText?: string;
6254
+ /**
6255
+ * Whether to render the descriptionText. Defaults to true when descriptionText is provided.
6256
+ */
6257
+ showDescription?: boolean;
6258
+ /**
6259
+ * Whether to render the switchText label. Defaults to true when switchText is provided.
6260
+ */
6261
+ showText?: boolean;
6150
6262
  /**
6151
6263
  * Visual size of the switch
6152
6264
  * @default "md"
6153
6265
  */
6154
6266
  size?: SwitchSize;
6267
+ /**
6268
+ * Label text displayed next to the switch. Renders as a `<label>` linked to the switch.
6269
+ */
6270
+ switchText?: string;
6271
+ /**
6272
+ * Composition type per Figma. `box` wraps switch + label + description in a bordered container.
6273
+ * @default "default"
6274
+ */
6275
+ type?: SwitchType;
6155
6276
  }
6156
6277
  /**
6157
6278
  * Switch state for controlled usage
6158
6279
  */
6159
6280
  type SwitchState = boolean;
6160
6281
 
6161
- declare function Switch({ className, size, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
6282
+ declare function Switch({ className, size, type, switchText, descriptionText, showText, showDescription, id, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
6162
6283
 
6163
6284
  declare const switchVariants: (props?: ({
6164
6285
  size?: "sm" | "lg" | "md" | null | undefined;
@@ -6900,7 +7021,7 @@ declare function Grid({ as, cols, rows, gap, gapX, gapY, items, justify, flow, c
6900
7021
  * Layout container for sidebars, inspectors, and section panels
6901
7022
  */
6902
7023
  declare const panelVariants: (props?: ({
6903
- variant?: "default" | "inset" | "subtle" | "elevated" | "outlined" | null | undefined;
7024
+ variant?: "default" | "subtle" | "inset" | "elevated" | "outlined" | null | undefined;
6904
7025
  size?: "auto" | "xs" | "sm" | "lg" | "xl" | "md" | "full" | null | undefined;
6905
7026
  position?: "center" | "bottom" | "left" | "right" | "top" | null | undefined;
6906
7027
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -7360,6 +7481,41 @@ type StackJustify = NonNullable<VariantProps<typeof stackVariants>["justify"]>;
7360
7481
  */
7361
7482
  declare function Stack({ as: Component, direction, spacing, align, justify, grow, className, ...props }: StackProps): react_jsx_runtime.JSX.Element;
7362
7483
 
7484
+ interface AccountSwitchAccount {
7485
+ avatarFallback?: string;
7486
+ avatarSrc?: string;
7487
+ email?: string;
7488
+ id: string;
7489
+ isCurrent?: boolean;
7490
+ name: string;
7491
+ plan?: string;
7492
+ }
7493
+ interface AccountSwitchProps extends Omit<ComponentProps<"button">, "onSelect"> {
7494
+ /**
7495
+ * Account list shown inside the dropdown.
7496
+ */
7497
+ accounts: AccountSwitchAccount[];
7498
+ /**
7499
+ * Optional footer items (e.g., "Adicionar workspace", "Configurações", "Sair").
7500
+ */
7501
+ footer?: ReactNode;
7502
+ /**
7503
+ * Optional header rendered above the account list (e.g., signed-in user identity).
7504
+ */
7505
+ header?: ReactNode;
7506
+ /**
7507
+ * Called when a different account is selected.
7508
+ */
7509
+ onSelect?: (account: AccountSwitchAccount) => void;
7510
+ /**
7511
+ * Trigger shape — pill (default, Figma node 1138:3077) or rect (variant).
7512
+ * @default "pill"
7513
+ */
7514
+ triggerShape?: "pill" | "rect";
7515
+ }
7516
+
7517
+ declare function AccountSwitch({ className, accounts, triggerShape, header, footer, onSelect, ...props }: AccountSwitchProps): react_jsx_runtime.JSX.Element;
7518
+
7363
7519
  /**
7364
7520
  * Breadcrumb container props
7365
7521
  */
@@ -8099,6 +8255,15 @@ type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants
8099
8255
  type DropdownMenuSubTriggerVariantProps = VariantProps<typeof dropdownMenuSubTriggerVariants>;
8100
8256
  type DropdownMenuLabelVariantProps = VariantProps<typeof dropdownMenuLabelVariants>;
8101
8257
 
8258
+ /**
8259
+ * Header layout per Figma — controla a posição/justificação dos slots Brand/Nav/Actions.
8260
+ *
8261
+ * - `default`: Brand left, Nav middle, Actions right
8262
+ * - `logo-centered`: Brand center (Nav/Actions side, se providos)
8263
+ * - `links-left`: Nav left, Brand right, Actions inline (espelho do default)
8264
+ * - `centered`: Brand + Nav center, Actions right
8265
+ */
8266
+ type HeaderLayout = "centered" | "default" | "links-left" | "logo-centered";
8102
8267
  /**
8103
8268
  * Header root props
8104
8269
  */
@@ -8108,6 +8273,8 @@ interface HeaderProps extends ComponentProps<"header"> {
8108
8273
  contained?: boolean;
8109
8274
  /** Class for inner container */
8110
8275
  containerClassName?: string;
8276
+ /** Layout per Figma — posiciona Brand/Nav/Actions */
8277
+ layout?: HeaderLayout;
8111
8278
  /** Height size */
8112
8279
  size?: "lg" | "md" | "sm";
8113
8280
  /** Fixed at top when scrolling */
@@ -8154,7 +8321,7 @@ interface HeaderActionsProps extends ComponentProps<"div"> {
8154
8321
  * </HeaderActions>
8155
8322
  * </Header>
8156
8323
  */
8157
- declare function Header({ className, variant, size, sticky, contained, containerClassName, children, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
8324
+ declare function Header({ className, variant, size, sticky, contained, layout, containerClassName, children, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
8158
8325
  /**
8159
8326
  * HeaderBrand - Logo/brand area of the header.
8160
8327
  *
@@ -8183,6 +8350,7 @@ declare const headerVariants: (props?: ({
8183
8350
  */
8184
8351
  declare const headerContainerVariants: (props?: ({
8185
8352
  contained?: boolean | null | undefined;
8353
+ layout?: "default" | "centered" | "links-left" | "logo-centered" | null | undefined;
8186
8354
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8187
8355
  /**
8188
8356
  * HeaderBrand variant styles
@@ -9161,6 +9329,10 @@ declare const sidebarInsetVariants: (props?: class_variance_authority_types.Clas
9161
9329
  declare const sidebarInputVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
9162
9330
  /**
9163
9331
  * SidebarHeader variant styles
9332
+ *
9333
+ * Dual mode consumes sidebar.tokens.json (Figma 1092:542 panel header):
9334
+ * - padding-x = 16px (--sidebar-panel-header-padding-x)
9335
+ * - padding-top = 28px (--sidebar-panel-padding-top) when at top of panel
9164
9336
  */
9165
9337
  declare const sidebarHeaderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
9166
9338
  /**
@@ -9177,10 +9349,19 @@ declare const sidebarSeparatorVariants: (props?: class_variance_authority_types.
9177
9349
  declare const sidebarContentVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
9178
9350
  /**
9179
9351
  * SidebarGroup variant styles
9352
+ *
9353
+ * Dual mode consumes sidebar.tokens.json (Figma 1092:542 Sub Categoria block):
9354
+ * - padding-x = 8px (--sidebar-section-padding-x)
9355
+ * - vertical gap with header handled by panel gap (--sidebar-panel-gap = 28px)
9180
9356
  */
9181
9357
  declare const sidebarGroupVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
9182
9358
  /**
9183
9359
  * SidebarGroupLabel variant styles
9360
+ *
9361
+ * Dual mode consumes sidebar.tokens.json (Figma 1092:542 section title "Dashboards"):
9362
+ * - padding-x = 8px (--sidebar-section-title-padding-x)
9363
+ * - font 10px Regular leading-1 (not 12px uppercase!)
9364
+ * - color = muted-foreground tertiary
9184
9365
  */
9185
9366
  declare const sidebarGroupLabelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
9186
9367
  /**
@@ -9193,6 +9374,10 @@ declare const sidebarGroupActionVariants: (props?: class_variance_authority_type
9193
9374
  declare const sidebarGroupContentVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
9194
9375
  /**
9195
9376
  * SidebarMenu variant styles
9377
+ *
9378
+ * Figma spacing differs per variant:
9379
+ * - Single (Expanded 1091:8942): gap-y 20px between items (--sidebar-rail-item-gap)
9380
+ * - Dual panel (1092:542): gap-y 8px between sub-items (--sidebar-section-content-gap)
9196
9381
  */
9197
9382
  declare const sidebarMenuVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
9198
9383
  /**
@@ -9208,6 +9393,12 @@ declare const sidebarMenuButtonVariants: (props?: ({
9208
9393
  } & class_variance_authority_types.ClassProp) | undefined) => string;
9209
9394
  /**
9210
9395
  * SidebarRailButton variant styles
9396
+ *
9397
+ * Consumes sidebar.tokens.json sub-tokens (Figma 1087:204 Nav Item, status=Default/Active):
9398
+ * - padding 8px, radius 4px (rounded-md)
9399
+ * - icon size 20px (was 16px — Figma canonical)
9400
+ * - fg default = muted-foreground, active = foreground
9401
+ * - bg hover/active = muted
9211
9402
  */
9212
9403
  declare const sidebarRailButtonVariants: (props?: ({
9213
9404
  isActive?: boolean | null | undefined;
@@ -9252,7 +9443,21 @@ type SidebarState = "collapsed" | "expanded";
9252
9443
  */
9253
9444
  interface SidebarContextProps {
9254
9445
  isMobile: boolean;
9255
- mode?: "dual";
9446
+ /**
9447
+ * Sidebar layout mode — maps directly to Figma 1091:9106 status variants:
9448
+ *
9449
+ * - `"single"` (default) — Figma "Expanded" / "Collapsed":
9450
+ * single panel (272px expanded, 64px collapsed). Logo + text labels.
9451
+ * Use for: dashboards with few top-level items, settings pages,
9452
+ * simple apps. Compose with `<SidebarHeader>` + `<SidebarContent>`.
9453
+ *
9454
+ * - `"dual"` — Figma "Secondary":
9455
+ * rail (64px) + panel (216px) side-by-side. Top-level sections as
9456
+ * icons in rail, sub-items in panel. Use for: docs sites, multi-area
9457
+ * apps with rich categories. Compose with `<SidebarRailContent>` +
9458
+ * `<SidebarPanelContent>`.
9459
+ */
9460
+ mode?: "dual" | "single";
9256
9461
  open: boolean;
9257
9462
  openMobile: boolean;
9258
9463
  setOpen: (value: ((prev: boolean) => boolean) | boolean) => void;
@@ -9266,7 +9471,21 @@ interface SidebarContextProps {
9266
9471
  interface SidebarProviderProps extends ComponentProps<"div"> {
9267
9472
  defaultOpen?: boolean;
9268
9473
  /** Enable dual mode: icon rail (56px) + toggleable text panel (216px) */
9269
- mode?: "dual";
9474
+ /**
9475
+ * Sidebar layout mode — maps directly to Figma 1091:9106 status variants:
9476
+ *
9477
+ * - `"single"` (default) — Figma "Expanded" / "Collapsed":
9478
+ * single panel (272px expanded, 64px collapsed). Logo + text labels.
9479
+ * Use for: dashboards with few top-level items, settings pages,
9480
+ * simple apps. Compose with `<SidebarHeader>` + `<SidebarContent>`.
9481
+ *
9482
+ * - `"dual"` — Figma "Secondary":
9483
+ * rail (64px) + panel (216px) side-by-side. Top-level sections as
9484
+ * icons in rail, sub-items in panel. Use for: docs sites, multi-area
9485
+ * apps with rich categories. Compose with `<SidebarRailContent>` +
9486
+ * `<SidebarPanelContent>`.
9487
+ */
9488
+ mode?: "dual" | "single";
9270
9489
  onOpenChange?: (open: boolean) => void;
9271
9490
  open?: boolean;
9272
9491
  }
@@ -9985,6 +10204,15 @@ interface TabsListProps extends ComponentProps<typeof TabsPrimitive.List> {
9985
10204
  * TabsTrigger props
9986
10205
  */
9987
10206
  interface TabsTriggerProps extends ComponentProps<typeof TabsPrimitive.Trigger> {
10207
+ /**
10208
+ * Optional badge rendered after the label (count, status, etc.).
10209
+ * Receives default styling from `--tabs-trigger-badge-*` tokens.
10210
+ */
10211
+ badge?: React$1.ReactNode;
10212
+ /**
10213
+ * Optional icon rendered before the label (Figma `Tabs / Trigger` icon slot).
10214
+ */
10215
+ icon?: React$1.ReactNode;
9988
10216
  }
9989
10217
  /**
9990
10218
  * TabsContent props
@@ -10028,8 +10256,12 @@ declare function Tabs({ className, variant, ...props }: TabsProps): react_jsx_ru
10028
10256
  declare function TabsList({ className, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
10029
10257
  /**
10030
10258
  * TabsTrigger - Button that activates its associated tab content.
10259
+ *
10260
+ * Supports optional `icon` (before label) and `badge` (after label) slots
10261
+ * matching the Figma `Tabs / Trigger` anatomy. When neither slot is provided,
10262
+ * `children` is rendered directly so existing call sites keep working.
10031
10263
  */
10032
- declare function TabsTrigger({ className, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
10264
+ declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
10033
10265
  /**
10034
10266
  * TabsContent - Contains the content associated with each tab.
10035
10267
  */
@@ -10224,8 +10456,18 @@ declare function AccordionItem({ className, ...props }: AccordionItemProps): rea
10224
10456
  declare namespace AccordionItem {
10225
10457
  var displayName: string;
10226
10458
  }
10227
- type AccordionTriggerProps = React$1.ComponentProps<typeof AccordionPrimitive.Trigger>;
10228
- declare function AccordionTrigger({ className, children, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
10459
+ type AccordionTriggerProps = React$1.ComponentProps<typeof AccordionPrimitive.Trigger> & {
10460
+ /**
10461
+ * Custom icon to render in place of the default chevron.
10462
+ * When provided, the icon receives the same transition + transform
10463
+ * animations as the default chevron (rotates on expand).
10464
+ *
10465
+ * @example
10466
+ * <AccordionTrigger chevron={<PlusIcon />}>Section 1</AccordionTrigger>
10467
+ */
10468
+ chevron?: React$1.ReactNode;
10469
+ };
10470
+ declare function AccordionTrigger({ className, children, chevron, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
10229
10471
  declare namespace AccordionTrigger {
10230
10472
  var displayName: string;
10231
10473
  }
@@ -10494,10 +10736,16 @@ declare namespace AreaChart {
10494
10736
  var displayName: string;
10495
10737
  }
10496
10738
 
10739
+ /**
10740
+ * Banner style variants using CVA
10741
+ *
10742
+ * @see https://cva.style/docs
10743
+ */
10497
10744
  declare const bannerVariants: (props?: ({
10498
- variant?: "default" | "success" | "warning" | "error" | "info" | "promo" | null | undefined;
10745
+ variant?: "default" | "success" | "warning" | "info" | "error" | "promo" | null | undefined;
10499
10746
  position?: "bottom" | "top" | "inline" | null | undefined;
10500
10747
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10748
+
10501
10749
  interface BannerProps$1 extends React.ComponentProps<"div">, VariantProps<typeof bannerVariants> {
10502
10750
  /** Action element to display (e.g., button) */
10503
10751
  action?: React.ReactNode;
@@ -10816,10 +11064,16 @@ declare namespace BarList {
10816
11064
  var displayName: string;
10817
11065
  }
10818
11066
 
11067
+ /**
11068
+ * Callout style variants using CVA
11069
+ *
11070
+ * @see https://cva.style/docs
11071
+ */
10819
11072
  declare const calloutVariants: (props?: ({
10820
- variant?: "default" | "success" | "warning" | "error" | "info" | "tip" | null | undefined;
11073
+ variant?: "default" | "success" | "warning" | "info" | "tip" | "error" | null | undefined;
10821
11074
  size?: "sm" | "lg" | "md" | null | undefined;
10822
11075
  } & class_variance_authority_types.ClassProp) | undefined) => string;
11076
+
10823
11077
  interface CalloutProps$1 extends React.ComponentProps<"div">, VariantProps<typeof calloutVariants> {
10824
11078
  /** Custom icon to display (overrides variant icon) */
10825
11079
  icon?: React.ReactNode;
@@ -10972,6 +11226,124 @@ declare namespace CategoryBar {
10972
11226
  var displayName: string;
10973
11227
  }
10974
11228
 
11229
+ /**
11230
+ * ChartCard container variants
11231
+ */
11232
+ declare const chartCardVariants: (props?: ({
11233
+ variant?: "default" | "elevated" | "outlined" | null | undefined;
11234
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
11235
+ /**
11236
+ * ChartCard header variants
11237
+ */
11238
+ declare const chartCardHeaderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11239
+ /**
11240
+ * ChartCard title variants
11241
+ */
11242
+ declare const chartCardTitleVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11243
+ /**
11244
+ * ChartCard value container variants
11245
+ */
11246
+ declare const chartCardValueContainerVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11247
+ /**
11248
+ * ChartCard value text variants
11249
+ */
11250
+ declare const chartCardValueVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11251
+ /**
11252
+ * ChartCard previous value variants
11253
+ */
11254
+ declare const chartCardPreviousValueVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11255
+ /**
11256
+ * ChartCard chart container variants
11257
+ */
11258
+ declare const chartCardChartVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11259
+
11260
+ /**
11261
+ * Value formatter function type
11262
+ */
11263
+ type ChartCardValueFormatter = (value: number) => string;
11264
+ /**
11265
+ * Comparison period type
11266
+ */
11267
+ type ChartCardComparisonPeriod = "no-comparison" | "previous-period" | "previous-year";
11268
+ /**
11269
+ * Data point structure for chart
11270
+ */
11271
+ interface ChartCardDataPoint {
11272
+ /** Full data payload for custom access */
11273
+ [key: string]: unknown;
11274
+ /** Formatted date for display */
11275
+ formattedDate: string;
11276
+ /** The previous period value (for comparison) */
11277
+ previousValue?: null | number;
11278
+ /** The current period value */
11279
+ value: null | number;
11280
+ }
11281
+ /**
11282
+ * Props for ChartCard component
11283
+ */
11284
+ interface ChartCardProps extends Omit<ComponentPropsWithoutRef<"div">, "title">, VariantProps<typeof chartCardVariants> {
11285
+ /** Custom badge to display (overrides auto-generated evolution badge) */
11286
+ badge?: ReactNode;
11287
+ /** Chart height class (default: "h-32") */
11288
+ chartHeight?: string;
11289
+ /** Additional CSS classes */
11290
+ className?: string;
11291
+ /** Current period comparison selection */
11292
+ comparisonPeriod?: ChartCardComparisonPeriod;
11293
+ /** Chart configuration with colors and labels */
11294
+ config: ChartConfig;
11295
+ /** Chart data array */
11296
+ data: ChartCardDataPoint[];
11297
+ /** Custom message rendered when `data` is empty (DES-1254 item 3) */
11298
+ emptyMessage?: ReactNode;
11299
+ /** Hide chart and show only the value */
11300
+ isThumbnail?: boolean;
11301
+ /** Loading state */
11302
+ loading?: boolean;
11303
+ /** Selected date range (for display purposes) */
11304
+ selectedDates?: DateRange$1;
11305
+ /** Show tooltip on chart hover */
11306
+ showTooltip?: boolean;
11307
+ /** Card title (required) */
11308
+ title: string;
11309
+ /** Value formatter function (e.g., currency, percentage) */
11310
+ valueFormatter?: ChartCardValueFormatter;
11311
+ /** Custom X-axis key in data (default: "formattedDate") */
11312
+ xAxisKey?: string;
11313
+ }
11314
+
11315
+ /**
11316
+ * ChartCard - Dashboard widget with integrated LineChart
11317
+ *
11318
+ * Displays a KPI value with trend chart and optional comparison period.
11319
+ * Matches the Tremor DashboardChartCard layout with evolution badge.
11320
+ *
11321
+ * @example
11322
+ * ```tsx
11323
+ * const data = [
11324
+ * { formattedDate: "01/01", value: 1000, previousValue: 900 },
11325
+ * { formattedDate: "02/01", value: 1200, previousValue: 1100 },
11326
+ * ]
11327
+ *
11328
+ * const config = {
11329
+ * value: { label: "Current", color: "hsl(var(--chart-1))" },
11330
+ * previousValue: { label: "Previous", color: "hsl(var(--chart-2))" },
11331
+ * }
11332
+ *
11333
+ * <ChartCard
11334
+ * title="Revenue"
11335
+ * data={data}
11336
+ * config={config}
11337
+ * valueFormatter={(v) => `$${v.toLocaleString()}`}
11338
+ * comparisonPeriod="previous-year"
11339
+ * />
11340
+ * ```
11341
+ */
11342
+ declare function ChartCard({ title, data, config, valueFormatter, comparisonPeriod, isThumbnail, loading, badge, chartHeight, showTooltip, xAxisKey, emptyMessage, variant, className, ...props }: ChartCardProps): react_jsx_runtime.JSX.Element;
11343
+ declare namespace ChartCard {
11344
+ var displayName: string;
11345
+ }
11346
+
10975
11347
  /**
10976
11348
  * Curve type for the line series
10977
11349
  */
@@ -13100,16 +13472,28 @@ interface KPICardProps extends HTMLAttributes<HTMLDivElement> {
13100
13472
  delta?: number;
13101
13473
  /** Texto do delta */
13102
13474
  deltaLabel?: string;
13475
+ /** Dropdown trigger icon (Figma composition flag — DES-1278 item 1) */
13476
+ dropdownIcon?: ReactNode;
13477
+ /** Featured icon — ícone com destaque visual em badge circular */
13478
+ featuredIcon?: ReactNode;
13479
+ /** Help/info tooltip ou texto secundário (Figma composition flag — DES-1278) */
13480
+ helpText?: ReactNode;
13103
13481
  /** Ícone ilustrativo */
13104
13482
  icon?: ReactNode;
13105
13483
  /** Estado de loading */
13106
13484
  loading?: boolean;
13107
13485
  /** Valor anterior para cálculo de delta */
13108
13486
  previousValue?: number;
13487
+ /** Progress bar inferior 0-100 ou ReactNode custom (Figma composition flag — DES-1278) */
13488
+ progressBar?: number | ReactNode;
13489
+ /** Mostra Delta como Badge pill colored (Figma literal) vs plain inline text. @default true */
13490
+ showBadge?: boolean;
13109
13491
  /** Tamanho do card */
13110
13492
  size?: KPICardSize;
13111
13493
  /** Dados para mini gráfico (não implementado ainda) */
13112
13494
  sparkline?: number[];
13495
+ /** Swap button (toggle entre comparison periods — Figma composition flag) */
13496
+ swap?: ReactNode;
13113
13497
  /** Label do KPI */
13114
13498
  title: string;
13115
13499
  /** Direção da tendência (auto-detectada se não fornecida) */
@@ -13119,6 +13503,13 @@ interface KPICardProps extends HTMLAttributes<HTMLDivElement> {
13119
13503
  /** Estilo visual */
13120
13504
  variant?: KPICardVariant;
13121
13505
  }
13506
+ /** KPICardGroup — Multiple KPIs composition wrapper */
13507
+ interface KPICardGroupProps extends HTMLAttributes<HTMLDivElement> {
13508
+ /** Espaço entre cards */
13509
+ gap?: "lg" | "md" | "sm";
13510
+ /** Orientação do layout */
13511
+ orientation?: "horizontal" | "vertical";
13512
+ }
13122
13513
 
13123
13514
  /**
13124
13515
  * KPICard - Key Performance Indicator Card
@@ -13137,7 +13528,22 @@ interface KPICardProps extends HTMLAttributes<HTMLDivElement> {
13137
13528
  * />
13138
13529
  * ```
13139
13530
  */
13140
- declare function KPICard({ title, value, previousValue: _previousValue, delta, deltaLabel, trend, sparkline, icon, action, variant, size, loading, className, ...props }: KPICardProps): react_jsx_runtime.JSX.Element;
13531
+ declare function KPICard({ title, value, previousValue: _previousValue, delta, deltaLabel, trend, sparkline, icon, featuredIcon, dropdownIcon, helpText, progressBar, swap, showBadge, action, variant, size, loading, className, ...props }: KPICardProps): react_jsx_runtime.JSX.Element;
13532
+ /**
13533
+ * KPICardGroup — Multiple KPIs composition (Figma Type=Multiple KPIs)
13534
+ *
13535
+ * Wrapper que diagramra múltiplos `KPICard` em layout horizontal ou vertical.
13536
+ *
13537
+ * @example
13538
+ * ```tsx
13539
+ * <KPICardGroup orientation="horizontal" gap="md">
13540
+ * <KPICard title="Revenue" value="$45k" delta={12} />
13541
+ * <KPICard title="Orders" value={1240} delta={-3} />
13542
+ * <KPICard title="Users" value={892} delta={8} />
13543
+ * </KPICardGroup>
13544
+ * ```
13545
+ */
13546
+ declare function KPICardGroup({ children, orientation, gap, className, ...props }: KPICardGroupProps): react_jsx_runtime.JSX.Element;
13141
13547
 
13142
13548
  /**
13143
13549
  * Represents an individual image in the lightbox
@@ -13697,6 +14103,84 @@ declare namespace PieChart {
13697
14103
  var displayName: string;
13698
14104
  }
13699
14105
 
14106
+ interface RadarChartProps extends Omit<ComponentPropsWithoutRef<"div">, "data"> {
14107
+ /**
14108
+ * Key used for the polar angle axis labels. Defaults to "subject".
14109
+ */
14110
+ angleKey?: string;
14111
+ /**
14112
+ * Chart config mapping dataKey → label/color. Same shape as other charts.
14113
+ */
14114
+ config: ChartConfig;
14115
+ /**
14116
+ * Array of data rows. Each row should have a `subject` (axis label) + numeric values for each series.
14117
+ */
14118
+ data: Record<string, unknown>[];
14119
+ /**
14120
+ * Data keys for series to render. Each becomes a Radar polygon.
14121
+ */
14122
+ dataKeys: string[];
14123
+ /**
14124
+ * Fill opacity of the radar polygons.
14125
+ * @default 0.3
14126
+ */
14127
+ fillOpacity?: number;
14128
+ /**
14129
+ * Show value points on each vertex.
14130
+ * @default true
14131
+ */
14132
+ showDots?: boolean;
14133
+ /**
14134
+ * Show gridlines.
14135
+ * @default true
14136
+ */
14137
+ showGrid?: boolean;
14138
+ }
14139
+
14140
+ declare function RadarChart({ className, config, data, dataKeys, angleKey, showGrid, showDots, fillOpacity, ...props }: RadarChartProps): react_jsx_runtime.JSX.Element;
14141
+
14142
+ interface RadialChartProps extends Omit<ComponentPropsWithoutRef<"div">, "data"> {
14143
+ /**
14144
+ * Chart config mapping dataKey → label/color.
14145
+ */
14146
+ config: ChartConfig;
14147
+ /**
14148
+ * Array of data rows. Each row should be a category with a numeric `value`.
14149
+ */
14150
+ data: Record<string, unknown>[];
14151
+ /**
14152
+ * Data key for the value rendered. Defaults to "value".
14153
+ */
14154
+ dataKey?: string;
14155
+ /**
14156
+ * End angle (degrees).
14157
+ * @default -270
14158
+ */
14159
+ endAngle?: number;
14160
+ /**
14161
+ * Inner radius (% or px). Higher values produce thinner rings.
14162
+ * @default "30%"
14163
+ */
14164
+ innerRadius?: number | string;
14165
+ /**
14166
+ * Outer radius (% or px).
14167
+ * @default "100%"
14168
+ */
14169
+ outerRadius?: number | string;
14170
+ /**
14171
+ * Show background ring.
14172
+ * @default true
14173
+ */
14174
+ showBackground?: boolean;
14175
+ /**
14176
+ * Start angle (degrees).
14177
+ * @default 90
14178
+ */
14179
+ startAngle?: number;
14180
+ }
14181
+
14182
+ declare function RadialChart({ className, config, data, dataKey, innerRadius, outerRadius, startAngle, endAngle, showBackground, ...props }: RadialChartProps): react_jsx_runtime.JSX.Element;
14183
+
13700
14184
  /**
13701
14185
  * Shape types for scatter points
13702
14186
  */
@@ -14490,7 +14974,7 @@ declare function VirtualTable<TData>({ data, columns, rowHeight, overscan, estim
14490
14974
  * Alert variant styles using CVA
14491
14975
  */
14492
14976
  declare const alertVariants: (props?: ({
14493
- variant?: "default" | "destructive" | null | undefined;
14977
+ variant?: "default" | "destructive" | "success" | "warning" | "info" | null | undefined;
14494
14978
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14495
14979
 
14496
14980
  /**
@@ -15109,7 +15593,7 @@ declare function FocusTrap({ active, allowOutsideClick, children, className, cli
15109
15593
  * Inline feedback messages for forms and fields
15110
15594
  */
15111
15595
  declare const messageVariants: (props?: ({
15112
- variant?: "success" | "warning" | "error" | "info" | null | undefined;
15596
+ variant?: "success" | "warning" | "info" | "error" | null | undefined;
15113
15597
  size?: "sm" | "md" | null | undefined;
15114
15598
  } & class_variance_authority_types.ClassProp) | undefined) => string;
15115
15599
 
@@ -15180,6 +15664,12 @@ interface ModalProps {
15180
15664
  * Additional CSS classes for the modal content
15181
15665
  */
15182
15666
  className?: string;
15667
+ /**
15668
+ * Fallback accessible label for the close button when no title is provided (DES-1286 item 7 — i18n).
15669
+ * Useful for screen readers in non-English contexts.
15670
+ * @default "Close"
15671
+ */
15672
+ closeLabel?: string;
15183
15673
  /**
15184
15674
  * Whether to close the modal when pressing Escape
15185
15675
  * @default true
@@ -15199,6 +15689,16 @@ interface ModalProps {
15199
15689
  * Optional description displayed below the title
15200
15690
  */
15201
15691
  description?: string;
15692
+ /**
15693
+ * Accessible fallback description when `description` is omitted (rendered sr-only). DES-1286 item 7 — i18n.
15694
+ * @default "Use this dialog to complete the current action."
15695
+ */
15696
+ fallbackDescription?: string;
15697
+ /**
15698
+ * Accessible fallback title when `title` is omitted (rendered sr-only). DES-1286 item 7 — i18n.
15699
+ * @default "Modal dialog"
15700
+ */
15701
+ fallbackTitle?: string;
15202
15702
  /**
15203
15703
  * Footer content (typically action buttons)
15204
15704
  */
@@ -15264,14 +15764,14 @@ interface ModalProps {
15264
15764
  * </Modal>
15265
15765
  * ```
15266
15766
  */
15267
- declare function Modal({ children, className, closeOnEscape, closeOnOverlayClick, defaultOpen, description, footer, onOpenChange, open, overlayClassName, showCloseButton, size, title, trigger, }: ModalProps): react_jsx_runtime.JSX.Element;
15767
+ declare function Modal({ children, className, closeLabel, closeOnEscape, closeOnOverlayClick, defaultOpen, description, fallbackDescription, fallbackTitle, footer, onOpenChange, open, overlayClassName, showCloseButton, size, title, trigger, }: ModalProps): react_jsx_runtime.JSX.Element;
15268
15768
 
15269
15769
  /**
15270
15770
  * Notification variant styles using CVA
15271
15771
  * Individual notification items for lists, dropdowns, or feeds
15272
15772
  */
15273
15773
  declare const notificationVariants: (props?: ({
15274
- variant?: "default" | "success" | "warning" | "error" | "info" | null | undefined;
15774
+ variant?: "default" | "success" | "warning" | "info" | "error" | null | undefined;
15275
15775
  read?: boolean | null | undefined;
15276
15776
  interactive?: boolean | null | undefined;
15277
15777
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -15279,7 +15779,7 @@ declare const notificationVariants: (props?: ({
15279
15779
  * Unread indicator dot styles
15280
15780
  */
15281
15781
  declare const unreadDotVariants: (props?: ({
15282
- variant?: "default" | "success" | "warning" | "error" | "info" | null | undefined;
15782
+ variant?: "default" | "success" | "warning" | "info" | "error" | null | undefined;
15283
15783
  } & class_variance_authority_types.ClassProp) | undefined) => string;
15284
15784
 
15285
15785
  /**
@@ -15679,6 +16179,40 @@ interface ToastPromiseOptions<T> {
15679
16179
 
15680
16180
  declare const Toaster: ({ theme, ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
15681
16181
 
16182
+ interface UpdatesWidgetItem {
16183
+ icon: ReactNode;
16184
+ id: string;
16185
+ /**
16186
+ * Main item content (typically short text).
16187
+ */
16188
+ text: ReactNode;
16189
+ tone: "destructive" | "info" | "success" | "warning";
16190
+ /**
16191
+ * Optional timestamp string ("agora", "há 2h", etc).
16192
+ */
16193
+ when?: string;
16194
+ }
16195
+ interface UpdatesWidgetProps extends Omit<ComponentProps<"div">, "title"> {
16196
+ /**
16197
+ * Custom empty-state content. Defaults to "Sem updates · Você está em dia".
16198
+ */
16199
+ emptyState?: ReactNode;
16200
+ /**
16201
+ * Items shown inside the widget. Empty array renders the empty state.
16202
+ */
16203
+ items: UpdatesWidgetItem[];
16204
+ /**
16205
+ * Optional menu trigger (3-dot more icon). Pass `null` to hide.
16206
+ */
16207
+ menu?: ReactNode;
16208
+ /**
16209
+ * Optional title shown in the header.
16210
+ */
16211
+ title?: ReactNode;
16212
+ }
16213
+
16214
+ declare function UpdatesWidget({ className, items, emptyState, menu, title, ...props }: UpdatesWidgetProps): react_jsx_runtime.JSX.Element;
16215
+
15682
16216
  /**
15683
16217
  * AssetManager root container variants
15684
16218
  */
@@ -16712,21 +17246,21 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryS
16712
17246
  * ErrorBoundary fallback container variants
16713
17247
  */
16714
17248
  declare const errorBoundaryFallbackVariants: (props?: ({
16715
- variant?: "minimal" | "action" | "detailed" | "fullscreen" | null | undefined;
16716
- severity?: "warning" | "error" | "info" | null | undefined;
17249
+ variant?: "action" | "minimal" | "detailed" | "fullscreen" | null | undefined;
17250
+ severity?: "warning" | "info" | "error" | null | undefined;
16717
17251
  } & class_variance_authority_types.ClassProp) | undefined) => string;
16718
17252
  /**
16719
17253
  * ErrorBoundary fallback card variants
16720
17254
  */
16721
17255
  declare const errorBoundaryCardVariants: (props?: ({
16722
- variant?: "minimal" | "action" | "detailed" | "fullscreen" | null | undefined;
17256
+ variant?: "action" | "minimal" | "detailed" | "fullscreen" | null | undefined;
16723
17257
  } & class_variance_authority_types.ClassProp) | undefined) => string;
16724
17258
  /**
16725
17259
  * ErrorBoundary icon variants
16726
17260
  */
16727
17261
  declare const errorBoundaryIconVariants: (props?: ({
16728
17262
  size?: "sm" | "lg" | "md" | null | undefined;
16729
- severity?: "warning" | "error" | "info" | null | undefined;
17263
+ severity?: "warning" | "info" | "error" | null | undefined;
16730
17264
  } & class_variance_authority_types.ClassProp) | undefined) => string;
16731
17265
  /**
16732
17266
  * ErrorBoundary title variants
@@ -22196,4 +22730,4 @@ declare function getColorClassName(color: ChartColor, type: ColorUtility): strin
22196
22730
  */
22197
22731
  declare function getYAxisDomain(autoMinValue: boolean, minValue?: number, maxValue?: number): ["auto" | number, "auto" | number];
22198
22732
 
22199
- export { ALL_STATUSES, Accordion, AccordionContent, type AccordionContentProps, type AccordionEventPayload, AccordionItem, type AccordionItemProps, type AccordionItemVariantProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionTriggerVariantProps, type AccordionVariant, type AccordionVariantProps, type ActiveDatesMatcher, type ActiveItem, AdvancedSearchInput, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, type ApprovalAction, type ApprovalCondition, ApprovalFlow, type ApprovalFlowActionsVariantProps, type Approver$1 as ApprovalFlowApprover, ApprovalFlowConnector, type ApprovalFlowConnectorVariantProps, ApprovalFlowMarker, type ApprovalFlowMarkerVariantProps, type ApprovalFlowProps, ApprovalFlowStep, type ApprovalFlowStepCardVariantProps, type ApprovalFlowStepProps, type ApprovalFlowStepVariantProps, type ApprovalFlowVariantProps, type ApprovalHistory, ApprovalStatus, type ApprovalStatusProps, type ApprovalStatusType, type ApprovalStep, type ApprovalStepStatus, type ApprovePayload, type Approver, AreaChart, type AreaChartCurveType, type AreaChartEventProps, type AreaChartFill, type AreaChartIntervalType, type AreaChartLegendPosition, type AreaChartProps, type AreaChartSeriesConfig, type AreaChartTooltipCallbackProps, type AreaChartTooltipIndicator, type AreaChartVariant, AspectRatio, type AspectRatioEventPayload, type AspectRatioPreset, type AspectRatioProps, type Asset, type AssetFilter, AssetManager, type AssetManagerContextValue, type AssetManagerDataSlot, AssetManagerEmpty, type AssetManagerEmptyProps, AssetManagerGrid, type AssetManagerGridProps, type AssetManagerGridVariantProps, AssetManagerItem, type AssetManagerItemProps, type AssetManagerItemVariantProps, AssetManagerList, type AssetManagerListProps, type AssetManagerProps, AssetManagerSidebar, type AssetManagerSidebarProps, type AssetManagerSidebarVariantProps, AssetManagerToolbar, type AssetManagerToolbarProps, type AssetManagerToolbarVariantProps, AssetManagerUploader, type AssetManagerUploaderProps, type AssetManagerUploaderVariantProps, type AssetManagerVariantProps, type AssetSort, type AssetSortDirection, type AssetSortField, type AssetView, Autocomplete, type AutocompleteOption, type AutocompleteProps, type AutocompleteSize, type AutocompleteVariant, Avatar, AvatarAddButton, type AvatarAddButtonProps, AvatarBadge, type AvatarBadgeProps, type AvatarColorScheme, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, AvatarLabelGroup, type AvatarLabelGroupProps, AvatarLabelGroupSkeleton, type AvatarLabelGroupSkeletonProps, type AvatarProps, type AvatarShape, type AvatarSize, AvatarSkeleton, type AvatarSkeletonProps, AvatarStatus, type AvatarStatusProps, Badge, type BadgeAvatarProps, type BadgeColor, type BadgeLegacyVariant, type BadgeProps, type BadgeSize, type BadgeType, Banner, type BannerProps$1 as BannerComponentProps, type BannerPosition, type BannerProps, type BannerVariant, BarChart, type BarChartEventProps, type BarChartIntervalType, type BarChartLayout, type BarChartLegendPosition, type BarChartProps, type BarChartSeriesConfig, type BarChartTooltipCallbackProps, type BarChartTooltipIndicator, type BarChartVariant, BarList, type BarListDataItem, type BarListProps, type BarListSortOrder, type BrandingConfig, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, type BreadcrumbEllipsisVariantProps, BreadcrumbItem, type BreadcrumbItemProps, type BreadcrumbItemVariantProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbLinkVariantProps, BreadcrumbList, type BreadcrumbListProps, type BreadcrumbListVariantProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbPageVariantProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSeparatorVariantProps, type BuilderDataSource, type BuilderLayoutConfig, type BuilderMode, type BuilderPosition, type BuilderSavePayload, type BuilderState, type BuilderWidget, type BuilderWidgetAddPayload, type BuilderWidgetDefinition, type BuilderWidgetLayout, type BuilderWidgetProps, type BuilderWidgetRemovePayload, type BuilderWidgetUpdatePayload, Button, type ButtonCVAVariant, type ButtonEventPayload, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, ButtonGroupItem, type ButtonGroupItemIconMode, type ButtonGroupItemProps, type ButtonGroupItemState, type ButtonGroupOrientation, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarButtonVariant, type CalendarCaptionLayout, CalendarDayButton, type CalendarDayButtonProps, type CalendarEvent, type CalendarMode, type CalendarPassthroughProps, type CalendarProps, type CalendarRef, Callout, type CalloutProps$1 as CalloutComponentProps, type CalloutProps, type CalloutSize, type CalloutVariant, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, type CardType, type CardTypeConfig, type CardVariant, type CardVariantProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, type CategoryBarDataItem, type CategoryBarProps, type CategoryBarSize, type CellEditParams, ChangeIndicator, type ChangeSet, type ChartColor, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartLegendContentProps, type ChartLegendProps, ChartStyle, ChartTooltip, ChartTooltipContent, type ChartTooltipContentProps, Checkbox, CheckboxGroup, type CheckboxGroupDescriptionVariantProps, type CheckboxGroupHeaderVariantProps, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupItemWrapperVariantProps, type CheckboxGroupLabelVariantProps, type CheckboxGroupOption, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxGroupVariantProps, type CheckboxProps, type CheckboxSize, type CheckboxState, type CheckboxVariantProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleContentVariantProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type CollapsibleTriggerVariantProps, type CollapsibleVariantProps, ColorPicker, type ColorPickerPreviewVariantProps, type ColorPickerProps, type ColorPickerSize, type ColorPickerSwatchVariantProps, type ColorPickerTriggerVariantProps, type ColorPickerVariant, type ColorUtility, type ColumnDefinition, type ColumnDeletePayload, type ColumnReorderPayload, type ColumnUpdatePayload, type CombinatorToggleVariantProps, ComboChart, type ComboChartBarSeries, type ComboChartBarSeriesConfig, type ComboChartBarVariant, type ComboChartCurveType, type ComboChartEventProps, type ComboChartIntervalType, type ComboChartLegendPosition, type ComboChartLineSeries, type ComboChartLineSeriesConfig, type ComboChartProps, type ComboChartSeriesType, type ComboChartTooltipCallbackProps, type ComboChartTooltipIndicator, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxSize, type ComboboxVariant, Command, type CommandCombinedVariantProps, type CommandDataSlot, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandEmptyVariantProps, CommandGroup, type CommandGroupData, type CommandGroupProps, type CommandGroupVariantProps, CommandInput, type CommandInputIconVariantProps, type CommandInputPayload, type CommandInputProps, type CommandInputVariantProps, type CommandInputWrapperVariantProps, CommandItem, type CommandItemCombinedVariantProps, type CommandItemData, type CommandItemProps, type CommandItemVariant, type CommandItemVariantProps, CommandList, type CommandListProps, type CommandListVariantProps, type CommandProps, type CommandSelectPayload, CommandSeparator, type CommandSeparatorProps, type CommandSeparatorVariantProps, CommandShortcut, type CommandShortcutProps, type CommandShortcutVariantProps, type CommandSize, type CommandVariantProps, type Comment, type CommentAttachment, type CommentDeletePayload, type CommentEditPayload, CommentInput, type CommentInputProps, CommentItem, type CommentItemProps, type CommentMentionPayload, type CommentReactPayload, type CommentReaction, CommentReactions, type CommentSubmitPayload, CommentSystem, type CommentSystemProps, type CommentUser, type CompletePayload, type ConfigChangePayload, type ConfigField, type ConfigFieldType, type ConfigSchema, type ConfigurationFormProps, ConfirmButton, type ConfirmButtonProps, type ConfirmButtonSize, type ConfirmButtonVariant, ConfirmModal, type ConfirmModalProps, type ConfirmModalSize, type ConfirmModalVariant, Container, type ContainerElement, type ContainerMaxWidth, type ContainerPadding, type ContainerProps, type ContainerVariantProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuGroup, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, type ContextMenuItemVariant, type ContextMenuItemVariantProps, ContextMenuLabel, type ContextMenuLabelProps, type ContextMenuLabelVariantProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, type ContextMenuSubProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, type ContextMenuSubTriggerVariantProps, ContextMenuTrigger, type ContextMenuTriggerProps, type Country, DEFAULT_STATUS_CONFIGS, Dashboard, DashboardBuilder, DashboardBuilderCanvas, type DashboardBuilderCanvasProps, type DashboardBuilderCanvasVariantProps, type DashboardBuilderDropZoneVariantProps, type DashboardBuilderEmptyStateVariantProps, DashboardBuilderPropertiesPanel, type DashboardBuilderPropertiesPanelProps, type DashboardBuilderPropertiesPanelVariantProps, type DashboardBuilderProps, type DashboardBuilderResizeHandleVariantProps, DashboardBuilderToolbar, type DashboardBuilderToolbarProps, type DashboardBuilderToolbarVariantProps, type DashboardBuilderVariantProps, type DashboardBuilderWidgetCardVariantProps, DashboardBuilderWidgetComponent, type DashboardBuilderWidgetComponentProps, DashboardBuilderWidgetLibrary, type DashboardBuilderWidgetLibraryProps, type DashboardBuilderWidgetLibraryVariantProps, type DashboardBuilderWidgetVariantProps, DashboardCard, DashboardCardContent, type DashboardCardContentProps, DashboardCardFooter, type DashboardCardFooterProps, DashboardCardHeader, type DashboardCardHeaderProps, type DashboardCardProps, DashboardCardTitle, type DashboardCardTitleProps, DashboardCardValue, type DashboardCardValueProps, DashboardEmptyState, DashboardErrorState, DashboardHeader, type DashboardHeaderProps, DashboardLoadingState, type DashboardProps, type DashboardState, type DashboardVariantProps, DashboardWidget, type DashboardWidgetAddPayload, type DashboardWidgetClickPayload, type DashboardWidgetConfig, type DashboardWidgetData, type DashboardWidgetProps, type DashboardWidgetRemovePayload, type DashboardWidgetType, type DashboardWidgetVariantProps, type DataSource, DataTable, DataTableBooleanCell, type DataTableBooleanCellProps, type DataTableColumnMeta, DataTableCurrencyCell, type DataTableCurrencyCellProps, DataTableDateCell, type DataTableDateCellProps, type DataTableFilterVariant, type DataTablePaginationInfo, DataTableProgressCell, type DataTableProgressCellProps, type DataTableProps, DataTableRatingCell, type DataTableRatingCellProps, DatePicker, type DatePickerProps, type DatePickerSize, type DatePickerTriggerVariantProps, type DatePickerVariant, type DateRange, DateRangeInput, type DateRangeInputFieldVariantProps, type DateRangeInputProps, DateRangePicker, type DateRangePickerProps, type DateRangePickerTriggerVariantProps, type DateRangePreset, type DateRangePresetVariantProps, DateRangePresets, type DateRangePresetsProps, DefaultFallback, type DelegatePayload, DeltaBar, type DeltaBarProps, type DeltaBarSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, type DialogPortalProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, type DiffLine, Divider, type DividerLabelPosition, type DividerLineType, type DividerOrientation, type DividerProps, type DividerType, type DividerVisualStyle, DndContext, type DndContextProps, type DragAndDropDataSlot, DragHandle, type DragHandleProps, type DragHandleVariantProps, DragOverlay, type DragOverlayProps, type DragOverlayVariantProps, Draggable, type DraggableProps, type DraggableRenderProps, type DraggableVariantProps, Drawer, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, type DrawerContentVariantProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerPortalProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuItemVariantProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuLabelVariantProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, type DropdownMenuSubTriggerVariantProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Droppable, type DroppableProps, type DroppableRenderProps, type DroppableVariantProps, type DropzoneRenderFn, type DropzoneState, type EditableColumnMeta, EmailInput, type EmailInputProps, type EmailInputValidationState, type EmailValidationIconVariantProps, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, ErrorBoundary, type ErrorBoundaryProps, type ErrorBoundaryState, type ErrorDefault, ErrorMessage, type ErrorMessageIconVariantProps, type ErrorMessageProps, type ErrorMessageSize, type ErrorMessageVariant, type ErrorMessageVariantProps, type ErrorObject, ErrorPage, type ErrorPageProps, type ErrorType, type EscalatePayload, EventCalendar, EventCalendarAgenda, type EventCalendarAgendaProps, EventCalendarDay, type EventCalendarDayProps, EventCalendarEvent, type EventCalendarEventProps, EventCalendarHeader, type EventCalendarHeaderProps, EventCalendarMonth, type EventCalendarMonthProps, type EventCalendarProps, type EventCalendarView, EventCalendarWeek, type EventCalendarWeekProps, type ExportFormat$1 as ExportFormat, type ExportOptions, type ExportPayload, type FallbackProps, type FallbackRender, Feed, type FeedProps$1 as FeedComponentProps, FeedItemComponent as FeedItem, type FeedItemProps$1 as FeedItemComponentProps, type FeedItemData, type FeedItem as FeedItemDataType, type FeedItemProps, type FeedProps, type FeedSize, FeedSkeleton, type FeedVariant, Field, FieldContent, type FieldContentProps, type FieldDefinition, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorItem, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldLegendVariant, type FieldLegendVariantProps, type FieldOption, type FieldOrientation, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps, type FieldType, type FieldVariantProps, type FileChange, FileDropzone, type FileDropzoneProps, type FileInfo, FilePreview, type FilePreviewActionButtonVariantProps, type FilePreviewActionsVariantProps, type FilePreviewContentVariantProps, type FilePreviewDataSlot, type FilePreviewFallbackVariantProps, type FilePreviewInfoVariantProps, type FilePreviewProps, type FilePreviewState, type FilePreviewVariantProps, type FileTypeCategory, FileUpload, FileUploadAvatar, type FileUploadAvatarVariantProps, type FileUploadChangePayload, type FileUploadCompletePayload, type FileUploadContextValue, type FileUploadDataSlot, FileUploadDropzone, type FileUploadDropzoneProps, type FileUploadDropzoneVariantProps, type FileUploadErrorPayload, FileUploadInline, FileUploadList, type FileUploadListProps, FileUploadPreview, type FileUploadPreviewProps, type FileUploadPreviewVariantProps, FileUploadProgressBar, type FileUploadProgressPayload, type FileUploadProgressProps, type FileUploadProgressVariantProps, type FileUploadProps, type FileUploadRemovePayload, FileUploadTrigger, type FileUploadTriggerProps, type FileUploadTriggerVariantProps, type FileUploadVariantProps, type FileValidationError, FilterBuilder, type FilterBuilderEventPayload, type FilterBuilderProps, type FilterBuilderVariantProps, FilterGroupComponent as FilterGroup, type FilterGroupProps, type FilterGroup as FilterGroupType, type FilterGroupVariantProps, FilterPreview, type FilterPreviewProps, FilterRuleComponent as FilterRule, type FilterRuleEventPayload, type FilterRuleProps, type FilterRule as FilterRuleType, type FilterRuleVariantProps, FilterToolbar, type FilterToolbarProps, Flex, type FlexAlign, type FlexDirection, type FlexElement, type FlexGap, type FlexJustify, type FlexProps, type FlexVariantProps, type FlexWrap, FloatLabel, type FloatLabelProps, type FloatLabelVariant, FocusTrap, type FocusTrapProps, type FocusedCell, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, type FormDescriptionVariantProps, FormField, FormFieldContext, type FormFieldContextValue, type FormFieldProps, FormItem, FormItemContext, type FormItemContextValue, type FormItemProps, type FormItemVariantProps, FormLabel, type FormLabelProps, type FormLabelVariantProps, FormMessage, type FormMessageProps, type FormMessageVariantProps, type FormProps, FormValidation, type FormValidationProps, type FormValidationState, type FormValidationVariantProps, FunnelChart, type FunnelChartDataItem, type FunnelChartLabelPosition, type FunnelChartLegendPosition, type FunnelChartProps, type FunnelChartTooltipCallbackProps, type FunnelChartTooltipIndicator, GaugeChart, type GaugeChartProps, type GaugeSize, type GaugeVariant, type GaugeZone, type GeneratePayload, GradientSpinner, type GradientSpinnerVariants, Grid, type GridAlign, type GridCols, type GridElement, type GridFlow, type GridGap, type GridProps, type GridRows, type GridVariantProps, Header, HeaderActions, type HeaderActionsProps, HeaderBrand, type HeaderBrandProps, HeaderNav, type HeaderNavProps, type HeaderProps, Heading, type HeadingAlign, type HeadingColor, type HeadingGradient, type HeadingLevel, type HeadingProps, type HeadingSize, type HeadingWeight, Heatmap, HeatmapCell, type HeatmapCellEventPayload, type HeatmapCellProps, type HeatmapData, HeatmapLegend, type HeatmapLegendPosition, type HeatmapProps, type HeatmapSelectedCell, HelpText, type HelpTextIconVariantProps, type HelpTextProps, type HelpTextSize, type HelpTextVariant, type HelpTextVariantProps, HoverCard, HoverCardContent, HoverCardTrigger, Icon, type IconProps, type IconSize, type IconVariant, IftaLabel, type IftaLabelProps, Image, type ImageAspectRatio, ImageGallery, type ImageGalleryGap, ImageGalleryItem, type ImageGalleryItemProps, type ImageGalleryLayout, type ImageGalleryProps, type ImageItem, type ImageObjectFit, type ImageProps, type ImageSize, type ImageVariant, type InputEventPayload, InputGroup, InputGroupAddon, type InputGroupAddonAlign, type InputGroupAddonProps, type InputGroupAddonVariantProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSize, type InputGroupButtonVariantProps, InputGroupInput, type InputGroupInputProps, type InputGroupInputVariantProps, type InputGroupProps, type InputGroupSize, InputGroupText, type InputGroupTextProps, InputGroupTextarea, type InputGroupTextareaProps, type InputGroupTextareaVariantProps, type InputGroupVariantProps, type InputIconVariantProps, InputOTP, type InputOTPContainerVariantProps, type InputOTPDigits, type InputOTPExtraProps, InputOTPField, type InputOTPFieldDescriptionVariantProps, type InputOTPFieldErrorVariantProps, type InputOTPFieldLabelVariantProps, type InputOTPFieldProps, type InputOTPFieldVariantProps, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputOTPSlotVariantProps, type InputSize, type InputVariant, type InputVariantProps, Item, ItemActions, type ItemAddPayload, type ItemClickPayload, ItemContent, type ItemDeletePayload, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMovePayload, ItemSeparator, ItemTitle, type ItemUpdatePayload, KPICard, type KPICardProps, type KPICardSize, type KPICardTrend, type KPICardVariant, KanbanBoard, type KanbanBoardProps, KanbanCard, type KanbanCardProps, type KanbanColumn, type KanbanColumnProps, type KanbanFilterConfig, type KanbanItem, type KanbanLabel, type KanbanSubtasks, type KanbanUser, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, type KbdSize, type KbdVariant, type KbdVariants, type KeyboardShortcuts, Label, type LabelProps, type LayoutChangePayload, type LayoutItem, type LegendPayloadItem, Lightbox, type LightboxImage, type LightboxProps, LineChart, type LineChartCurveType, type LineChartProps, type LineChartSeriesConfig, type LineChartTooltipIndicator, type LineChartVariant, Link, type LinkEventPayload, type LinkProps, type LinkSize, type LinkUnderline, type LinkVariant, List, ListItem, ListItemActions, ListItemContent, type ListItemProps, ListItem as ListItemType, type ListProps, MarkdownEditor, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownEditorRef, MarkdownHelp, type MarkdownHelpProps, MarkdownPreview, type MarkdownPreviewProps, MarkdownToolbar, type MarkdownToolbarProps, MarkerBar, type MarkerBarProps, type MarkerBarSize, Menu, MenuGroup, type MenuGroupProps, MenuItem, type MenuItemProps, MenuLabel, type MenuLabelProps, type MenuProps, MenuSeparator, type MenuSeparatorProps, MenuShortcut, type MenuShortcutProps, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarGroup, type MenubarGroupProps, MenubarItem, type MenubarItemProps, type MenubarItemVariantProps, MenubarLabel, type MenubarLabelProps, type MenubarLabelVariantProps, MenubarMenu, type MenubarMenuProps, MenubarPortal, type MenubarPortalProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, type MenubarShortcutProps, MenubarSub, MenubarSubContent, type MenubarSubContentProps, type MenubarSubProps, MenubarSubTrigger, type MenubarSubTriggerProps, type MenubarSubTriggerVariantProps, MenubarTrigger, type MenubarTriggerProps, Message, type MessageProps, type MessageSize, type MessageVariant, Modal, type ModalProps, type ModalSize, MultiSelect, type MultiSelectOption, type MultiSelectProps, type MultiSelectSize, type MultiSelectVariant, NativeSelect, NativeSelectOptGroup, type NativeSelectOptGroupProps, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, type NativeSelectSize$1 as NativeSelectSize, type NativeSelectVariant, type NativeSelectVariantProps, Navbar, NavbarBrand, type NavbarBrandProps, NavbarContent, type NavbarContentProps, NavbarItem, type NavbarItemProps, NavbarLink, type NavbarLinkProps, NavbarMenu, type NavbarMenuProps, NavbarMenuToggle, type NavbarMenuToggleProps, type NavbarProps, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, type NavigationMenuViewportProps, Notification, NotificationDismissButton, type NotificationItem, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputProps, type NumberStepperButtonVariantProps, type NumberStepperVariantProps, type OperatorInfo, type OperatorType, type OperatorsByType, PROGRESS_CIRCLE_SIZES, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Panel, PanelContent, type PanelContentProps, type PanelContentVariantProps, PanelFooter, type PanelFooterProps, PanelHeader, type PanelHeaderProps, type PanelPosition, type PanelProps, type PanelSize, type PanelVariant, type PanelVariantProps, Paragraph, type ParagraphAlign, type ParagraphColor, type ParagraphLeading, type ParagraphProps, type ParagraphSize, type ParagraphSpacing, type ParagraphWeight, PasswordInput, type PasswordInputProps, type PasswordToggleVariantProps, PaymentInput, type PaymentInputProps, type PaymentInputSize, type PaymentInputVariant, type PaymentInputVariantProps, PhoneInput, type PhoneInputProps, type PhoneInputSize, type PhoneInputVariant, type PhoneInputVariantProps, PieChart, type PieChartActiveShape, type PieChartCenterLabel, type PieChartDataItem, type PieChartLabelConfig, type PieChartProps, type PieChartTooltipCallbackProps, type PieChartTooltipIndicator, type PieChartVariant, Popover, type PopoverAlign, PopoverAnchor, type PopoverAnchorProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverPortalProps, type PopoverProps, type PopoverSide, PopoverTrigger, type PopoverTriggerProps, Portal, type PortalProps, type PreviewContainerVariantProps, type PreviewPanelProps, ProgressBar, type ProgressBarColor, type ProgressBarLabelPosition, type ProgressBarLabelProps, type ProgressBarProps, type ProgressBarSize, ProgressCircle, type ProgressCircleColor, type ProgressCircleContainerVariants, type ProgressCircleIndicatorVariants, type ProgressCircleProps, type ProgressCircleShape, type ProgressCircleSize, type ProgressCircleTrackVariants, ProgressSteps, type ProgressStepsProps, type ProgressStepsVariantProps, RadioButton, type RadioButtonIndicatorVariantProps, type RadioButtonLabelVariantProps, type RadioButtonProps, type RadioButtonSize, type RadioButtonVariantProps, type RadioButtonWrapperVariantProps, RadioCardGroup, RadioCardGroupItem, type RadioCardGroupItemProps, type RadioCardGroupProps, type RadioCardGroupSize, RadioGroup, type RadioGroupIndicatorVariantProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemVariantProps, type RadioGroupOrientation, type RadioGroupProps, type RadioGroupSize, type RadioGroupVariantProps, type RangeCalendarProps, Rating, type RatingItemProps, type RatingItemVariantProps, type RatingProps, type RatingSize, type RatingVariantProps, type Reaction, type RecurrenceRule, type RefreshPayload, type RejectPayload, type ReportChartConfig, type ReportConfig, type ReportErrorPayload, type ReportExportPayload, ReportGenerator, type ReportGeneratorProps, type ReportGeneratorState, type ReportGeneratorVariantProps, type ReportTemplate, ResizableHandle, type ResizableHandleProps, type ResizableHandleVariant, type ResizableHandleVariantProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelGroupVariantProps, type ResizablePanelProps, type ResizablePanelVariantProps, type ResponsiveColumns, ResponsiveContainer, type ResponsiveContainerBreakpoint, type ResponsiveContainerElement, type ResponsiveContainerMaxWidth, type ResponsiveContainerProps, type ResponsiveContainerVariant, type ResponsiveContainerVariantProps, RichTextBubbleMenuContent as RichTextBubbleMenu, type RichTextBubbleMenuProps, RichTextEditor, type RichTextEditorProps, type RichTextEditorRef, RichTextFloatingMenuContent as RichTextFloatingMenu, type RichTextFloatingMenuProps, RichTextToolbar, type RichTextToolbarProps, ScatterChart, type ScatterChartEventProps, type ScatterChartIntervalType, type ScatterChartLegendPosition, type ScatterChartProps, type ScatterChartSeriesConfig, type ScatterChartShape, type ScatterChartTooltipCallbackProps, type ScatterChartTooltipIndicator, type ScatterChartValueFormatter, type ScheduleConfig, type SchedulePayload, ScrollArea, type ScrollAreaProps, type ScrollAreaVariantProps, type ScrollAreaViewportVariantProps, ScrollBar, type ScrollBarOrientation, type ScrollBarProps, type ScrollBarSize, type ScrollBarThumbVariantProps, type ScrollBarVariantProps, Search, type SearchClearButtonVariantProps, SearchEmpty, type SearchEmptyProps, type SearchFilter, SearchFilters, type SearchFiltersProps, type SearchGroup, SearchHighlight, type SearchHighlightProps, SearchHistory, type SearchHistoryProps, type SearchIconVariantProps, SearchInput, type SearchInputProps$1 as SearchInputProps, SearchLoading, type SearchLoadingProps, type SearchProps, type SearchResult, SearchResultGroup, type SearchResultGroupProps, SearchResultItem, type SearchResultItemProps, SearchResults, type SearchResultsProps, type SearchSize, type SearchState, type SearchVariant, Section, type SectionProps, type SectionSize, type SectionVariant, type SectionVariantProps, Select, SelectContent, type SelectContentProps, type SelectContentVariantProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, type SelectItemVariantProps, SelectLabel, type SelectLabelProps, type SelectLabelVariantProps, type SelectProps, type SelectScrollButtonVariantProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSeparator, type SelectSeparatorProps, type SelectSeparatorVariantProps, type SelectSize, SelectTrigger, type SelectTriggerProps, type SelectTriggerVariantProps, SelectValue, type SelectValueProps, type SelectVariant, Sheet, SheetBody, type SheetBodyProps, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentVariantProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayVariant, type SheetOverlayVariantProps, SheetPortal, type SheetPortalProps, type SheetProps, type SheetSide, type SheetSize, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, SidebarContent, type SidebarContentProps, type SidebarContextProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, SidebarPanelContent, type SidebarPanelContentProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, SidebarRailButton, type SidebarRailButtonProps, SidebarRailContent, type SidebarRailContentProps, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SingleStat, type SingleStatProps, type SingleStatSize, type SingleStatVariant, SkeletonLoader, type SkeletonLoaderAnimation, type SkeletonLoaderProps, type SkeletonLoaderShape, type SkeletonLoaderSize, type SkeletonLoaderVariants, SkipLink, type SkipLinkItem, type SkipLinkProps, SkipLinksList, type SkipLinksListProps, Slider, type SliderColor, type SliderFormatValue, type SliderGetAriaValueText, type SliderLabelType, type SliderLabelVariantProps, type SliderMark, type SliderMarkContainerVariantProps, type SliderMarkLabelVariantProps, type SliderMarkTickVariantProps, type SliderMarkVariantProps, type SliderOrientation, type SliderProps, type SliderRangeVariantProps, type SliderRootVariantProps, type SliderSize, type SliderThumbVariantProps, type SliderTooltipVariantProps, type SliderTrackVariantProps, type SliderValue, SortableContext, type SortableContextProps, SortableItem, type SortableItemProps, type SortableItemRenderProps, type SortableItemState, type SortableItemVariantProps, SortableList, type SortableListDataSlot, SortableListDragHandle, type SortableListDragHandleProps, type SortableListHandleContextValue, SortableListItem, type SortableListItemProps, type SortableListProps, type SortableListReorderEvent, Spacer, type SpacerAxis, type SpacerFlex, type SpacerNumericSize, type SpacerProps, type SpacerSize, type SpacerTokenSize, type SpanColumnMeta, Sparkline, type SparklineData, type SparklineDataPoint, type SparklineFill, type SparklineProps, type SparklineSize, type SparklineVariant, SpeedDial, type SpeedDialAction, type SpeedDialDirection, type SpeedDialProps, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, type SpinnerVariant, type SpinnerVariants, SplitButton, type SplitButtonEventPayload, type SplitButtonMenuItem, type SplitButtonProps, type SplitButtonSize, type SplitButtonVariant, Stack, type StackAlign, type StackDirection, type StackElement, type StackJustify, type StackProps, type StackSpacing, type StackVariantProps, type StatusConfig, StatusIndicator, type StatusIndicatorProps, type StatusIndicatorSize, type StatusIndicatorVariant, type StatusType, type Step, type StepBadgeVariantProps, type StepChangePayload, type StepCircleVariantProps, type StepConnectorHorizontalVariantProps, type StepConnectorVerticalVariantProps, type StepIndicatorProps, type StepIndicatorVariantProps, type StepItem, type StepItemProps, type StepItemVariantProps, Stepper, type StepperConnectorHorizontalVariantProps, type StepperConnectorVerticalVariantProps, type StepperIndicatorVariantProps, type StepperItemVariantProps, type StepperProps, type StepperVariantProps, SuccessMessage, type SuccessMessageProps, type SuccessMessageVariantProps, Switch, type SwitchProps, type SwitchSize, type SwitchState, type SwitchThumbVariantProps, type SwitchVariantProps, TabNavigation, TabNavigationLink, type TabNavigationLinkProps, type TabNavigationProps, type TabNavigationVariant, TabPanel, TabPanelList, type TabPanelListProps, type TabPanelProps, TabPanelRoot, type TabPanelRootProps, TabPanelTrigger, type TabPanelTriggerProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagAvatarProps, TagGroup, type TagGroupContextValue, type TagGroupProps, type TagProps, type TagSize, TagsInput, type TagsInputInputVariantProps, type TagsInputProps, type TagsInputSize, type TagsInputVariant, type TagsInputVariantProps, type TaskAssignee, TaskCard, type TaskCardAssignee, type TaskCardProps, type TaskCardStatus, type TaskGroupBy, type TaskItem, TaskList, type TaskListPriority, type TaskListProps, type TaskListStatus, type TaskPriority, TaskStatus, type TaskStatusColorVariantProps, type TaskStatusConfig, type TaskStatusConfigMap, type TaskStatusIconVariantProps, type TaskStatusLabelVariantProps, type TaskStatusMenuItemVariantProps, type TaskStatusMenuProps, type TaskStatusProps, type TaskStatusTriggerVariantProps, type TaskStatusVariantProps, type TemplateCardVariantProps, type TemplateSelectorProps, Text, type TextElement, TextInput, type TextInputProps, type TextProps, type TextSize, type TextVariant, type TextWeight, Textarea, TextareaField, type TextareaFieldDescriptionVariantProps, type TextareaFieldErrorVariantProps, type TextareaFieldLabelVariantProps, type TextareaFieldProps, type TextareaFieldVariantProps, type TextareaProps, type TextareaResize, type TextareaSize, type TextareaVariant, type TextareaVariantProps, Thumbnail, type ThumbnailAspectRatio, type ThumbnailProps, type ThumbnailRounded, type ThumbnailRoundedVariant, type ThumbnailSize, type ThumbnailSizeVariant, type TimeItemVariantProps, TimePicker, type TimePickerProps, type TimePickerSize, type TimePickerTriggerVariantProps, type TimePickerVariant, type TimeScrollListVariantProps, type TimeSlot, Timeline, TimelineConnector, TimelineContent, TimelineItemComponent as TimelineItem, type TimelineItem as TimelineItemData, type TimelineItemProps, TimelineMarker, type TimelineProps, type ToastOptions, type ToastPosition, type ToastPromiseOptions, type ToastTheme, Toaster, type ToasterProps, Toggle, ToggleGroup, type ToggleGroupItemVariantProps, type ToggleGroupMultipleProps, type ToggleGroupProps, type ToggleGroupSingleProps, ToggleItem, type ToggleItemProps, type ToggleProps, type ToggleSize, type ToggleVariant, Toolbar, type ToolbarAction, ToolbarButton, type ToolbarButtonProps, ToolbarLink, type ToolbarLinkProps, type ToolbarProps, ToolbarSeparator, type ToolbarSeparatorProps, ToolbarToggleGroup, type ToolbarToggleGroupProps, ToolbarToggleItem, type ToolbarToggleItemProps, Tooltip, type TooltipAlign, TooltipArrow, type TooltipArrowProps, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, type TooltipSide, TooltipTrigger, type TooltipTriggerProps, Tracker, type TrackerBlockData, type TrackerProps, URLInput, type URLInputProps, type URLInputValidationState, type URLLinkIconVariantProps, type URLValidationIconVariantProps, type UploadProgress, type UploadResult, type UseFormFieldReturn, type ValidationRule, type Version, VersionActions, type VersionActionsProps, type VersionAuthor, VersionBadge, VersionControl, type VersionControlProps, VersionDiff, type VersionDiffProps, VersionItem, type VersionItemProps, VersionList, VersionTimeline, type VersionTimelineProps, VirtualTable, type VirtualTableProps, Wizard, type WizardProps, type WizardStep, accordionContentInnerVariants, accordionContentVariants, accordionItemVariants, accordionTriggerVariants, alertVariants, approvalFlowActionsVariants, approvalFlowConnectorVariants, approvalFlowMarkerVariants, approvalFlowStepCardVariants, approvalFlowStepVariants, approvalFlowVariants, approvalStatusVariants, arrayMove, aspectRatios, assetManagerContentVariants, assetManagerEmptyVariants, assetManagerGridVariants, assetManagerItemInfoVariants, assetManagerItemVariants, assetManagerLoadingVariants, assetManagerSidebarVariants, assetManagerThumbnailVariants, assetManagerToolbarVariants, assetManagerUploaderVariants, assetManagerVariants, availableChartColors, avatarAddButtonVariants, avatarBadgeVariants, avatarFallbackVariants, avatarGroupVariants, avatarLabelGroupVariants, avatarStatusVariants, avatarVariants, badgeVariants, bannerVariants, breadcrumbEllipsisVariants, breadcrumbItemVariants, breadcrumbLinkVariants, breadcrumbListVariants, breadcrumbPageVariants, breadcrumbSeparatorVariants, buttonGroupItemVariants, buttonGroupVariants, buttonVariants, calculateRatio, calendarContainerVariants, calendarDayButtonVariants, calendarDayCellVariants, calendarDisabledVariants, calendarNavButtonVariants, calendarOutsideVariants, calendarRangeEndVariants, calendarRangeMiddleVariants, calendarRangeStartVariants, calendarTodayIndicatorVariants, calendarTodayVariants, calloutVariants, cardActionVariants, cardContentVariants, cardDescriptionVariants, cardFooterVariants, cardHeaderVariants, cardTitleVariants, cardTypes, cardVariants, changeIndicatorVariants, chartColors, checkboxGroupDescriptionVariants, checkboxGroupHeaderVariants, checkboxGroupItemWrapperVariants, checkboxGroupLabelVariants, checkboxGroupVariants, checkboxIconVariants, checkboxVariants, collapsibleContentVariants, collapsibleTriggerVariants, collapsibleVariants, colorPickerPreviewVariants, colorPickerSwatchVariants, colorPickerTriggerVariants, combinatorToggleVariants, commandEmptyVariants, commandGroupVariants, commandInputIconVariants, commandInputVariants, commandInputWrapperVariants, commandItemVariants, commandListVariants, commandSeparatorVariants, commandShortcutVariants, commandVariants, commentActionsVariants, commentContentVariants, commentEmptyStateVariants, commentHeaderVariants, commentInputContainerVariants, commentItemVariants, commentMentionVariants, commentReactionVariants, commentRepliesVariants, commentSystemVariants, commentThreadLineVariants, commentTimelineMarkerVariants, completedStyles, configSectionVariants, constructCategoryColors, containerVariants, contextMenuCheckboxItemVariants, contextMenuContentVariants, contextMenuIndicatorWrapperVariants, contextMenuItemVariants, contextMenuLabelVariants, contextMenuRadioItemVariants, contextMenuSeparatorVariants, contextMenuShortcutVariants, contextMenuSubContentVariants, contextMenuSubTriggerVariants, dashboardBuilderCanvasVariants, dashboardBuilderDropZoneVariants, dashboardBuilderEmptyStateVariants, dashboardBuilderPropertiesPanelVariants, dashboardBuilderResizeHandleVariants, dashboardBuilderToolbarVariants, dashboardBuilderVariants, dashboardBuilderWidgetCardVariants, dashboardBuilderWidgetLibraryVariants, dashboardBuilderWidgetVariants, dashboardCardContentVariants, dashboardCardFooterVariants, dashboardCardHeaderVariants, dashboardCardTitleVariants, dashboardCardValueVariants, dashboardCardVariants, dashboardContentVariants, dashboardEmptyVariants, dashboardGridVariants, dashboardHeaderVariants, dashboardLoadingVariants, dashboardSidebarVariants, dashboardVariants, dashboardWidgetHeaderVariants, dashboardWidgetVariants, datePickerTriggerVariants, dateRangeInputContainerVariants, dateRangeInputFieldVariants, dateRangePickerFooterVariants, dateRangePickerTriggerVariants, dateRangePresetVariants, dateRangePresetsContainerVariants, defaultChartColors, defaultCountries, defaultPresets, defaultReactions, defaultWidgets, detectCardType, diffLineVariants, dividerContentVariants, dividerLineVariants, dividerWrapperVariants, downloadFile, dragHandleVariants, dragOverlayVariants, draggableVariants, drawerContentBaseVariants, drawerContentVariants, drawerDescriptionVariants, drawerFooterVariants, drawerHandleVariants, drawerHeaderVariants, drawerOverlayVariants, drawerTitleVariants, dropdownMenuCheckboxItemVariants, dropdownMenuContentVariants, dropdownMenuIndicatorWrapperVariants, dropdownMenuItemVariants, dropdownMenuLabelVariants, dropdownMenuRadioItemVariants, dropdownMenuSeparatorVariants, dropdownMenuShortcutVariants, dropdownMenuSubContentVariants, dropdownMenuSubTriggerVariants, droppableVariants, emailValidationIconVariants, emptyMediaVariants, emptyStateStyles, emptyStateVariants, errorBoundaryActionVariants, errorBoundaryCardVariants, errorBoundaryFallbackVariants, errorBoundaryIconVariants, errorBoundaryMessageVariants, errorBoundaryStackVariants, errorBoundaryTitleVariants, errorDefaults, errorMessageIconVariants, errorMessageListVariants, errorMessageVariants, errorStateVariants, eventCalendarAgendaItemVariants, eventCalendarCellVariants, eventCalendarDayNumberVariants, eventCalendarEventVariants, eventCalendarHeaderVariants, eventCalendarTimeSlotVariants, eventCalendarVariants, eventCalendarViewButtonVariants, exportButtonGroupVariants, exportToCSV, exportToExcel, exportToPDF, feedItemVariants, feedVariants, fieldContentVariants, fieldDescriptionVariants, fieldErrorVariants, fieldGroupVariants, fieldLabelVariants, fieldLegendVariants, fieldSeparatorVariants, fieldSetVariants, fieldTitleVariants, fieldVariants, fileDropzoneVariants, filePreviewActionButtonVariants, filePreviewActionsVariants, filePreviewContentVariants, filePreviewFallbackVariants, filePreviewInfoVariants, filePreviewVariants, filterBuilderVariants, filterGroupHeaderVariants, filterGroupVariants, filterPreviewVariants, filterRuleVariants, filterToolbarVariants, findCountryByCode, findCountryByDialCode, flexVariants, formActionsVariants, formDescriptionVariants, formItemVariants, formLabelVariants, formMessageVariants, formValidationVariants, formatCardNumber, formatPhoneNumber, gaugeChartVariants, getCardBrandName, getCardConfig, getCardDigits, getColorClassName, getEventVariant, getInitials, getPhoneDigits, getRatio, getYAxisDomain, gradientSpinnerVariants, gridVariants, groupHeaderStyles, headerActionsVariants, headerBrandVariants, headerContainerVariants, headerNavVariants, headerVariants, headingVariants, heatmapVariants, helpTextIconVariants, helpTextVariants, iconVariants, imageVariants, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupInputVariants, inputGroupTextareaVariants, inputGroupVariants, inputIconVariants, inputOTPCaretInnerStyles, inputOTPCaretStyles, inputOTPContainerVariants, inputOTPFieldDescriptionVariants, inputOTPFieldErrorVariants, inputOTPFieldLabelVariants, inputOTPFieldVariants, inputOTPGroupVariants, inputOTPSlotVariants, inputVariants, inputWrapperVariants, isEditableColumnMeta, isFilterGroup, isFilterRule, isSpanColumnMeta, itemMediaVariants, itemVariants, kanbanAddButtonVariants, kanbanBoardVariants, kanbanCardDescriptionVariants, kanbanCardMetaVariants, kanbanCardTitleVariants, kanbanCardVariants, kanbanColumnContentVariants, kanbanColumnHeaderVariants, kanbanColumnVariants, kanbanDropIndicatorVariants, kanbanLabelVariants, kanbanSearchVariants, kanbanSwimlaneVariants, kbdVariants, linkVariants, listItemVariants, listVariants, loadingStateVariants, loadingStyles, markerBarContainerVariants, markerBarMarkerVariants, markerBarMarkerWrapperVariants, markerBarRangeVariants, mentionSuggestionItemVariants, mentionSuggestionsVariants, menuGroupVariants, menuItemVariants, menuLabelVariants, menuSeparatorVariants, menuShortcutVariants, menuVariants, menubarCheckboxItemVariants, menubarContentVariants, menubarIndicatorWrapperVariants, menubarItemVariants, menubarLabelVariants, menubarRadioItemVariants, menubarSeparatorVariants, menubarShortcutVariants, menubarSubContentVariants, menubarSubTriggerVariants, menubarTriggerVariants, menubarVariants, messageVariants, nativeSelectIconVariants, nativeSelectLeftIconVariants, nativeSelectVariants, nativeSelectWithLeftIconPadding, nativeSelectWrapperVariants, navbarBrandVariants, navbarContainerVariants, navbarContentVariants, navbarItemVariants, navbarLinkVariants, navbarMenuToggleVariants, navbarMenuVariants, navbarVariants, navigationMenuContentVariants, navigationMenuIndicatorArrowVariants, navigationMenuIndicatorVariants, navigationMenuItemVariants, navigationMenuLinkVariants, navigationMenuListVariants, navigationMenuTriggerStyle, navigationMenuVariants, navigationMenuViewportVariants, navigationMenuViewportWrapperVariants, notificationVariants, numberInputPaddingVariants, numberStepperButtonVariants, numberStepperVariants, paginationContentVariants, paginationEllipsisVariants, paginationNextVariants, paginationPreviousVariants, paginationVariants, panelContentVariants, panelFooterVariants, panelHeaderVariants, panelVariants, paragraphVariants, passwordToggleVariants, paymentInputIconVariants, paymentInputInputVariants, paymentInputVariants, phoneInputCountryButtonVariants, phoneInputDropdownVariants, phoneInputInputVariants, phoneInputOptionVariants, phoneInputVariants, portalContainerVariants, portalContentVariants, portalOverlayVariants, previewContainerVariants, previewContentVariants, previewHeaderVariants, priorityStyles, progressBarIndicatorVariants, progressBarLabelVariants, progressBarTooltipVariants, progressBarVariants, progressCircleContainerVariants, progressCircleIndicatorVariants, progressCircleLabelVariants, progressCircleTrackVariants, progressCircleValueVariants, progressStepsVariants, radioButtonIndicatorVariants, radioButtonLabelVariants, radioButtonVariants, radioButtonWrapperVariants, radioCardGroupItemContentVariants, radioCardGroupItemDescriptionVariants, radioCardGroupItemDotVariants, radioCardGroupItemIconVariants, radioCardGroupItemIndicatorVariants, radioCardGroupItemTitleVariants, radioCardGroupItemVariants, radioCardGroupVariants, radioGroupIndicatorVariants, radioGroupItemVariants, radioGroupVariants, ratingItemVariants, ratingVariants, reportGeneratorVariants, stepBadgeVariants as reportStepBadgeVariants, stepIndicatorVariants as reportStepIndicatorVariants, stepItemVariants as reportStepItemVariants, resizableHandleGripVariants, resizableHandleVariants, resizablePanelGroupVariants, resizablePanelVariants, responsiveContainerVariants, richTextEditorBubbleMenuVariants, richTextEditorContentVariants, richTextEditorFloatingMenuVariants, richTextEditorPlaceholderVariants, richTextEditorToolbarButtonVariants, richTextEditorToolbarVariants, richTextEditorVariants, ruleFieldVariants, ruleOperatorVariants, ruleValueVariants, rulesContainerVariants, scrollAreaCornerVariants, scrollAreaVariants, scrollAreaViewportVariants, scrollBarThumbVariants, scrollBarVariants, searchClearButtonVariants, searchEmptyVariants, searchFilterVariants, searchFiltersContainerVariants, searchGroupHeadingVariants, searchHighlightVariants, searchHistoryHeaderVariants, searchIconVariants, searchInputVariants, searchInputWrapperVariants, searchLoadingVariants, searchResultIconVariants, searchResultItemVariants, searchResultsVariants, searchVariants, sectionVariants, selectContentVariants, selectItemVariants, selectLabelVariants, selectScrollButtonVariants, selectSeparatorVariants, selectTriggerVariants, selectedItemStyles, selectedStyles, sheetContentVariants, sheetOverlayVariants, sidebarContainerVariants, sidebarContentVariants, sidebarDesktopVariants, sidebarFooterVariants, sidebarGapVariants, sidebarGroupActionVariants, sidebarGroupContentVariants, sidebarGroupLabelVariants, sidebarGroupVariants, sidebarHeaderVariants, sidebarInnerVariants, sidebarInputVariants, sidebarInsetVariants, sidebarMenuActionShowOnHoverVariants, sidebarMenuActionVariants, sidebarMenuBadgeVariants, sidebarMenuButtonVariants, sidebarMenuItemVariants, sidebarMenuSkeletonVariants, sidebarMenuSubButtonVariants, sidebarMenuSubItemVariants, sidebarMenuSubVariants, sidebarMenuVariants, sidebarMobileVariants, sidebarNonCollapsibleVariants, sidebarProviderVariants, sidebarRailButtonVariants, sidebarRailVariants, sidebarSeparatorVariants, sidebarTriggerVariants, skeletonLoaderVariants, skipLinkVariants, skipLinksListInnerVariants, skipLinksListItemVariants, skipLinksListVariants, sliderLabelVariants, sliderMarkContainerVariants, sliderMarkLabelVariants, sliderMarkTickVariants, sliderMarkVariants, sliderRangeVariants, sliderRootVariants, sliderThumbVariants, sliderTooltipVariants, sliderTrackVariants, sortableItemVariants, sortableListHandleVariants, sortableListItemVariants, sortableListOverlayVariants, sortableListVariants, spacerVariants, spinnerVariants, splitButtonVariants, stackVariants, statusConfig, statusIndicatorVariants, statusStyles, stepBarSegmentVariants, stepCircleVariants, stepConnectorHorizontalVariants, stepConnectorVerticalVariants, stepDescriptionVariants, stepDotVariants, stepItemVariants$1 as stepItemVariants, stepLabelVariants, stepperConnectorHorizontalVariants, stepperConnectorVerticalVariants, stepperDescriptionVariants, stepperIndicatorVariants, stepperItemVariants, stepperLabelVariants, stepperVariants, successMessageVariants, switchThumbVariants, switchVariants, tabNavigationLinkVariants, tabNavigationVariants, tabPanelListVariants, tabPanelRootVariants, tabPanelTriggerVariants, tabPanelVariants, tableToCSV, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tabsVariants, tagCheckboxVariants, tagCountVariants, tagGroupVariants, tagVariants, tagsInputInputVariants, tagsInputVariants, taskCardVariants, taskListHeaderVariants, taskListItemVariants, taskListTitleVariants, taskListVariants, taskStatusColorVariants, taskStatusIconVariants, taskStatusLabelVariants, taskStatusMenuItemVariants, taskStatusTriggerVariants, taskStatusVariants, templateCardVariants, templateGridVariants, textVariants, textareaFieldDescriptionVariants, textareaFieldErrorVariants, textareaFieldLabelVariants, textareaFieldVariants, textareaVariants, thumbnailVariants, timeItemVariants, timePickerTriggerVariants, timeScrollListVariants, timelineItemVariants, timelineMarkerVariants, timelineVariants, toggleGroupItemVariants, toggleVariants, toolbarButtonVariants, toolbarLinkVariants, toolbarSeparatorVariants, toolbarToggleGroupVariants, toolbarToggleItemVariants, toolbarVariants, tooltipArrowVariants, tooltipContentVariants, unreadDotVariants, urlLinkIconVariants, urlValidationIconVariants, useButtonGroup, useFormField, useIsMobile, useMediaQuery, useOnWindowResize, useSidebar, useTagGroup, validateCardNumber, versionBadgeVariants, versionControlVariants, versionItemVariants, versionTimelineConnectorVariants, versionTimelineMarkerVariants, wizardActionsVariants, wizardContentVariants, wizardStepContentVariants, wizardStepperVariants, wizardVariants };
22733
+ export { ALL_STATUSES, Accordion, AccordionContent, type AccordionContentProps, type AccordionEventPayload, AccordionItem, type AccordionItemProps, type AccordionItemVariantProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionTriggerVariantProps, type AccordionVariant, type AccordionVariantProps, AccountSwitch, type AccountSwitchAccount, type AccountSwitchProps, type ActiveDatesMatcher, type ActiveItem, AdvancedSearchInput, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, type ApprovalAction, type ApprovalCondition, ApprovalFlow, type ApprovalFlowActionsVariantProps, type Approver$1 as ApprovalFlowApprover, ApprovalFlowConnector, type ApprovalFlowConnectorVariantProps, ApprovalFlowMarker, type ApprovalFlowMarkerVariantProps, type ApprovalFlowProps, ApprovalFlowStep, type ApprovalFlowStepCardVariantProps, type ApprovalFlowStepProps, type ApprovalFlowStepVariantProps, type ApprovalFlowVariantProps, type ApprovalHistory, ApprovalStatus, type ApprovalStatusProps, type ApprovalStatusType, type ApprovalStep, type ApprovalStepStatus, type ApprovePayload, type Approver, AreaChart, type AreaChartCurveType, type AreaChartEventProps, type AreaChartFill, type AreaChartIntervalType, type AreaChartLegendPosition, type AreaChartProps, type AreaChartSeriesConfig, type AreaChartTooltipCallbackProps, type AreaChartTooltipIndicator, type AreaChartVariant, AspectRatio, type AspectRatioEventPayload, type AspectRatioPreset, type AspectRatioProps, type Asset, type AssetFilter, AssetManager, type AssetManagerContextValue, type AssetManagerDataSlot, AssetManagerEmpty, type AssetManagerEmptyProps, AssetManagerGrid, type AssetManagerGridProps, type AssetManagerGridVariantProps, AssetManagerItem, type AssetManagerItemProps, type AssetManagerItemVariantProps, AssetManagerList, type AssetManagerListProps, type AssetManagerProps, AssetManagerSidebar, type AssetManagerSidebarProps, type AssetManagerSidebarVariantProps, AssetManagerToolbar, type AssetManagerToolbarProps, type AssetManagerToolbarVariantProps, AssetManagerUploader, type AssetManagerUploaderProps, type AssetManagerUploaderVariantProps, type AssetManagerVariantProps, type AssetSort, type AssetSortDirection, type AssetSortField, type AssetView, Autocomplete, type AutocompleteOption, type AutocompleteProps, type AutocompleteSize, type AutocompleteVariant, Avatar, AvatarAddButton, type AvatarAddButtonProps, AvatarBadge, type AvatarBadgeProps, type AvatarColorScheme, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, AvatarLabelGroup, type AvatarLabelGroupProps, AvatarLabelGroupSkeleton, type AvatarLabelGroupSkeletonProps, type AvatarProps, type AvatarShape, type AvatarSize, AvatarSkeleton, type AvatarSkeletonProps, AvatarStatus, type AvatarStatusProps, Badge, type BadgeAvatarProps, type BadgeColor, type BadgeLegacyVariant, type BadgeProps, type BadgeSize, type BadgeType, Banner, type BannerProps$1 as BannerComponentProps, type BannerPosition, type BannerProps, type BannerVariant, BarChart, type BarChartEventProps, type BarChartIntervalType, type BarChartLayout, type BarChartLegendPosition, type BarChartProps, type BarChartSeriesConfig, type BarChartTooltipCallbackProps, type BarChartTooltipIndicator, type BarChartVariant, BarList, type BarListDataItem, type BarListProps, type BarListSortOrder, type BrandingConfig, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, type BreadcrumbEllipsisVariantProps, BreadcrumbItem, type BreadcrumbItemProps, type BreadcrumbItemVariantProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbLinkVariantProps, BreadcrumbList, type BreadcrumbListProps, type BreadcrumbListVariantProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbPageVariantProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSeparatorVariantProps, type BuilderDataSource, type BuilderLayoutConfig, type BuilderMode, type BuilderPosition, type BuilderSavePayload, type BuilderState, type BuilderWidget, type BuilderWidgetAddPayload, type BuilderWidgetDefinition, type BuilderWidgetLayout, type BuilderWidgetProps, type BuilderWidgetRemovePayload, type BuilderWidgetUpdatePayload, Button, type ButtonCVAVariant, type ButtonEventPayload, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, ButtonGroupItem, type ButtonGroupItemIconMode, type ButtonGroupItemProps, type ButtonGroupItemState, type ButtonGroupOrientation, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarButtonVariant, type CalendarCaptionLayout, CalendarDayButton, type CalendarDayButtonProps, type CalendarEvent, type CalendarMode, type CalendarPassthroughProps, type CalendarProps, type CalendarRef, Callout, type CalloutProps$1 as CalloutComponentProps, type CalloutProps, type CalloutSize, type CalloutVariant, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, type CardType, type CardTypeConfig, type CardVariant, type CardVariantProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, type CategoryBarDataItem, type CategoryBarProps, type CategoryBarSize, type CellEditParams, ChangeIndicator, type ChangeSet, ChartCard, type ChartCardComparisonPeriod, type ChartCardDataPoint, type ChartCardProps, type ChartCardValueFormatter, type ChartColor, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartLegendContentProps, type ChartLegendProps, ChartStyle, ChartTooltip, ChartTooltipContent, type ChartTooltipContentProps, Checkbox, CheckboxGroup, type CheckboxGroupDescriptionVariantProps, type CheckboxGroupHeaderVariantProps, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupItemWrapperVariantProps, type CheckboxGroupLabelVariantProps, type CheckboxGroupOption, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxGroupVariantProps, type CheckboxProps, type CheckboxSize, type CheckboxState, type CheckboxVariantProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleContentVariantProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type CollapsibleTriggerVariantProps, type CollapsibleVariantProps, ColorPicker, type ColorPickerPreviewVariantProps, type ColorPickerProps, type ColorPickerSize, type ColorPickerSwatchVariantProps, type ColorPickerTriggerVariantProps, type ColorPickerVariant, type ColorUtility, type ColumnDefinition, type ColumnDeletePayload, type ColumnReorderPayload, type ColumnUpdatePayload, type CombinatorToggleVariantProps, ComboChart, type ComboChartBarSeries, type ComboChartBarSeriesConfig, type ComboChartBarVariant, type ComboChartCurveType, type ComboChartEventProps, type ComboChartIntervalType, type ComboChartLegendPosition, type ComboChartLineSeries, type ComboChartLineSeriesConfig, type ComboChartProps, type ComboChartSeriesType, type ComboChartTooltipCallbackProps, type ComboChartTooltipIndicator, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxSize, type ComboboxVariant, Command, type CommandCombinedVariantProps, type CommandDataSlot, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandEmptyVariantProps, CommandGroup, type CommandGroupData, type CommandGroupProps, type CommandGroupVariantProps, CommandInput, type CommandInputIconVariantProps, type CommandInputPayload, type CommandInputProps, type CommandInputVariantProps, type CommandInputWrapperVariantProps, CommandItem, type CommandItemCombinedVariantProps, type CommandItemData, type CommandItemProps, type CommandItemVariant, type CommandItemVariantProps, CommandList, type CommandListProps, type CommandListVariantProps, type CommandProps, type CommandSelectPayload, CommandSeparator, type CommandSeparatorProps, type CommandSeparatorVariantProps, CommandShortcut, type CommandShortcutProps, type CommandShortcutVariantProps, type CommandSize, type CommandVariantProps, type Comment, type CommentAttachment, type CommentDeletePayload, type CommentEditPayload, CommentInput, type CommentInputProps, CommentItem, type CommentItemProps, type CommentMentionPayload, type CommentReactPayload, type CommentReaction, CommentReactions, type CommentSubmitPayload, CommentSystem, type CommentSystemProps, type CommentUser, type CompletePayload, type ConfigChangePayload, type ConfigField, type ConfigFieldType, type ConfigSchema, type ConfigurationFormProps, ConfirmButton, type ConfirmButtonProps, type ConfirmButtonSize, type ConfirmButtonVariant, ConfirmModal, type ConfirmModalProps, type ConfirmModalSize, type ConfirmModalVariant, Container, type ContainerElement, type ContainerMaxWidth, type ContainerPadding, type ContainerProps, type ContainerVariantProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuGroup, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, type ContextMenuItemVariant, type ContextMenuItemVariantProps, ContextMenuLabel, type ContextMenuLabelProps, type ContextMenuLabelVariantProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, type ContextMenuSubProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, type ContextMenuSubTriggerVariantProps, ContextMenuTrigger, type ContextMenuTriggerProps, type Country, DEFAULT_STATUS_CONFIGS, Dashboard, DashboardBuilder, DashboardBuilderCanvas, type DashboardBuilderCanvasProps, type DashboardBuilderCanvasVariantProps, type DashboardBuilderDropZoneVariantProps, type DashboardBuilderEmptyStateVariantProps, DashboardBuilderPropertiesPanel, type DashboardBuilderPropertiesPanelProps, type DashboardBuilderPropertiesPanelVariantProps, type DashboardBuilderProps, type DashboardBuilderResizeHandleVariantProps, DashboardBuilderToolbar, type DashboardBuilderToolbarProps, type DashboardBuilderToolbarVariantProps, type DashboardBuilderVariantProps, type DashboardBuilderWidgetCardVariantProps, DashboardBuilderWidgetComponent, type DashboardBuilderWidgetComponentProps, DashboardBuilderWidgetLibrary, type DashboardBuilderWidgetLibraryProps, type DashboardBuilderWidgetLibraryVariantProps, type DashboardBuilderWidgetVariantProps, DashboardCard, DashboardCardContent, type DashboardCardContentProps, DashboardCardFooter, type DashboardCardFooterProps, DashboardCardHeader, type DashboardCardHeaderProps, type DashboardCardProps, DashboardCardTitle, type DashboardCardTitleProps, DashboardCardValue, type DashboardCardValueProps, DashboardEmptyState, DashboardErrorState, DashboardHeader, type DashboardHeaderProps, DashboardLoadingState, type DashboardProps, type DashboardState, type DashboardVariantProps, DashboardWidget, type DashboardWidgetAddPayload, type DashboardWidgetClickPayload, type DashboardWidgetConfig, type DashboardWidgetData, type DashboardWidgetProps, type DashboardWidgetRemovePayload, type DashboardWidgetType, type DashboardWidgetVariantProps, type DataSource, DataTable, DataTableBooleanCell, type DataTableBooleanCellProps, type DataTableColumnMeta, DataTableCurrencyCell, type DataTableCurrencyCellProps, DataTableDateCell, type DataTableDateCellProps, type DataTableFilterVariant, type DataTablePaginationInfo, DataTableProgressCell, type DataTableProgressCellProps, type DataTableProps, DataTableRatingCell, type DataTableRatingCellProps, DatePicker, type DatePickerProps, type DatePickerSize, type DatePickerTriggerVariantProps, type DatePickerVariant, type DateRange, DateRangeInput, type DateRangeInputFieldVariantProps, type DateRangeInputProps, DateRangePicker, type DateRangePickerProps, type DateRangePickerTriggerVariantProps, type DateRangePreset, type DateRangePresetVariantProps, DateRangePresets, type DateRangePresetsProps, DefaultFallback, type DelegatePayload, DeltaBar, type DeltaBarProps, type DeltaBarSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, type DialogPortalProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, type DiffLine, Divider, type DividerLabelPosition, type DividerLineType, type DividerOrientation, type DividerProps, type DividerType, type DividerVisualStyle, DndContext, type DndContextProps, type DragAndDropDataSlot, DragHandle, type DragHandleProps, type DragHandleVariantProps, DragOverlay, type DragOverlayProps, type DragOverlayVariantProps, Draggable, type DraggableProps, type DraggableRenderProps, type DraggableVariantProps, Drawer, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, type DrawerContentVariantProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerPortalProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuItemVariantProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuLabelVariantProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, type DropdownMenuSubTriggerVariantProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Droppable, type DroppableProps, type DroppableRenderProps, type DroppableVariantProps, type DropzoneRenderFn, type DropzoneState, type EditableColumnMeta, EmailInput, type EmailInputProps, type EmailInputValidationState, type EmailValidationIconVariantProps, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, ErrorBoundary, type ErrorBoundaryProps, type ErrorBoundaryState, type ErrorDefault, ErrorMessage, type ErrorMessageIconVariantProps, type ErrorMessageProps, type ErrorMessageSize, type ErrorMessageVariant, type ErrorMessageVariantProps, type ErrorObject, ErrorPage, type ErrorPageProps, type ErrorType, type EscalatePayload, EventCalendar, EventCalendarAgenda, type EventCalendarAgendaProps, EventCalendarDay, type EventCalendarDayProps, EventCalendarEvent, type EventCalendarEventProps, EventCalendarHeader, type EventCalendarHeaderProps, EventCalendarMonth, type EventCalendarMonthProps, type EventCalendarProps, type EventCalendarView, EventCalendarWeek, type EventCalendarWeekProps, type ExportFormat$1 as ExportFormat, type ExportOptions, type ExportPayload, type FallbackProps, type FallbackRender, FeatureItem, type FeatureItemProps, type FeatureItemTone, FeaturedIcon, type FeaturedIconProps, type FeaturedIconShape, type FeaturedIconSize, type FeaturedIconTone, Feed, type FeedProps$1 as FeedComponentProps, FeedItemComponent as FeedItem, type FeedItemProps$1 as FeedItemComponentProps, type FeedItemData, type FeedItem as FeedItemDataType, type FeedItemProps, type FeedProps, type FeedSize, FeedSkeleton, type FeedVariant, Field, FieldContent, type FieldContentProps, type FieldDefinition, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorItem, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldLegendVariant, type FieldLegendVariantProps, type FieldOption, type FieldOrientation, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps, type FieldType, type FieldVariantProps, type FileChange, FileDropzone, type FileDropzoneProps, type FileInfo, FilePreview, type FilePreviewActionButtonVariantProps, type FilePreviewActionsVariantProps, type FilePreviewContentVariantProps, type FilePreviewDataSlot, type FilePreviewFallbackVariantProps, type FilePreviewInfoVariantProps, type FilePreviewProps, type FilePreviewState, type FilePreviewVariantProps, type FileTypeCategory, FileUpload, FileUploadAvatar, type FileUploadAvatarVariantProps, type FileUploadChangePayload, type FileUploadCompletePayload, type FileUploadContextValue, type FileUploadDataSlot, FileUploadDropzone, type FileUploadDropzoneProps, type FileUploadDropzoneVariantProps, type FileUploadErrorPayload, FileUploadInline, FileUploadList, type FileUploadListProps, FileUploadPreview, type FileUploadPreviewProps, type FileUploadPreviewVariantProps, FileUploadProgressBar, type FileUploadProgressPayload, type FileUploadProgressProps, type FileUploadProgressVariantProps, type FileUploadProps, type FileUploadRemovePayload, FileUploadTrigger, type FileUploadTriggerProps, type FileUploadTriggerVariantProps, type FileUploadVariantProps, type FileValidationError, FilterBuilder, type FilterBuilderEventPayload, type FilterBuilderProps, type FilterBuilderVariantProps, FilterGroupComponent as FilterGroup, type FilterGroupProps, type FilterGroup as FilterGroupType, type FilterGroupVariantProps, FilterPreview, type FilterPreviewProps, FilterRuleComponent as FilterRule, type FilterRuleEventPayload, type FilterRuleProps, type FilterRule as FilterRuleType, type FilterRuleVariantProps, FilterToolbar, type FilterToolbarProps, Flex, type FlexAlign, type FlexDirection, type FlexElement, type FlexGap, type FlexJustify, type FlexProps, type FlexVariantProps, type FlexWrap, FloatLabel, type FloatLabelProps, type FloatLabelVariant, FocusTrap, type FocusTrapProps, type FocusedCell, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, type FormDescriptionVariantProps, FormField, FormFieldContext, type FormFieldContextValue, type FormFieldProps, FormItem, FormItemContext, type FormItemContextValue, type FormItemProps, type FormItemVariantProps, FormLabel, type FormLabelProps, type FormLabelVariantProps, FormMessage, type FormMessageProps, type FormMessageVariantProps, type FormProps, FormValidation, type FormValidationProps, type FormValidationState, type FormValidationVariantProps, FunnelChart, type FunnelChartDataItem, type FunnelChartLabelPosition, type FunnelChartLegendPosition, type FunnelChartProps, type FunnelChartTooltipCallbackProps, type FunnelChartTooltipIndicator, GaugeChart, type GaugeChartProps, type GaugeSize, type GaugeVariant, type GaugeZone, type GeneratePayload, GradientSpinner, type GradientSpinnerVariants, Grid, type GridAlign, type GridCols, type GridElement, type GridFlow, type GridGap, type GridProps, type GridRows, type GridVariantProps, Header, HeaderActions, type HeaderActionsProps, HeaderBrand, type HeaderBrandProps, HeaderNav, type HeaderNavProps, type HeaderProps, Heading, type HeadingAlign, type HeadingColor, type HeadingGradient, type HeadingLevel, type HeadingProps, type HeadingSize, type HeadingWeight, Heatmap, HeatmapCell, type HeatmapCellEventPayload, type HeatmapCellProps, type HeatmapData, HeatmapLegend, type HeatmapLegendPosition, type HeatmapProps, type HeatmapSelectedCell, HelpText, type HelpTextIconVariantProps, type HelpTextProps, type HelpTextSize, type HelpTextVariant, type HelpTextVariantProps, HoverCard, HoverCardContent, HoverCardTrigger, Icon, type IconProps, type IconSize, type IconVariant, IftaLabel, type IftaLabelProps, Image, type ImageAspectRatio, ImageGallery, type ImageGalleryGap, ImageGalleryItem, type ImageGalleryItemProps, type ImageGalleryLayout, type ImageGalleryProps, type ImageItem, type ImageObjectFit, type ImageProps, type ImageSize, type ImageVariant, type InputEventPayload, InputGroup, InputGroupAddon, type InputGroupAddonAlign, type InputGroupAddonProps, type InputGroupAddonVariantProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSize, type InputGroupButtonVariantProps, InputGroupInput, type InputGroupInputProps, type InputGroupInputVariantProps, type InputGroupProps, type InputGroupSize, InputGroupText, type InputGroupTextProps, InputGroupTextarea, type InputGroupTextareaProps, type InputGroupTextareaVariantProps, type InputGroupVariantProps, type InputIconVariantProps, InputOTP, type InputOTPContainerVariantProps, type InputOTPDigits, type InputOTPExtraProps, InputOTPField, type InputOTPFieldDescriptionVariantProps, type InputOTPFieldErrorVariantProps, type InputOTPFieldLabelVariantProps, type InputOTPFieldProps, type InputOTPFieldVariantProps, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputOTPSlotVariantProps, type InputSize, type InputVariant, type InputVariantProps, Item, ItemActions, type ItemAddPayload, type ItemClickPayload, ItemContent, type ItemDeletePayload, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMovePayload, ItemSeparator, ItemTitle, type ItemUpdatePayload, KPICard, KPICardGroup, type KPICardGroupProps, type KPICardProps, type KPICardSize, type KPICardTrend, type KPICardVariant, KanbanBoard, type KanbanBoardProps, KanbanCard, type KanbanCardProps, type KanbanColumn, type KanbanColumnProps, type KanbanFilterConfig, type KanbanItem, type KanbanLabel, type KanbanSubtasks, type KanbanUser, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, type KbdSize, type KbdVariant, type KbdVariants, type KeyboardShortcuts, Label, type LabelProps, type LayoutChangePayload, type LayoutItem, type LegendPayloadItem, Lightbox, type LightboxImage, type LightboxProps, LineChart, type LineChartCurveType, type LineChartProps, type LineChartSeriesConfig, type LineChartTooltipIndicator, type LineChartVariant, Link, type LinkEventPayload, type LinkProps, type LinkSize, type LinkUnderline, type LinkVariant, List, ListItem, ListItemActions, ListItemContent, type ListItemProps, ListItem as ListItemType, type ListProps, MarkdownEditor, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownEditorRef, MarkdownHelp, type MarkdownHelpProps, MarkdownPreview, type MarkdownPreviewProps, MarkdownToolbar, type MarkdownToolbarProps, MarkerBar, type MarkerBarProps, type MarkerBarSize, Menu, MenuGroup, type MenuGroupProps, MenuItem, type MenuItemProps, MenuLabel, type MenuLabelProps, type MenuProps, MenuSeparator, type MenuSeparatorProps, MenuShortcut, type MenuShortcutProps, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarGroup, type MenubarGroupProps, MenubarItem, type MenubarItemProps, type MenubarItemVariantProps, MenubarLabel, type MenubarLabelProps, type MenubarLabelVariantProps, MenubarMenu, type MenubarMenuProps, MenubarPortal, type MenubarPortalProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, type MenubarShortcutProps, MenubarSub, MenubarSubContent, type MenubarSubContentProps, type MenubarSubProps, MenubarSubTrigger, type MenubarSubTriggerProps, type MenubarSubTriggerVariantProps, MenubarTrigger, type MenubarTriggerProps, Message, type MessageProps, type MessageSize, type MessageVariant, Modal, type ModalProps, type ModalSize, MultiSelect, type MultiSelectOption, type MultiSelectProps, type MultiSelectSize, type MultiSelectVariant, NativeSelect, NativeSelectOptGroup, type NativeSelectOptGroupProps, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, type NativeSelectSize$1 as NativeSelectSize, type NativeSelectVariant, type NativeSelectVariantProps, Navbar, NavbarBrand, type NavbarBrandProps, NavbarContent, type NavbarContentProps, NavbarItem, type NavbarItemProps, NavbarLink, type NavbarLinkProps, NavbarMenu, type NavbarMenuProps, NavbarMenuToggle, type NavbarMenuToggleProps, type NavbarProps, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, type NavigationMenuViewportProps, Notification, NotificationDismissButton, type NotificationItem, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputProps, type NumberStepperButtonVariantProps, type NumberStepperVariantProps, type OperatorInfo, type OperatorType, type OperatorsByType, PROGRESS_CIRCLE_SIZES, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Panel, PanelContent, type PanelContentProps, type PanelContentVariantProps, PanelFooter, type PanelFooterProps, PanelHeader, type PanelHeaderProps, type PanelPosition, type PanelProps, type PanelSize, type PanelVariant, type PanelVariantProps, Paragraph, type ParagraphAlign, type ParagraphColor, type ParagraphLeading, type ParagraphProps, type ParagraphSize, type ParagraphSpacing, type ParagraphWeight, PasswordInput, type PasswordInputProps, type PasswordToggleVariantProps, PaymentInput, type PaymentInputProps, type PaymentInputSize, type PaymentInputVariant, type PaymentInputVariantProps, PhoneInput, type PhoneInputProps, type PhoneInputSize, type PhoneInputVariant, type PhoneInputVariantProps, PieChart, type PieChartActiveShape, type PieChartCenterLabel, type PieChartDataItem, type PieChartLabelConfig, type PieChartProps, type PieChartTooltipCallbackProps, type PieChartTooltipIndicator, type PieChartVariant, Popover, type PopoverAlign, PopoverAnchor, type PopoverAnchorProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverPortalProps, type PopoverProps, type PopoverSide, PopoverTrigger, type PopoverTriggerProps, Portal, type PortalProps, type PreviewContainerVariantProps, type PreviewPanelProps, ProgressBar, type ProgressBarColor, type ProgressBarLabelPosition, type ProgressBarLabelProps, type ProgressBarProps, type ProgressBarSize, ProgressCircle, type ProgressCircleColor, type ProgressCircleContainerVariants, type ProgressCircleIndicatorVariants, type ProgressCircleProps, type ProgressCircleShape, type ProgressCircleSize, type ProgressCircleTrackVariants, ProgressSteps, type ProgressStepsProps, type ProgressStepsVariantProps, RadarChart, type RadarChartProps, RadialChart, type RadialChartProps, RadioButton, type RadioButtonIndicatorVariantProps, type RadioButtonLabelVariantProps, type RadioButtonProps, type RadioButtonSize, type RadioButtonVariantProps, type RadioButtonWrapperVariantProps, RadioCardGroup, RadioCardGroupItem, type RadioCardGroupItemProps, type RadioCardGroupProps, type RadioCardGroupSize, RadioGroup, type RadioGroupIndicatorVariantProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemVariantProps, type RadioGroupOrientation, type RadioGroupProps, type RadioGroupSize, type RadioGroupVariantProps, type RangeCalendarProps, Rating, type RatingItemProps, type RatingItemVariantProps, type RatingProps, type RatingSize, type RatingVariantProps, type Reaction, type RecurrenceRule, type RefreshPayload, type RejectPayload, type ReportChartConfig, type ReportConfig, type ReportErrorPayload, type ReportExportPayload, ReportGenerator, type ReportGeneratorProps, type ReportGeneratorState, type ReportGeneratorVariantProps, type ReportTemplate, ResizableHandle, type ResizableHandleProps, type ResizableHandleVariant, type ResizableHandleVariantProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelGroupVariantProps, type ResizablePanelProps, type ResizablePanelVariantProps, type ResponsiveColumns, ResponsiveContainer, type ResponsiveContainerBreakpoint, type ResponsiveContainerElement, type ResponsiveContainerMaxWidth, type ResponsiveContainerProps, type ResponsiveContainerVariant, type ResponsiveContainerVariantProps, RichTextBubbleMenuContent as RichTextBubbleMenu, type RichTextBubbleMenuProps, RichTextEditor, type RichTextEditorProps, type RichTextEditorRef, RichTextFloatingMenuContent as RichTextFloatingMenu, type RichTextFloatingMenuProps, RichTextToolbar, type RichTextToolbarProps, ScatterChart, type ScatterChartEventProps, type ScatterChartIntervalType, type ScatterChartLegendPosition, type ScatterChartProps, type ScatterChartSeriesConfig, type ScatterChartShape, type ScatterChartTooltipCallbackProps, type ScatterChartTooltipIndicator, type ScatterChartValueFormatter, type ScheduleConfig, type SchedulePayload, ScrollArea, type ScrollAreaProps, type ScrollAreaVariantProps, type ScrollAreaViewportVariantProps, ScrollBar, type ScrollBarOrientation, type ScrollBarProps, type ScrollBarSize, type ScrollBarThumbVariantProps, type ScrollBarVariantProps, Search, type SearchClearButtonVariantProps, SearchEmpty, type SearchEmptyProps, type SearchFilter, SearchFilters, type SearchFiltersProps, type SearchGroup, SearchHighlight, type SearchHighlightProps, SearchHistory, type SearchHistoryProps, type SearchIconVariantProps, SearchInput, type SearchInputProps$1 as SearchInputProps, SearchLoading, type SearchLoadingProps, type SearchProps, type SearchResult, SearchResultGroup, type SearchResultGroupProps, SearchResultItem, type SearchResultItemProps, SearchResults, type SearchResultsProps, type SearchSize, type SearchState, type SearchVariant, Section, type SectionProps, type SectionSize, type SectionVariant, type SectionVariantProps, Select, SelectContent, type SelectContentProps, type SelectContentVariantProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, type SelectItemVariantProps, SelectLabel, type SelectLabelProps, type SelectLabelVariantProps, type SelectProps, type SelectScrollButtonVariantProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSeparator, type SelectSeparatorProps, type SelectSeparatorVariantProps, type SelectSize, SelectTrigger, type SelectTriggerProps, type SelectTriggerVariantProps, SelectValue, type SelectValueProps, type SelectVariant, Sheet, SheetBody, type SheetBodyProps, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentVariantProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayVariant, type SheetOverlayVariantProps, SheetPortal, type SheetPortalProps, type SheetProps, type SheetSide, type SheetSize, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, SidebarContent, type SidebarContentProps, type SidebarContextProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, SidebarPanelContent, type SidebarPanelContentProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, SidebarRailButton, type SidebarRailButtonProps, SidebarRailContent, type SidebarRailContentProps, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SingleStat, type SingleStatProps, type SingleStatSize, type SingleStatVariant, SkeletonLoader, type SkeletonLoaderAnimation, type SkeletonLoaderProps, type SkeletonLoaderShape, type SkeletonLoaderSize, type SkeletonLoaderVariants, SkipLink, type SkipLinkItem, type SkipLinkProps, SkipLinksList, type SkipLinksListProps, Slider, type SliderColor, type SliderFormatValue, type SliderGetAriaValueText, type SliderLabelType, type SliderLabelVariantProps, type SliderMark, type SliderMarkContainerVariantProps, type SliderMarkLabelVariantProps, type SliderMarkTickVariantProps, type SliderMarkVariantProps, type SliderOrientation, type SliderProps, type SliderRangeVariantProps, type SliderRootVariantProps, type SliderSize, type SliderThumbVariantProps, type SliderTooltipVariantProps, type SliderTrackVariantProps, type SliderValue, SortableContext, type SortableContextProps, SortableItem, type SortableItemProps, type SortableItemRenderProps, type SortableItemState, type SortableItemVariantProps, SortableList, type SortableListDataSlot, SortableListDragHandle, type SortableListDragHandleProps, type SortableListHandleContextValue, SortableListItem, type SortableListItemProps, type SortableListProps, type SortableListReorderEvent, Spacer, type SpacerAxis, type SpacerFlex, type SpacerNumericSize, type SpacerProps, type SpacerSize, type SpacerTokenSize, type SpanColumnMeta, Sparkline, type SparklineData, type SparklineDataPoint, type SparklineFill, type SparklineProps, type SparklineSize, type SparklineVariant, SpeedDial, type SpeedDialAction, type SpeedDialDirection, type SpeedDialProps, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, type SpinnerVariant, type SpinnerVariants, SplitButton, type SplitButtonEventPayload, type SplitButtonMenuItem, type SplitButtonProps, type SplitButtonSize, type SplitButtonVariant, Stack, type StackAlign, type StackDirection, type StackElement, type StackJustify, type StackProps, type StackSpacing, type StackVariantProps, type StatusConfig, StatusIndicator, type StatusIndicatorProps, type StatusIndicatorSize, type StatusIndicatorVariant, type StatusType, type Step, type StepBadgeVariantProps, type StepChangePayload, type StepCircleVariantProps, type StepConnectorHorizontalVariantProps, type StepConnectorVerticalVariantProps, type StepIndicatorProps, type StepIndicatorVariantProps, type StepItem, type StepItemProps, type StepItemVariantProps, Stepper, type StepperConnectorHorizontalVariantProps, type StepperConnectorVerticalVariantProps, type StepperIndicatorVariantProps, type StepperItemVariantProps, type StepperProps, type StepperVariantProps, SuccessMessage, type SuccessMessageProps, type SuccessMessageVariantProps, Switch, type SwitchProps, type SwitchSize, type SwitchState, type SwitchThumbVariantProps, type SwitchVariantProps, TabNavigation, TabNavigationLink, type TabNavigationLinkProps, type TabNavigationProps, type TabNavigationVariant, TabPanel, TabPanelList, type TabPanelListProps, type TabPanelProps, TabPanelRoot, type TabPanelRootProps, TabPanelTrigger, type TabPanelTriggerProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagAvatarProps, TagGroup, type TagGroupContextValue, type TagGroupProps, type TagProps, type TagSize, TagsInput, type TagsInputInputVariantProps, type TagsInputProps, type TagsInputSize, type TagsInputVariant, type TagsInputVariantProps, type TaskAssignee, TaskCard, type TaskCardAssignee, type TaskCardProps, type TaskCardStatus, type TaskGroupBy, type TaskItem, TaskList, type TaskListPriority, type TaskListProps, type TaskListStatus, type TaskPriority, TaskStatus, type TaskStatusColorVariantProps, type TaskStatusConfig, type TaskStatusConfigMap, type TaskStatusIconVariantProps, type TaskStatusLabelVariantProps, type TaskStatusMenuItemVariantProps, type TaskStatusMenuProps, type TaskStatusProps, type TaskStatusTriggerVariantProps, type TaskStatusVariantProps, type TemplateCardVariantProps, type TemplateSelectorProps, Text, type TextElement, TextInput, type TextInputProps, type TextProps, type TextSize, type TextVariant, type TextWeight, Textarea, TextareaField, type TextareaFieldDescriptionVariantProps, type TextareaFieldErrorVariantProps, type TextareaFieldLabelVariantProps, type TextareaFieldProps, type TextareaFieldVariantProps, type TextareaProps, type TextareaResize, type TextareaSize, type TextareaVariant, type TextareaVariantProps, Thumbnail, type ThumbnailAspectRatio, type ThumbnailProps, type ThumbnailRounded, type ThumbnailRoundedVariant, type ThumbnailSize, type ThumbnailSizeVariant, type TimeItemVariantProps, TimePicker, type TimePickerProps, type TimePickerSize, type TimePickerTriggerVariantProps, type TimePickerVariant, type TimeScrollListVariantProps, type TimeSlot, Timeline, TimelineConnector, TimelineContent, TimelineItemComponent as TimelineItem, type TimelineItem as TimelineItemData, type TimelineItemProps, TimelineMarker, type TimelineProps, type ToastOptions, type ToastPosition, type ToastPromiseOptions, type ToastTheme, Toaster, type ToasterProps, Toggle, ToggleGroup, type ToggleGroupItemVariantProps, type ToggleGroupMultipleProps, type ToggleGroupProps, type ToggleGroupSingleProps, ToggleItem, type ToggleItemProps, type ToggleProps, type ToggleSize, type ToggleVariant, Toolbar, type ToolbarAction, ToolbarButton, type ToolbarButtonProps, ToolbarLink, type ToolbarLinkProps, type ToolbarProps, ToolbarSeparator, type ToolbarSeparatorProps, ToolbarToggleGroup, type ToolbarToggleGroupProps, ToolbarToggleItem, type ToolbarToggleItemProps, Tooltip, type TooltipAlign, TooltipArrow, type TooltipArrowProps, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, type TooltipSide, TooltipTrigger, type TooltipTriggerProps, Tracker, type TrackerBlockData, type TrackerProps, URLInput, type URLInputProps, type URLInputValidationState, type URLLinkIconVariantProps, type URLValidationIconVariantProps, UpdatesWidget, type UpdatesWidgetItem, type UpdatesWidgetProps, type UploadProgress, type UploadResult, type UseFormFieldReturn, type ValidationRule, type Version, VersionActions, type VersionActionsProps, type VersionAuthor, VersionBadge, VersionControl, type VersionControlProps, VersionDiff, type VersionDiffProps, VersionItem, type VersionItemProps, VersionList, VersionTimeline, type VersionTimelineProps, VirtualTable, type VirtualTableProps, Wizard, type WizardProps, type WizardStep, accordionContentInnerVariants, accordionContentVariants, accordionItemVariants, accordionTriggerVariants, alertVariants, approvalFlowActionsVariants, approvalFlowConnectorVariants, approvalFlowMarkerVariants, approvalFlowStepCardVariants, approvalFlowStepVariants, approvalFlowVariants, approvalStatusVariants, arrayMove, aspectRatios, assetManagerContentVariants, assetManagerEmptyVariants, assetManagerGridVariants, assetManagerItemInfoVariants, assetManagerItemVariants, assetManagerLoadingVariants, assetManagerSidebarVariants, assetManagerThumbnailVariants, assetManagerToolbarVariants, assetManagerUploaderVariants, assetManagerVariants, availableChartColors, avatarAddButtonVariants, avatarBadgeVariants, avatarFallbackVariants, avatarGroupVariants, avatarLabelGroupVariants, avatarStatusVariants, avatarVariants, badgeVariants, bannerVariants, breadcrumbEllipsisVariants, breadcrumbItemVariants, breadcrumbLinkVariants, breadcrumbListVariants, breadcrumbPageVariants, breadcrumbSeparatorVariants, buttonGroupItemVariants, buttonGroupVariants, buttonVariants, calculateRatio, calendarContainerVariants, calendarDayButtonVariants, calendarDayCellVariants, calendarDisabledVariants, calendarNavButtonVariants, calendarOutsideVariants, calendarRangeEndVariants, calendarRangeMiddleVariants, calendarRangeStartVariants, calendarTodayIndicatorVariants, calendarTodayVariants, calloutVariants, cardActionVariants, cardContentVariants, cardDescriptionVariants, cardFooterVariants, cardHeaderVariants, cardTitleVariants, cardTypes, cardVariants, changeIndicatorVariants, chartCardChartVariants, chartCardHeaderVariants, chartCardPreviousValueVariants, chartCardTitleVariants, chartCardValueContainerVariants, chartCardValueVariants, chartCardVariants, chartColors, checkboxGroupDescriptionVariants, checkboxGroupHeaderVariants, checkboxGroupItemWrapperVariants, checkboxGroupLabelVariants, checkboxGroupVariants, checkboxIconVariants, checkboxVariants, collapsibleContentVariants, collapsibleTriggerVariants, collapsibleVariants, colorPickerPreviewVariants, colorPickerSwatchVariants, colorPickerTriggerVariants, combinatorToggleVariants, commandEmptyVariants, commandGroupVariants, commandInputIconVariants, commandInputVariants, commandInputWrapperVariants, commandItemVariants, commandListVariants, commandSeparatorVariants, commandShortcutVariants, commandVariants, commentActionsVariants, commentContentVariants, commentEmptyStateVariants, commentHeaderVariants, commentInputContainerVariants, commentItemVariants, commentMentionVariants, commentReactionVariants, commentRepliesVariants, commentSystemVariants, commentThreadLineVariants, commentTimelineMarkerVariants, completedStyles, configSectionVariants, constructCategoryColors, containerVariants, contextMenuCheckboxItemVariants, contextMenuContentVariants, contextMenuIndicatorWrapperVariants, contextMenuItemVariants, contextMenuLabelVariants, contextMenuRadioItemVariants, contextMenuSeparatorVariants, contextMenuShortcutVariants, contextMenuSubContentVariants, contextMenuSubTriggerVariants, dashboardBuilderCanvasVariants, dashboardBuilderDropZoneVariants, dashboardBuilderEmptyStateVariants, dashboardBuilderPropertiesPanelVariants, dashboardBuilderResizeHandleVariants, dashboardBuilderToolbarVariants, dashboardBuilderVariants, dashboardBuilderWidgetCardVariants, dashboardBuilderWidgetLibraryVariants, dashboardBuilderWidgetVariants, dashboardCardContentVariants, dashboardCardFooterVariants, dashboardCardHeaderVariants, dashboardCardTitleVariants, dashboardCardValueVariants, dashboardCardVariants, dashboardContentVariants, dashboardEmptyVariants, dashboardGridVariants, dashboardHeaderVariants, dashboardLoadingVariants, dashboardSidebarVariants, dashboardVariants, dashboardWidgetHeaderVariants, dashboardWidgetVariants, datePickerTriggerVariants, dateRangeInputContainerVariants, dateRangeInputFieldVariants, dateRangePickerFooterVariants, dateRangePickerTriggerVariants, dateRangePresetVariants, dateRangePresetsContainerVariants, defaultChartColors, defaultCountries, defaultPresets, defaultReactions, defaultWidgets, detectCardType, diffLineVariants, dividerContentVariants, dividerLineVariants, dividerWrapperVariants, downloadFile, dragHandleVariants, dragOverlayVariants, draggableVariants, drawerContentBaseVariants, drawerContentVariants, drawerDescriptionVariants, drawerFooterVariants, drawerHandleVariants, drawerHeaderVariants, drawerOverlayVariants, drawerTitleVariants, dropdownMenuCheckboxItemVariants, dropdownMenuContentVariants, dropdownMenuIndicatorWrapperVariants, dropdownMenuItemVariants, dropdownMenuLabelVariants, dropdownMenuRadioItemVariants, dropdownMenuSeparatorVariants, dropdownMenuShortcutVariants, dropdownMenuSubContentVariants, dropdownMenuSubTriggerVariants, droppableVariants, emailValidationIconVariants, emptyMediaVariants, emptyStateStyles, emptyStateVariants, errorBoundaryActionVariants, errorBoundaryCardVariants, errorBoundaryFallbackVariants, errorBoundaryIconVariants, errorBoundaryMessageVariants, errorBoundaryStackVariants, errorBoundaryTitleVariants, errorDefaults, errorMessageIconVariants, errorMessageListVariants, errorMessageVariants, errorStateVariants, eventCalendarAgendaItemVariants, eventCalendarCellVariants, eventCalendarDayNumberVariants, eventCalendarEventVariants, eventCalendarHeaderVariants, eventCalendarTimeSlotVariants, eventCalendarVariants, eventCalendarViewButtonVariants, exportButtonGroupVariants, exportToCSV, exportToExcel, exportToPDF, featureItemIconVariants, featureItemVariants, featuredIconVariants, feedItemVariants, feedVariants, fieldContentVariants, fieldDescriptionVariants, fieldErrorVariants, fieldGroupVariants, fieldLabelVariants, fieldLegendVariants, fieldSeparatorVariants, fieldSetVariants, fieldTitleVariants, fieldVariants, fileDropzoneVariants, filePreviewActionButtonVariants, filePreviewActionsVariants, filePreviewContentVariants, filePreviewFallbackVariants, filePreviewInfoVariants, filePreviewVariants, filterBuilderVariants, filterGroupHeaderVariants, filterGroupVariants, filterPreviewVariants, filterRuleVariants, filterToolbarVariants, findCountryByCode, findCountryByDialCode, flexVariants, formActionsVariants, formDescriptionVariants, formItemVariants, formLabelVariants, formMessageVariants, formValidationVariants, formatCardNumber, formatPhoneNumber, gaugeChartVariants, getCardBrandName, getCardConfig, getCardDigits, getColorClassName, getEventVariant, getInitials, getPhoneDigits, getRatio, getYAxisDomain, gradientSpinnerVariants, gridVariants, groupHeaderStyles, headerActionsVariants, headerBrandVariants, headerContainerVariants, headerNavVariants, headerVariants, headingVariants, heatmapVariants, helpTextIconVariants, helpTextVariants, iconVariants, imageVariants, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupInputVariants, inputGroupTextareaVariants, inputGroupVariants, inputIconVariants, inputOTPCaretInnerStyles, inputOTPCaretStyles, inputOTPContainerVariants, inputOTPFieldDescriptionVariants, inputOTPFieldErrorVariants, inputOTPFieldLabelVariants, inputOTPFieldVariants, inputOTPGroupVariants, inputOTPSlotVariants, inputVariants, inputWrapperVariants, isEditableColumnMeta, isFilterGroup, isFilterRule, isSpanColumnMeta, itemMediaVariants, itemVariants, kanbanAddButtonVariants, kanbanBoardVariants, kanbanCardDescriptionVariants, kanbanCardMetaVariants, kanbanCardTitleVariants, kanbanCardVariants, kanbanColumnContentVariants, kanbanColumnHeaderVariants, kanbanColumnVariants, kanbanDropIndicatorVariants, kanbanLabelVariants, kanbanSearchVariants, kanbanSwimlaneVariants, kbdVariants, linkVariants, listItemVariants, listVariants, loadingStateVariants, loadingStyles, markerBarContainerVariants, markerBarMarkerVariants, markerBarMarkerWrapperVariants, markerBarRangeVariants, mentionSuggestionItemVariants, mentionSuggestionsVariants, menuGroupVariants, menuItemVariants, menuLabelVariants, menuSeparatorVariants, menuShortcutVariants, menuVariants, menubarCheckboxItemVariants, menubarContentVariants, menubarIndicatorWrapperVariants, menubarItemVariants, menubarLabelVariants, menubarRadioItemVariants, menubarSeparatorVariants, menubarShortcutVariants, menubarSubContentVariants, menubarSubTriggerVariants, menubarTriggerVariants, menubarVariants, messageVariants, nativeSelectIconVariants, nativeSelectLeftIconVariants, nativeSelectVariants, nativeSelectWithLeftIconPadding, nativeSelectWrapperVariants, navbarBrandVariants, navbarContainerVariants, navbarContentVariants, navbarItemVariants, navbarLinkVariants, navbarMenuToggleVariants, navbarMenuVariants, navbarVariants, navigationMenuContentVariants, navigationMenuIndicatorArrowVariants, navigationMenuIndicatorVariants, navigationMenuItemVariants, navigationMenuLinkVariants, navigationMenuListVariants, navigationMenuTriggerStyle, navigationMenuVariants, navigationMenuViewportVariants, navigationMenuViewportWrapperVariants, notificationVariants, numberInputPaddingVariants, numberStepperButtonVariants, numberStepperVariants, paginationContentVariants, paginationEllipsisVariants, paginationNextVariants, paginationPreviousVariants, paginationVariants, panelContentVariants, panelFooterVariants, panelHeaderVariants, panelVariants, paragraphVariants, passwordToggleVariants, paymentInputIconVariants, paymentInputInputVariants, paymentInputVariants, phoneInputCountryButtonVariants, phoneInputDropdownVariants, phoneInputInputVariants, phoneInputOptionVariants, phoneInputVariants, portalContainerVariants, portalContentVariants, portalOverlayVariants, previewContainerVariants, previewContentVariants, previewHeaderVariants, priorityStyles, progressBarIndicatorVariants, progressBarLabelVariants, progressBarTooltipVariants, progressBarVariants, progressCircleContainerVariants, progressCircleIndicatorVariants, progressCircleLabelVariants, progressCircleTrackVariants, progressCircleValueVariants, progressStepsVariants, radioButtonIndicatorVariants, radioButtonLabelVariants, radioButtonVariants, radioButtonWrapperVariants, radioCardGroupItemContentVariants, radioCardGroupItemDescriptionVariants, radioCardGroupItemDotVariants, radioCardGroupItemIconVariants, radioCardGroupItemIndicatorVariants, radioCardGroupItemTitleVariants, radioCardGroupItemVariants, radioCardGroupVariants, radioGroupIndicatorVariants, radioGroupItemVariants, radioGroupVariants, ratingItemVariants, ratingVariants, reportGeneratorVariants, stepBadgeVariants as reportStepBadgeVariants, stepIndicatorVariants as reportStepIndicatorVariants, stepItemVariants as reportStepItemVariants, resizableHandleGripVariants, resizableHandleVariants, resizablePanelGroupVariants, resizablePanelVariants, responsiveContainerVariants, richTextEditorBubbleMenuVariants, richTextEditorContentVariants, richTextEditorFloatingMenuVariants, richTextEditorPlaceholderVariants, richTextEditorToolbarButtonVariants, richTextEditorToolbarVariants, richTextEditorVariants, ruleFieldVariants, ruleOperatorVariants, ruleValueVariants, rulesContainerVariants, scrollAreaCornerVariants, scrollAreaVariants, scrollAreaViewportVariants, scrollBarThumbVariants, scrollBarVariants, searchClearButtonVariants, searchEmptyVariants, searchFilterVariants, searchFiltersContainerVariants, searchGroupHeadingVariants, searchHighlightVariants, searchHistoryHeaderVariants, searchIconVariants, searchInputVariants, searchInputWrapperVariants, searchLoadingVariants, searchResultIconVariants, searchResultItemVariants, searchResultsVariants, searchVariants, sectionVariants, selectContentVariants, selectItemVariants, selectLabelVariants, selectScrollButtonVariants, selectSeparatorVariants, selectTriggerVariants, selectedItemStyles, selectedStyles, sheetContentVariants, sheetOverlayVariants, sidebarContainerVariants, sidebarContentVariants, sidebarDesktopVariants, sidebarFooterVariants, sidebarGapVariants, sidebarGroupActionVariants, sidebarGroupContentVariants, sidebarGroupLabelVariants, sidebarGroupVariants, sidebarHeaderVariants, sidebarInnerVariants, sidebarInputVariants, sidebarInsetVariants, sidebarMenuActionShowOnHoverVariants, sidebarMenuActionVariants, sidebarMenuBadgeVariants, sidebarMenuButtonVariants, sidebarMenuItemVariants, sidebarMenuSkeletonVariants, sidebarMenuSubButtonVariants, sidebarMenuSubItemVariants, sidebarMenuSubVariants, sidebarMenuVariants, sidebarMobileVariants, sidebarNonCollapsibleVariants, sidebarProviderVariants, sidebarRailButtonVariants, sidebarRailVariants, sidebarSeparatorVariants, sidebarTriggerVariants, skeletonLoaderVariants, skipLinkVariants, skipLinksListInnerVariants, skipLinksListItemVariants, skipLinksListVariants, sliderLabelVariants, sliderMarkContainerVariants, sliderMarkLabelVariants, sliderMarkTickVariants, sliderMarkVariants, sliderRangeVariants, sliderRootVariants, sliderThumbVariants, sliderTooltipVariants, sliderTrackVariants, sortableItemVariants, sortableListHandleVariants, sortableListItemVariants, sortableListOverlayVariants, sortableListVariants, spacerVariants, spinnerVariants, splitButtonVariants, stackVariants, statusConfig, statusIndicatorVariants, statusStyles, stepBarSegmentVariants, stepCircleVariants, stepConnectorHorizontalVariants, stepConnectorVerticalVariants, stepDescriptionVariants, stepDotVariants, stepItemVariants$1 as stepItemVariants, stepLabelVariants, stepperConnectorHorizontalVariants, stepperConnectorVerticalVariants, stepperDescriptionVariants, stepperIndicatorVariants, stepperItemVariants, stepperLabelVariants, stepperVariants, successMessageVariants, switchThumbVariants, switchVariants, tabNavigationLinkVariants, tabNavigationVariants, tabPanelListVariants, tabPanelRootVariants, tabPanelTriggerVariants, tabPanelVariants, tableToCSV, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tabsVariants, tagCheckboxVariants, tagCountVariants, tagGroupVariants, tagVariants, tagsInputInputVariants, tagsInputVariants, taskCardVariants, taskListHeaderVariants, taskListItemVariants, taskListTitleVariants, taskListVariants, taskStatusColorVariants, taskStatusIconVariants, taskStatusLabelVariants, taskStatusMenuItemVariants, taskStatusTriggerVariants, taskStatusVariants, templateCardVariants, templateGridVariants, textVariants, textareaFieldDescriptionVariants, textareaFieldErrorVariants, textareaFieldLabelVariants, textareaFieldVariants, textareaVariants, thumbnailVariants, timeItemVariants, timePickerTriggerVariants, timeScrollListVariants, timelineItemVariants, timelineMarkerVariants, timelineVariants, toggleGroupItemVariants, toggleVariants, toolbarButtonVariants, toolbarLinkVariants, toolbarSeparatorVariants, toolbarToggleGroupVariants, toolbarToggleItemVariants, toolbarVariants, tooltipArrowVariants, tooltipContentVariants, unreadDotVariants, urlLinkIconVariants, urlValidationIconVariants, useButtonGroup, useFormField, useIsMobile, useMediaQuery, useOnWindowResize, useSidebar, useTagGroup, validateCardNumber, versionBadgeVariants, versionControlVariants, versionItemVariants, versionTimelineConnectorVariants, versionTimelineMarkerVariants, wizardActionsVariants, wizardContentVariants, wizardStepContentVariants, wizardStepperVariants, wizardVariants };