@etus/ui 0.4.0-beta.14 → 0.4.0-beta.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/{chunk-4KOJTZVU.js → chunk-FCIF6H6E.js} +3 -3
  2. package/dist/{chunk-4KOJTZVU.js.map → chunk-FCIF6H6E.js.map} +1 -1
  3. package/dist/chunk-KDJCZXLB.js +91 -0
  4. package/dist/chunk-KDJCZXLB.js.map +1 -0
  5. package/dist/{chunk-P27ERD6W.js → chunk-MDIXY44D.js} +2 -2
  6. package/dist/{chunk-P27ERD6W.js.map → chunk-MDIXY44D.js.map} +1 -1
  7. package/dist/chunk-TP4PDKFE.js +3 -0
  8. package/dist/{chunk-IXJHHR3Y.js.map → chunk-TP4PDKFE.js.map} +1 -1
  9. package/dist/components/advanced/ReportBuilder/index.js +2 -2
  10. package/dist/components/advanced/index.js +6 -6
  11. package/dist/components/data-display/DataTable/index.js +1 -1
  12. package/dist/components/data-display/index.js +16 -16
  13. package/dist/components/feedback/index.js +4 -4
  14. package/dist/components/forms/index.js +6 -6
  15. package/dist/components/index.js +87 -86
  16. package/dist/components/layout/index.js +1 -1
  17. package/dist/components/navigation/index.js +7 -7
  18. package/dist/components/primitives/ArrowAnimated/index.js +2 -89
  19. package/dist/components/primitives/ArrowAnimated/index.js.map +1 -1
  20. package/dist/components/primitives/index.js +14 -13
  21. package/dist/components/workflow/index.js +6 -6
  22. package/dist/index.d.ts +326 -270
  23. package/dist/index.js +87 -86
  24. package/package.json +1 -1
  25. package/dist/chunk-IXJHHR3Y.js +0 -3
  26. package/dist/components/data-display/DashboardFilterbar/index.js +0 -111
  27. package/dist/components/data-display/DashboardFilterbar/index.js.map +0 -1
  28. package/dist/components/navigation/MobileSidebar/index.js +0 -190
  29. package/dist/components/navigation/MobileSidebar/index.js.map +0 -1
  30. package/dist/components/navigation/UserProfileDropdown/index.js +0 -224
  31. package/dist/components/navigation/UserProfileDropdown/index.js.map +0 -1
  32. package/dist/components/navigation/WorkspaceDropdown/index.js +0 -192
  33. package/dist/components/navigation/WorkspaceDropdown/index.js.map +0 -1
package/dist/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as class_variance_authority_types from 'class-variance-authority/types';
3
+ import { VariantProps } from 'class-variance-authority';
4
+ export { VariantProps as GaugeChartVariantProps } from 'class-variance-authority';
2
5
  import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
3
6
  import * as React$1 from 'react';
4
7
  import React__default, { ComponentProps, ReactNode, CSSProperties, Ref, ComponentPropsWithoutRef, ComponentRef, MouseEvent as MouseEvent$1, HTMLAttributes, ReactElement, RefObject, ComponentType, ErrorInfo, Component, SVGProps } from 'react';
5
- import * as class_variance_authority_types from 'class-variance-authority/types';
6
8
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
7
- import { VariantProps } from 'class-variance-authority';
8
- export { VariantProps as GaugeChartVariantProps } from 'class-variance-authority';
9
9
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
10
10
  import { LucideIcon, LucideProps } from 'lucide-react';
11
11
  export { LucideIcon, LucideProps } from 'lucide-react';
@@ -58,6 +58,62 @@ import { Editor, JSONContent } from '@tiptap/react';
58
58
  export { cn } from './lib/utils.js';
59
59
  import 'clsx';
60
60
 
61
+ /**
62
+ * ArrowAnimated style variants using CVA
63
+ */
64
+ declare const arrowAnimatedVariants: (props?: ({
65
+ size?: "sm" | "md" | "lg" | null | undefined;
66
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
67
+ declare const arrowAnimatedLineVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
68
+ declare const arrowAnimatedHeadVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
69
+ declare const arrowAnimatedHeadTransforms: {
70
+ readonly right: "group-hover:translate-x-[3px]";
71
+ readonly left: "group-hover:-translate-x-[3px]";
72
+ readonly up: "group-hover:-translate-y-[3px]";
73
+ readonly down: "group-hover:translate-y-[3px]";
74
+ };
75
+
76
+ /**
77
+ * Props for ArrowAnimated
78
+ */
79
+ interface ArrowAnimatedProps extends React.SVGProps<SVGSVGElement>, VariantProps<typeof arrowAnimatedVariants> {
80
+ /** Additional CSS classes */
81
+ className?: string;
82
+ /** Arrow direction */
83
+ direction?: "down" | "left" | "right" | "up";
84
+ }
85
+
86
+ /**
87
+ * ArrowAnimated - Animated arrow icon for CTAs and links
88
+ *
89
+ * An SVG arrow that animates on hover (when parent has `group` class).
90
+ * The line fades in and the arrow head translates in the direction of the arrow.
91
+ *
92
+ * @example
93
+ * ```tsx
94
+ * // Basic usage (requires parent with 'group' class)
95
+ * <a href="/link" className="group flex items-center">
96
+ * Learn more
97
+ * <ArrowAnimated className="ml-1" />
98
+ * </a>
99
+ *
100
+ * // Different directions
101
+ * <ArrowAnimated direction="right" />
102
+ * <ArrowAnimated direction="left" />
103
+ * <ArrowAnimated direction="up" />
104
+ * <ArrowAnimated direction="down" />
105
+ *
106
+ * // Different sizes
107
+ * <ArrowAnimated size="sm" />
108
+ * <ArrowAnimated size="md" />
109
+ * <ArrowAnimated size="lg" />
110
+ * ```
111
+ */
112
+ declare function ArrowAnimated({ direction, size, className, ...props }: ArrowAnimatedProps): react_jsx_runtime.JSX.Element;
113
+ declare namespace ArrowAnimated {
114
+ var displayName: string;
115
+ }
116
+
61
117
  declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): react_jsx_runtime.JSX.Element;
62
118
 
63
119
  /**
@@ -189,7 +245,7 @@ type AvatarSize = NonNullable<VariantProps<typeof avatarVariants>["size"]>;
189
245
  type AvatarShape = NonNullable<VariantProps<typeof avatarVariants>["shape"]>;
190
246
 
191
247
  declare const avatarVariants: (props?: ({
192
- size?: "default" | "xs" | "sm" | "lg" | "xl" | "3xl" | "4xl" | null | undefined;
248
+ size?: "sm" | "lg" | "default" | "xs" | "xl" | "3xl" | "4xl" | null | undefined;
193
249
  shape?: "circle" | null | undefined;
194
250
  bordered?: boolean | null | undefined;
195
251
  interactive?: boolean | null | undefined;
@@ -203,7 +259,7 @@ declare function AvatarFallback({ className, colorScheme, ...props }: AvatarFall
203
259
 
204
260
  declare const avatarStatusVariants: (props?: ({
205
261
  status?: "online" | "offline" | "busy" | "away" | null | undefined;
206
- size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
262
+ size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
207
263
  } & class_variance_authority_types.ClassProp) | undefined) => string;
208
264
  interface AvatarStatusProps extends React$1.ComponentProps<"span"> {
209
265
  /**
@@ -221,7 +277,7 @@ declare function AvatarStatus({ className, status, size, ...props }: AvatarStatu
221
277
 
222
278
  declare const avatarBadgeVariants: (props?: ({
223
279
  variant?: "company" | "verified" | null | undefined;
224
- size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
280
+ size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
225
281
  } & class_variance_authority_types.ClassProp) | undefined) => string;
226
282
  interface AvatarBadgeProps extends React$1.ComponentProps<"span"> {
227
283
  /**
@@ -238,7 +294,7 @@ interface AvatarBadgeProps extends React$1.ComponentProps<"span"> {
238
294
  declare function AvatarBadge({ className, variant, size, children, ...props }: AvatarBadgeProps): react_jsx_runtime.JSX.Element;
239
295
 
240
296
  declare const avatarGroupVariants: (props?: ({
241
- size?: "default" | "xs" | "sm" | "lg" | "xl" | "3xl" | "4xl" | null | undefined;
297
+ size?: "sm" | "lg" | "default" | "xs" | "xl" | "3xl" | "4xl" | null | undefined;
242
298
  } & class_variance_authority_types.ClassProp) | undefined) => string;
243
299
  interface AvatarGroupProps extends React$1.ComponentProps<"div"> {
244
300
  /**
@@ -321,7 +377,7 @@ declare function getInitials(name: string): string;
321
377
  declare function AvatarLabelGroup({ className, src, alt, name, description, size, status, badge, interactive, onClick, tooltip, ...props }: AvatarLabelGroupProps): react_jsx_runtime.JSX.Element;
322
378
 
323
379
  declare const avatarAddButtonVariants: (props?: ({
324
- size?: "default" | "xs" | "sm" | "lg" | "xl" | "3xl" | "4xl" | null | undefined;
380
+ size?: "sm" | "lg" | "default" | "xs" | "xl" | "3xl" | "4xl" | null | undefined;
325
381
  } & class_variance_authority_types.ClassProp) | undefined) => string;
326
382
  interface AvatarAddButtonProps extends React$1.ComponentProps<"button"> {
327
383
  size?: "3xl" | "4xl" | "default" | "lg" | "sm" | "xl" | "xs";
@@ -458,7 +514,7 @@ type BadgeLegacyVariant = NonNullable<BadgeProps["variant"]>;
458
514
  declare const badgeVariants: (props?: ({
459
515
  type?: "pill-color" | "pill-outline" | "badge-color" | "badge-outline" | "badge-modern" | null | undefined;
460
516
  color?: "destructive" | "primary" | "secondary" | "success" | "warning" | "info" | "tip" | "muted" | null | undefined;
461
- size?: "default" | "sm" | "lg" | null | undefined;
517
+ size?: "sm" | "lg" | "default" | null | undefined;
462
518
  } & class_variance_authority_types.ClassProp) | undefined) => string;
463
519
  declare function Badge({ className, type, color, size, disabled, dot, icon, leadingIcon, trailingIcon, country, avatar, iconOnly, onDismiss, dismissLabel, interactive, tooltip, variant, asChild, children, onClick, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
464
520
 
@@ -580,8 +636,8 @@ type ButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]>;
580
636
  declare const buttonVariants: (props?: ({
581
637
  fullWidth?: boolean | null | undefined;
582
638
  variant?: "link" | "default" | "destructive" | "primary" | "secondary" | "success" | "warning" | "outline" | "dashed" | "secondary-gray" | "secondary-color" | "ghost" | "link-gray" | "link-color" | "tertiary-gray" | "tertiary-color" | "unstyled" | null | undefined;
583
- size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | null | undefined;
584
- shape?: "circle" | "square" | "default" | null | undefined;
639
+ size?: "sm" | "lg" | "default" | "icon" | "icon-sm" | null | undefined;
640
+ shape?: "square" | "circle" | "default" | null | undefined;
585
641
  } & class_variance_authority_types.ClassProp) | undefined) => string;
586
642
  declare function Button({ className, variant, tone, size, shape, fullWidth, asChild, badge, badgeColor, badgeSize, loading, loadingText, icon, leftIcon, rightIcon, disabled, children, tooltip, onClick, onFocus, onBlur, onKeyDown, "data-id": dataId, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
587
643
 
@@ -664,7 +720,7 @@ declare const dividerLineVariants: (props?: ({
664
720
  * CVA variants for the content container
665
721
  */
666
722
  declare const dividerContentVariants: (props?: ({
667
- type?: "button" | "line" | "text" | "heading" | "button-group" | "button-group-icon" | "button-icon" | null | undefined;
723
+ type?: "button" | "heading" | "line" | "text" | "button-group" | "button-group-icon" | "button-icon" | null | undefined;
668
724
  visualStyle?: "background-fill" | "dual-line" | "single-line" | null | undefined;
669
725
  } & class_variance_authority_types.ClassProp) | undefined) => string;
670
726
  /**
@@ -672,7 +728,7 @@ declare const dividerContentVariants: (props?: ({
672
728
  */
673
729
  declare const dividerWrapperVariants: (props?: ({
674
730
  orientation?: "vertical" | "horizontal" | null | undefined;
675
- labelPosition?: "center" | "left" | "right" | null | undefined;
731
+ labelPosition?: "left" | "right" | "center" | null | undefined;
676
732
  } & class_variance_authority_types.ClassProp) | undefined) => string;
677
733
 
678
734
  /**
@@ -835,7 +891,7 @@ declare const buttonGroupVariants: (props?: ({
835
891
  orientation?: "vertical" | "horizontal" | null | undefined;
836
892
  } & class_variance_authority_types.ClassProp) | undefined) => string;
837
893
  declare const buttonGroupItemVariants: (props?: ({
838
- size?: "sm" | "lg" | "md" | null | undefined;
894
+ size?: "sm" | "md" | "lg" | null | undefined;
839
895
  iconMode?: "none" | "dot" | "leading" | "only" | null | undefined;
840
896
  current?: boolean | null | undefined;
841
897
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -956,7 +1012,7 @@ type ConfirmButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]
956
1012
  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;
957
1013
 
958
1014
  declare const featuredIconVariants: (props?: ({
959
- size?: "xs" | "sm" | "lg" | "xl" | "md" | "2xl" | null | undefined;
1015
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | null | undefined;
960
1016
  shape?: "circle" | "default" | null | undefined;
961
1017
  tone?: "default" | "destructive" | "success" | "warning" | "info" | "brand" | null | undefined;
962
1018
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -974,7 +1030,7 @@ type FeaturedIconTone = NonNullable<VariantProps<typeof featuredIconVariants>["t
974
1030
  declare function FeaturedIcon({ className, size, shape, tone, children, ...props }: FeaturedIconProps): react_jsx_runtime.JSX.Element;
975
1031
 
976
1032
  declare const folderStackVariants: (props?: ({
977
- size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
1033
+ size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
978
1034
  interactive?: boolean | null | undefined;
979
1035
  active?: boolean | null | undefined;
980
1036
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1062,9 +1118,9 @@ interface HeadingProps extends Omit<ComponentProps<"h1">, "color">, VariantProps
1062
1118
 
1063
1119
  declare const headingVariants: (props?: ({
1064
1120
  level?: 1 | 4 | 3 | 2 | 5 | 6 | null | undefined;
1065
- size?: "base" | "sm" | "lg" | "xl" | "3xl" | "4xl" | "2xl" | null | undefined;
1121
+ size?: "sm" | "lg" | "base" | "xl" | "3xl" | "4xl" | "2xl" | null | undefined;
1066
1122
  weight?: "bold" | "normal" | "medium" | "semibold" | "extrabold" | null | undefined;
1067
- align?: "center" | "left" | "right" | null | undefined;
1123
+ align?: "left" | "right" | "center" | null | undefined;
1068
1124
  color?: "default" | "destructive" | "primary" | "muted" | null | undefined;
1069
1125
  gradient?: "none" | "primary" | "secondary" | "accent" | "rainbow" | null | undefined;
1070
1126
  truncate?: boolean | null | undefined;
@@ -1126,7 +1182,7 @@ type IconSize = NonNullable<VariantProps<typeof iconVariants>["size"]>;
1126
1182
 
1127
1183
  declare const iconVariants: (props?: ({
1128
1184
  variant?: "default" | "destructive" | "primary" | "success" | "warning" | "muted" | null | undefined;
1129
- size?: "xs" | "sm" | "lg" | "xl" | "md" | "2xl" | null | undefined;
1185
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | null | undefined;
1130
1186
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1131
1187
  declare function Icon({ name: IconComponent, variant, size, spin, pulse, decorative, className, "aria-label": ariaLabel, "aria-hidden": ariaHidden, role, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1132
1188
 
@@ -1189,8 +1245,8 @@ type ImageVariant = NonNullable<VariantProps<typeof imageVariants>["variant"]>;
1189
1245
  type ImageSize = NonNullable<VariantProps<typeof imageVariants>["size"]>;
1190
1246
 
1191
1247
  declare const imageVariants: (props?: ({
1192
- variant?: "circle" | "square" | "default" | "rounded" | null | undefined;
1193
- size?: "xs" | "sm" | "lg" | "xl" | "md" | "full" | null | undefined;
1248
+ variant?: "square" | "circle" | "default" | "rounded" | null | undefined;
1249
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "full" | null | undefined;
1194
1250
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1195
1251
  /**
1196
1252
  * Image - A component for displaying images with lazy loading, fallback, and aspect ratio support.
@@ -1221,7 +1277,7 @@ declare function Image(props: ImageProps): react_jsx_runtime.JSX.Element;
1221
1277
  * Kbd variants using CVA
1222
1278
  */
1223
1279
  declare const kbdVariants: (props?: ({
1224
- size?: "xs" | "sm" | "lg" | "md" | null | undefined;
1280
+ size?: "sm" | "md" | "lg" | "xs" | null | undefined;
1225
1281
  variant?: "default" | "outline" | "ghost" | null | undefined;
1226
1282
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1227
1283
  type KbdVariants = VariantProps<typeof kbdVariants>;
@@ -1399,7 +1455,7 @@ type LinkUnderline = NonNullable<VariantProps<typeof linkVariants>["underline"]>
1399
1455
 
1400
1456
  declare const linkVariants: (props?: ({
1401
1457
  variant?: "nav" | "default" | "inline" | "muted" | "unstyled" | "subtle" | null | undefined;
1402
- size?: "inherit" | "default" | "xs" | "sm" | "lg" | null | undefined;
1458
+ size?: "sm" | "lg" | "inherit" | "default" | "xs" | null | undefined;
1403
1459
  underline?: "none" | "always" | "hover" | null | undefined;
1404
1460
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1405
1461
  declare function Link({ className, variant, size, underline, asChild, external, leftIcon, rightIcon, showExternalIcon, children, onClick, href, rel, "data-id": dataId, ...props }: LinkProps): react_jsx_runtime.JSX.Element;
@@ -1475,10 +1531,10 @@ interface ParagraphProps extends Omit<ComponentProps<"p">, "color">, VariantProp
1475
1531
  }
1476
1532
 
1477
1533
  declare const paragraphVariants: (props?: ({
1478
- size?: "base" | "xs" | "sm" | "lg" | "xl" | null | undefined;
1534
+ size?: "sm" | "lg" | "base" | "xs" | "xl" | null | undefined;
1479
1535
  weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
1480
1536
  color?: "default" | "destructive" | "primary" | "success" | "muted" | null | undefined;
1481
- align?: "center" | "left" | "right" | "justify" | null | undefined;
1537
+ align?: "left" | "right" | "center" | "justify" | null | undefined;
1482
1538
  leading?: "normal" | "loose" | "tight" | "snug" | "relaxed" | null | undefined;
1483
1539
  spacing?: "none" | "normal" | "tight" | "relaxed" | null | undefined;
1484
1540
  prose?: boolean | null | undefined;
@@ -1508,7 +1564,7 @@ declare function Paragraph({ className, size, weight, color, align, leading, spa
1508
1564
  * plate via `[&_svg]:size-full`.
1509
1565
  */
1510
1566
  declare const paymentMethodIconVariants: (props?: ({
1511
- size?: "sm" | "lg" | "md" | null | undefined;
1567
+ size?: "sm" | "md" | "lg" | null | undefined;
1512
1568
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1513
1569
 
1514
1570
  /**
@@ -1675,7 +1731,7 @@ declare function ProgressBar({ className, value, max, size, color, label, format
1675
1731
  * ProgressBar root (track) variants
1676
1732
  */
1677
1733
  declare const progressBarVariants: (props?: ({
1678
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
1734
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
1679
1735
  color?: "default" | "primary" | "secondary" | "success" | "warning" | "info" | "error" | null | undefined;
1680
1736
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1681
1737
  /**
@@ -1688,7 +1744,7 @@ declare const progressBarIndicatorVariants: (props?: ({
1688
1744
  * Label container variants for different positions
1689
1745
  */
1690
1746
  declare const progressBarLabelVariants: (props?: ({
1691
- position?: "none" | "bottom" | "right" | "bottom-floating" | "top-floating" | null | undefined;
1747
+ position?: "right" | "none" | "bottom" | "bottom-floating" | "top-floating" | null | undefined;
1692
1748
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1693
1749
  /**
1694
1750
  * Floating tooltip variants (for top-floating and bottom-floating)
@@ -1904,7 +1960,7 @@ declare const PROGRESS_CIRCLE_SIZES: {
1904
1960
  * Uses CSS custom properties from @etus/tokens for sizing
1905
1961
  */
1906
1962
  declare const progressCircleContainerVariants: (props?: ({
1907
- size?: "xs" | "sm" | "lg" | "md" | "xxs" | null | undefined;
1963
+ size?: "sm" | "md" | "lg" | "xs" | "xxs" | null | undefined;
1908
1964
  shape?: "circle" | "half-circle" | null | undefined;
1909
1965
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1910
1966
  /**
@@ -1924,13 +1980,13 @@ declare const progressCircleIndicatorVariants: (props?: ({
1924
1980
  * Value text variants (percentage in center)
1925
1981
  */
1926
1982
  declare const progressCircleValueVariants: (props?: ({
1927
- size?: "xs" | "sm" | "lg" | "md" | "xxs" | null | undefined;
1983
+ size?: "sm" | "md" | "lg" | "xs" | "xxs" | null | undefined;
1928
1984
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1929
1985
  /**
1930
1986
  * Label text variants (below percentage)
1931
1987
  */
1932
1988
  declare const progressCircleLabelVariants: (props?: ({
1933
- size?: "xs" | "sm" | "lg" | "md" | "xxs" | null | undefined;
1989
+ size?: "sm" | "md" | "lg" | "xs" | "xxs" | null | undefined;
1934
1990
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1935
1991
  type ProgressCircleContainerVariants = VariantProps<typeof progressCircleContainerVariants>;
1936
1992
  type ProgressCircleTrackVariants = VariantProps<typeof progressCircleTrackVariants>;
@@ -1940,8 +1996,8 @@ type ProgressCircleIndicatorVariants = VariantProps<typeof progressCircleIndicat
1940
1996
  * SkeletonLoader variants using CVA
1941
1997
  */
1942
1998
  declare const skeletonLoaderVariants: (props?: ({
1943
- shape?: "circle" | "text" | "heading" | "square" | "rectangle" | "pill" | null | undefined;
1944
- size?: "xs" | "sm" | "lg" | "xl" | "md" | "full" | null | undefined;
1999
+ shape?: "heading" | "square" | "circle" | "text" | "rectangle" | "pill" | null | undefined;
2000
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "full" | null | undefined;
1945
2001
  animation?: "none" | "pulse" | "shimmer" | "wave" | null | undefined;
1946
2002
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1947
2003
  type SkeletonLoaderVariants = VariantProps<typeof skeletonLoaderVariants>;
@@ -2070,7 +2126,7 @@ interface SpacerProps extends Omit<ComponentProps<"div">, "style">, Omit<Variant
2070
2126
  }
2071
2127
 
2072
2128
  declare const spacerVariants: (props?: ({
2073
- size?: "xs" | "sm" | "lg" | "xl" | "md" | "2xl" | null | undefined;
2129
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | null | undefined;
2074
2130
  axis?: "vertical" | "both" | "horizontal" | null | undefined;
2075
2131
  flex?: "none" | "grow" | "shrink" | null | undefined;
2076
2132
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2103,14 +2159,14 @@ declare function Spacer({ className, size, axis, flex, style, ref, ...props }: S
2103
2159
  * Spinner variants using CVA
2104
2160
  */
2105
2161
  declare const spinnerVariants: (props?: ({
2106
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
2162
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
2107
2163
  color?: "current" | "default" | "primary" | "secondary" | "success" | "warning" | "error" | null | undefined;
2108
2164
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2109
2165
  /**
2110
2166
  * Gradient spinner container variants
2111
2167
  */
2112
2168
  declare const gradientSpinnerVariants: (props?: ({
2113
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
2169
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
2114
2170
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2115
2171
  type SpinnerVariants = VariantProps<typeof spinnerVariants>;
2116
2172
  type GradientSpinnerVariants = VariantProps<typeof gradientSpinnerVariants>;
@@ -2307,7 +2363,7 @@ type SplitButtonSize = NonNullable<VariantProps<typeof splitButtonVariants>["siz
2307
2363
  */
2308
2364
  declare const splitButtonVariants: (props?: ({
2309
2365
  variant?: "default" | "destructive" | "primary" | "secondary" | "outline" | "ghost" | null | undefined;
2310
- size?: "sm" | "lg" | "md" | null | undefined;
2366
+ size?: "sm" | "md" | "lg" | null | undefined;
2311
2367
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2312
2368
 
2313
2369
  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;
@@ -2320,7 +2376,7 @@ declare function SplitButton({ className, variant, size, children, onClick, menu
2320
2376
  declare const statusIndicatorVariants: (props?: ({
2321
2377
  variant?: "destructive" | "success" | "warning" | "info" | "error" | "neutral" | null | undefined;
2322
2378
  shape?: "dot" | "bar-vertical" | "bar-horizontal" | null | undefined;
2323
- size?: "default" | "xs" | "sm" | "lg" | "xl" | "2xl" | null | undefined;
2379
+ size?: "sm" | "lg" | "default" | "xs" | "xl" | "2xl" | null | undefined;
2324
2380
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2325
2381
 
2326
2382
  /**
@@ -2359,7 +2415,7 @@ declare function StatusIndicator({ className, variant, shape, size, pulse, label
2359
2415
  * @see https://cva.style/docs
2360
2416
  */
2361
2417
  declare const tagVariants: (props?: ({
2362
- size?: "sm" | "lg" | "md" | null | undefined;
2418
+ size?: "sm" | "md" | "lg" | null | undefined;
2363
2419
  checked?: boolean | null | undefined;
2364
2420
  disabled?: boolean | null | undefined;
2365
2421
  interactive?: boolean | null | undefined;
@@ -2368,13 +2424,13 @@ declare const tagVariants: (props?: ({
2368
2424
  * Tag count pill styles
2369
2425
  */
2370
2426
  declare const tagCountVariants: (props?: ({
2371
- size?: "sm" | "lg" | "md" | null | undefined;
2427
+ size?: "sm" | "md" | "lg" | null | undefined;
2372
2428
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2373
2429
  /**
2374
2430
  * Tag checkbox styles
2375
2431
  */
2376
2432
  declare const tagCheckboxVariants: (props?: ({
2377
- size?: "sm" | "lg" | "md" | null | undefined;
2433
+ size?: "sm" | "md" | "lg" | null | undefined;
2378
2434
  checked?: boolean | null | undefined;
2379
2435
  disabled?: boolean | null | undefined;
2380
2436
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2383,8 +2439,8 @@ declare const tagCheckboxVariants: (props?: ({
2383
2439
  */
2384
2440
  declare const tagGroupVariants: (props?: ({
2385
2441
  layout?: "inline" | "wrap" | "stack" | null | undefined;
2386
- gap?: "none" | "xs" | "sm" | "lg" | "md" | null | undefined;
2387
- align?: "center" | "end" | "start" | null | undefined;
2442
+ gap?: "sm" | "md" | "lg" | "none" | "xs" | null | undefined;
2443
+ align?: "end" | "start" | "center" | null | undefined;
2388
2444
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2389
2445
 
2390
2446
  /**
@@ -2544,8 +2600,8 @@ declare namespace TagGroup {
2544
2600
  }
2545
2601
 
2546
2602
  declare const textVariants: (props?: ({
2547
- variant?: "body" | "code" | "small" | "muted" | "large" | "display1" | "display2" | "display3" | "p1" | "p2" | "p3" | "caption1" | "caption2" | "lead" | null | undefined;
2548
- size?: "base" | "xs" | "sm" | "lg" | "xl" | "3xl" | "4xl" | "2xl" | null | undefined;
2603
+ variant?: "small" | "body" | "code" | "muted" | "large" | "display1" | "display2" | "display3" | "p1" | "p2" | "p3" | "caption1" | "caption2" | "lead" | null | undefined;
2604
+ size?: "sm" | "lg" | "base" | "xs" | "xl" | "3xl" | "4xl" | "2xl" | null | undefined;
2549
2605
  weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
2550
2606
  color?: "default" | "muted" | null | undefined;
2551
2607
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2691,9 +2747,9 @@ type ThumbnailSizeVariant = NonNullable<VariantProps<typeof thumbnailVariants>["
2691
2747
  type ThumbnailRoundedVariant = NonNullable<VariantProps<typeof thumbnailVariants>["rounded"]>;
2692
2748
 
2693
2749
  declare const thumbnailVariants: (props?: ({
2694
- size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
2695
- aspectRatio?: "video" | "square" | "wide" | null | undefined;
2696
- rounded?: "none" | "default" | "sm" | "lg" | "full" | null | undefined;
2750
+ size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
2751
+ aspectRatio?: "square" | "video" | "wide" | null | undefined;
2752
+ rounded?: "sm" | "lg" | "none" | "default" | "full" | null | undefined;
2697
2753
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2698
2754
  /**
2699
2755
  * Thumbnail - A small preview component with `image` (loads src) or `tint` (colored tile) modes.
@@ -2909,7 +2965,7 @@ type ToggleItemProps = ComponentProps<typeof ToggleGroupPrimitive.Item> & Varian
2909
2965
 
2910
2966
  declare const toggleVariants: (props?: ({
2911
2967
  variant?: "default" | "outline" | null | undefined;
2912
- size?: "default" | "sm" | "lg" | "md" | null | undefined;
2968
+ size?: "sm" | "md" | "lg" | "default" | null | undefined;
2913
2969
  shape?: "rounded" | "pill" | null | undefined;
2914
2970
  connected?: boolean | null | undefined;
2915
2971
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -3141,10 +3197,10 @@ type CheckboxState = "indeterminate" | boolean;
3141
3197
  declare function Checkbox({ className, size, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
3142
3198
 
3143
3199
  declare const checkboxVariants: (props?: ({
3144
- size?: "sm" | "lg" | "md" | null | undefined;
3200
+ size?: "sm" | "md" | "lg" | null | undefined;
3145
3201
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3146
3202
  declare const checkboxIconVariants: (props?: ({
3147
- size?: "sm" | "lg" | "md" | null | undefined;
3203
+ size?: "sm" | "md" | "lg" | null | undefined;
3148
3204
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3149
3205
  type CheckboxVariantProps = VariantProps<typeof checkboxVariants>;
3150
3206
 
@@ -3324,13 +3380,13 @@ declare const checkboxGroupItemWrapperVariants: (props?: ({
3324
3380
  hasDescription?: boolean | null | undefined;
3325
3381
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3326
3382
  declare const checkboxGroupLabelVariants: (props?: ({
3327
- size?: "sm" | "lg" | "md" | null | undefined;
3383
+ size?: "sm" | "md" | "lg" | null | undefined;
3328
3384
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3329
3385
  declare const checkboxGroupDescriptionVariants: (props?: ({
3330
- size?: "sm" | "lg" | "md" | null | undefined;
3386
+ size?: "sm" | "md" | "lg" | null | undefined;
3331
3387
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3332
3388
  declare const checkboxGroupHeaderVariants: (props?: ({
3333
- size?: "sm" | "lg" | "md" | null | undefined;
3389
+ size?: "sm" | "md" | "lg" | null | undefined;
3334
3390
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3335
3391
  type CheckboxGroupVariantProps = VariantProps<typeof checkboxGroupVariants>;
3336
3392
  type CheckboxGroupItemWrapperVariantProps = VariantProps<typeof checkboxGroupItemWrapperVariants>;
@@ -3432,20 +3488,20 @@ declare function ColorPicker({ className, value, defaultValue, placeholder, disa
3432
3488
  * ColorPicker trigger variant styles using CVA
3433
3489
  */
3434
3490
  declare const colorPickerTriggerVariants: (props?: ({
3435
- size?: "sm" | "lg" | "md" | null | undefined;
3491
+ size?: "sm" | "md" | "lg" | null | undefined;
3436
3492
  variant?: "default" | "filled" | "flushed" | null | undefined;
3437
3493
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3438
3494
  /**
3439
3495
  * ColorPicker swatch styles using CVA
3440
3496
  */
3441
3497
  declare const colorPickerSwatchVariants: (props?: ({
3442
- size?: "sm" | "lg" | "md" | null | undefined;
3498
+ size?: "sm" | "md" | "lg" | null | undefined;
3443
3499
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3444
3500
  /**
3445
3501
  * ColorPicker preview swatch (in trigger) styles
3446
3502
  */
3447
3503
  declare const colorPickerPreviewVariants: (props?: ({
3448
- size?: "sm" | "lg" | "md" | null | undefined;
3504
+ size?: "sm" | "md" | "lg" | null | undefined;
3449
3505
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3450
3506
  type ColorPickerTriggerVariantProps = VariantProps<typeof colorPickerTriggerVariants>;
3451
3507
  type ColorPickerSwatchVariantProps = VariantProps<typeof colorPickerSwatchVariants>;
@@ -3749,7 +3805,7 @@ declare function DatePicker({ ref, className, align, dialogLabel, value, default
3749
3805
  * DatePicker trigger variant styles using CVA
3750
3806
  */
3751
3807
  declare const datePickerTriggerVariants: (props?: ({
3752
- size?: "sm" | "lg" | "md" | null | undefined;
3808
+ size?: "sm" | "md" | "lg" | null | undefined;
3753
3809
  variant?: "default" | "filled" | "flushed" | null | undefined;
3754
3810
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3755
3811
  type DatePickerTriggerVariantProps = VariantProps<typeof datePickerTriggerVariants>;
@@ -3809,7 +3865,7 @@ declare function CalendarDayButton({ className, day, modifiers, children, ...pro
3809
3865
  * Calendar container styles
3810
3866
  */
3811
3867
  declare const calendarContainerVariants: (props?: ({
3812
- size?: "default" | "sm" | "lg" | null | undefined;
3868
+ size?: "sm" | "lg" | "default" | null | undefined;
3813
3869
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3814
3870
  /**
3815
3871
  * Calendar day button styles
@@ -3999,7 +4055,7 @@ declare const defaultPresets: DateRangePreset[];
3999
4055
  * DateRangePicker trigger variant styles using CVA
4000
4056
  */
4001
4057
  declare const dateRangePickerTriggerVariants: (props?: ({
4002
- size?: "sm" | "lg" | "md" | null | undefined;
4058
+ size?: "sm" | "md" | "lg" | null | undefined;
4003
4059
  variant?: "default" | "outline" | "ghost" | null | undefined;
4004
4060
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4005
4061
  type DateRangePickerTriggerVariantProps = VariantProps<typeof dateRangePickerTriggerVariants>;
@@ -4024,7 +4080,7 @@ declare const dateRangeInputContainerVariants: (props?: ({} & class_variance_aut
4024
4080
  * Range input field styles
4025
4081
  */
4026
4082
  declare const dateRangeInputFieldVariants: (props?: ({
4027
- size?: "sm" | "lg" | "md" | null | undefined;
4083
+ size?: "sm" | "md" | "lg" | null | undefined;
4028
4084
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4029
4085
  type DateRangeInputFieldVariantProps = VariantProps<typeof dateRangeInputFieldVariants>;
4030
4086
 
@@ -4134,7 +4190,7 @@ declare function EmailInput({ className, size, variant, validationState, showVal
4134
4190
  */
4135
4191
  declare const emailValidationIconVariants: (props?: ({
4136
4192
  validationState?: "invalid" | "idle" | "valid" | null | undefined;
4137
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
4193
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
4138
4194
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4139
4195
  type EmailValidationIconVariantProps = VariantProps<typeof emailValidationIconVariants>;
4140
4196
 
@@ -4193,20 +4249,20 @@ interface ErrorMessageProps extends ComponentProps<"span"> {
4193
4249
  */
4194
4250
  declare const errorMessageVariants: (props?: ({
4195
4251
  variant?: "default" | "bordered" | "inline" | "critical" | null | undefined;
4196
- size?: "sm" | "lg" | "md" | null | undefined;
4252
+ size?: "sm" | "md" | "lg" | null | undefined;
4197
4253
  animated?: boolean | null | undefined;
4198
4254
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4199
4255
  /**
4200
4256
  * ErrorMessage icon variant styles using CVA
4201
4257
  */
4202
4258
  declare const errorMessageIconVariants: (props?: ({
4203
- size?: "sm" | "lg" | "md" | null | undefined;
4259
+ size?: "sm" | "md" | "lg" | null | undefined;
4204
4260
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4205
4261
  /**
4206
4262
  * ErrorMessage list variant styles for errors array
4207
4263
  */
4208
4264
  declare const errorMessageListVariants: (props?: ({
4209
- size?: "sm" | "lg" | "md" | null | undefined;
4265
+ size?: "sm" | "md" | "lg" | null | undefined;
4210
4266
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4211
4267
  type ErrorMessageVariantProps = VariantProps<typeof errorMessageVariants>;
4212
4268
  type ErrorMessageIconVariantProps = VariantProps<typeof errorMessageIconVariants>;
@@ -4544,14 +4600,14 @@ interface HelpTextProps extends ComponentProps<"span"> {
4544
4600
  */
4545
4601
  declare const helpTextVariants: (props?: ({
4546
4602
  variant?: "default" | "success" | "warning" | "info" | "muted" | "error" | null | undefined;
4547
- size?: "default" | "sm" | "lg" | null | undefined;
4603
+ size?: "sm" | "lg" | "default" | null | undefined;
4548
4604
  srOnly?: boolean | null | undefined;
4549
4605
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4550
4606
  /**
4551
4607
  * HelpText icon variant styles
4552
4608
  */
4553
4609
  declare const helpTextIconVariants: (props?: ({
4554
- size?: "default" | "sm" | "lg" | null | undefined;
4610
+ size?: "sm" | "lg" | "default" | null | undefined;
4555
4611
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4556
4612
  type HelpTextVariantProps = VariantProps<typeof helpTextVariants>;
4557
4613
  type HelpTextIconVariantProps = VariantProps<typeof helpTextIconVariants>;
@@ -4781,7 +4837,7 @@ declare function TextInput({ className, type, size, variant, leadingIcon, traili
4781
4837
  * Input variant styles using CVA
4782
4838
  */
4783
4839
  declare const inputVariants: (props?: ({
4784
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
4840
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
4785
4841
  variant?: "default" | "unstyled" | "filled" | "flushed" | null | undefined;
4786
4842
  hasLeadingIcon?: boolean | null | undefined;
4787
4843
  hasTrailingIcon?: boolean | null | undefined;
@@ -4795,7 +4851,7 @@ declare const inputWrapperVariants: (props?: class_variance_authority_types.Clas
4795
4851
  */
4796
4852
  declare const inputIconVariants: (props?: ({
4797
4853
  position?: "leading" | "trailing" | null | undefined;
4798
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
4854
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
4799
4855
  interactive?: boolean | null | undefined;
4800
4856
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4801
4857
  type InputVariantProps = VariantProps<typeof inputVariants>;
@@ -4805,7 +4861,7 @@ type InputIconVariantProps = VariantProps<typeof inputIconVariants>;
4805
4861
  * InputGroup container variant styles using CVA
4806
4862
  */
4807
4863
  declare const inputGroupVariants: (props?: ({
4808
- size?: "sm" | "lg" | "md" | null | undefined;
4864
+ size?: "sm" | "md" | "lg" | null | undefined;
4809
4865
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4810
4866
  /**
4811
4867
  * InputGroupAddon variant styles using CVA
@@ -4817,7 +4873,7 @@ declare const inputGroupAddonVariants: (props?: ({
4817
4873
  * InputGroupButton variant styles using CVA
4818
4874
  */
4819
4875
  declare const inputGroupButtonVariants: (props?: ({
4820
- size?: "xs" | "sm" | "icon-sm" | "icon-xs" | null | undefined;
4876
+ size?: "sm" | "xs" | "icon-sm" | "icon-xs" | null | undefined;
4821
4877
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4822
4878
  /**
4823
4879
  * InputGroupInput variant styles (for the input within the group)
@@ -4961,13 +5017,13 @@ declare function InputOTPSeparator({ children, ...props }: InputOTPSeparatorProp
4961
5017
  * InputOTP slot variant styles using CVA
4962
5018
  */
4963
5019
  declare const inputOTPSlotVariants: (props?: ({
4964
- size?: "sm" | "lg" | "md" | null | undefined;
5020
+ size?: "sm" | "md" | "lg" | null | undefined;
4965
5021
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4966
5022
  /**
4967
5023
  * InputOTP container variant styles using CVA
4968
5024
  */
4969
5025
  declare const inputOTPContainerVariants: (props?: ({
4970
- size?: "sm" | "lg" | "md" | null | undefined;
5026
+ size?: "sm" | "md" | "lg" | null | undefined;
4971
5027
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4972
5028
  /**
4973
5029
  * InputOTP group styles
@@ -5090,25 +5146,25 @@ declare function InputOTPField({ label, description, errorMessage, required, dig
5090
5146
  * Wraps the Field + InputOTP combination with consistent spacing
5091
5147
  */
5092
5148
  declare const inputOTPFieldVariants: (props?: ({
5093
- size?: "sm" | "lg" | "md" | null | undefined;
5149
+ size?: "sm" | "md" | "lg" | null | undefined;
5094
5150
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5095
5151
  /**
5096
5152
  * InputOTPField label variant styles using CVA
5097
5153
  */
5098
5154
  declare const inputOTPFieldLabelVariants: (props?: ({
5099
- size?: "sm" | "lg" | "md" | null | undefined;
5155
+ size?: "sm" | "md" | "lg" | null | undefined;
5100
5156
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5101
5157
  /**
5102
5158
  * InputOTPField description variant styles using CVA
5103
5159
  */
5104
5160
  declare const inputOTPFieldDescriptionVariants: (props?: ({
5105
- size?: "sm" | "lg" | "md" | null | undefined;
5161
+ size?: "sm" | "md" | "lg" | null | undefined;
5106
5162
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5107
5163
  /**
5108
5164
  * InputOTPField error variant styles using CVA
5109
5165
  */
5110
5166
  declare const inputOTPFieldErrorVariants: (props?: ({
5111
- size?: "sm" | "lg" | "md" | null | undefined;
5167
+ size?: "sm" | "md" | "lg" | null | undefined;
5112
5168
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5113
5169
  type InputOTPFieldVariantProps = VariantProps<typeof inputOTPFieldVariants>;
5114
5170
  type InputOTPFieldLabelVariantProps = VariantProps<typeof inputOTPFieldLabelVariants>;
@@ -5281,7 +5337,7 @@ declare function NativeSelectOptGroup({ className, ...props }: NativeSelectOptGr
5281
5337
  * NativeSelect variant styles using CVA
5282
5338
  */
5283
5339
  declare const nativeSelectVariants: (props?: ({
5284
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
5340
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
5285
5341
  variant?: "default" | "filled" | "flushed" | null | undefined;
5286
5342
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5287
5343
  /**
@@ -5292,13 +5348,13 @@ declare const nativeSelectWrapperVariants: (props?: ({} & class_variance_authori
5292
5348
  * Icon styles based on size
5293
5349
  */
5294
5350
  declare const nativeSelectIconVariants: (props?: ({
5295
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
5351
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
5296
5352
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5297
5353
  /**
5298
5354
  * Left icon styles based on size
5299
5355
  */
5300
5356
  declare const nativeSelectLeftIconVariants: (props?: ({
5301
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
5357
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
5302
5358
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5303
5359
  /**
5304
5360
  * Additional padding-left when leftIcon is present
@@ -5377,14 +5433,14 @@ declare function NumberInput({ className, size, variant, showStepper, incrementI
5377
5433
  * Contains increment/decrement buttons stacked vertically
5378
5434
  */
5379
5435
  declare const numberStepperVariants: (props?: ({
5380
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
5436
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
5381
5437
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5382
5438
  /**
5383
5439
  * Number stepper button variant styles using CVA
5384
5440
  * Individual increment/decrement button styles
5385
5441
  */
5386
5442
  declare const numberStepperButtonVariants: (props?: ({
5387
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
5443
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
5388
5444
  position?: "bottom" | "top" | null | undefined;
5389
5445
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5390
5446
  /**
@@ -5392,7 +5448,7 @@ declare const numberStepperButtonVariants: (props?: ({
5392
5448
  * Used to add extra right padding when stepper is visible
5393
5449
  */
5394
5450
  declare const numberInputPaddingVariants: (props?: ({
5395
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
5451
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
5396
5452
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5397
5453
  type NumberStepperVariantProps = VariantProps<typeof numberStepperVariants>;
5398
5454
  type NumberStepperButtonVariantProps = VariantProps<typeof numberStepperButtonVariants>;
@@ -5442,7 +5498,7 @@ declare function PasswordInput({ className, size, variant, showToggle, showIcon,
5442
5498
  * Sizes match the input sizes for proper alignment
5443
5499
  */
5444
5500
  declare const passwordToggleVariants: (props?: ({
5445
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
5501
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
5446
5502
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5447
5503
  type PasswordToggleVariantProps = VariantProps<typeof passwordToggleVariants>;
5448
5504
 
@@ -5574,20 +5630,20 @@ declare function PaymentInput({ value: controlledValue, defaultValue, onChange,
5574
5630
  * PaymentInput container variant styles using CVA
5575
5631
  */
5576
5632
  declare const paymentInputVariants: (props?: ({
5577
- size?: "sm" | "lg" | "md" | null | undefined;
5633
+ size?: "sm" | "md" | "lg" | null | undefined;
5578
5634
  variant?: "default" | "filled" | "flushed" | null | undefined;
5579
5635
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5580
5636
  /**
5581
5637
  * PaymentInput inner input styles
5582
5638
  */
5583
5639
  declare const paymentInputInputVariants: (props?: ({
5584
- size?: "sm" | "lg" | "md" | null | undefined;
5640
+ size?: "sm" | "md" | "lg" | null | undefined;
5585
5641
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5586
5642
  /**
5587
5643
  * PaymentInput card icon styles
5588
5644
  */
5589
5645
  declare const paymentInputIconVariants: (props?: ({
5590
- size?: "sm" | "lg" | "md" | null | undefined;
5646
+ size?: "sm" | "md" | "lg" | null | undefined;
5591
5647
  hasCard?: boolean | null | undefined;
5592
5648
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5593
5649
  type PaymentInputVariantProps = VariantProps<typeof paymentInputVariants>;
@@ -5716,20 +5772,20 @@ declare function PhoneInput({ value: controlledValue, defaultValue, onChange, on
5716
5772
  * PhoneInput container variant styles using CVA
5717
5773
  */
5718
5774
  declare const phoneInputVariants: (props?: ({
5719
- size?: "sm" | "lg" | "md" | null | undefined;
5775
+ size?: "sm" | "md" | "lg" | null | undefined;
5720
5776
  variant?: "default" | "filled" | "flushed" | null | undefined;
5721
5777
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5722
5778
  /**
5723
5779
  * Country selector button styles
5724
5780
  */
5725
5781
  declare const phoneInputCountryButtonVariants: (props?: ({
5726
- size?: "sm" | "lg" | "md" | null | undefined;
5782
+ size?: "sm" | "md" | "lg" | null | undefined;
5727
5783
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5728
5784
  /**
5729
5785
  * Phone number input styles
5730
5786
  */
5731
5787
  declare const phoneInputInputVariants: (props?: ({
5732
- size?: "sm" | "lg" | "md" | null | undefined;
5788
+ size?: "sm" | "md" | "lg" | null | undefined;
5733
5789
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5734
5790
  /**
5735
5791
  * Country dropdown styles
@@ -5778,16 +5834,16 @@ interface RadioButtonProps extends Omit<ComponentProps<"input">, "size" | "type"
5778
5834
  declare function RadioButton({ className, size, label, description, id, ref, "aria-describedby": ariaDescribedBy, ...props }: RadioButtonProps): react_jsx_runtime.JSX.Element;
5779
5835
 
5780
5836
  declare const radioButtonVariants: (props?: ({
5781
- size?: "sm" | "lg" | "md" | null | undefined;
5837
+ size?: "sm" | "md" | "lg" | null | undefined;
5782
5838
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5783
5839
  declare const radioButtonIndicatorVariants: (props?: ({
5784
- size?: "sm" | "lg" | "md" | null | undefined;
5840
+ size?: "sm" | "md" | "lg" | null | undefined;
5785
5841
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5786
5842
  declare const radioButtonWrapperVariants: (props?: ({
5787
- size?: "sm" | "lg" | "md" | null | undefined;
5843
+ size?: "sm" | "md" | "lg" | null | undefined;
5788
5844
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5789
5845
  declare const radioButtonLabelVariants: (props?: ({
5790
- size?: "sm" | "lg" | "md" | null | undefined;
5846
+ size?: "sm" | "md" | "lg" | null | undefined;
5791
5847
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5792
5848
  type RadioButtonVariantProps = VariantProps<typeof radioButtonVariants>;
5793
5849
  type RadioButtonIndicatorVariantProps = VariantProps<typeof radioButtonIndicatorVariants>;
@@ -5881,33 +5937,33 @@ declare const radioCardGroupVariants: (props?: ({
5881
5937
  columns?: 1 | 4 | 3 | 2 | null | undefined;
5882
5938
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5883
5939
  declare const radioCardGroupItemVariants: (props?: ({
5884
- size?: "sm" | "lg" | "md" | null | undefined;
5940
+ size?: "sm" | "md" | "lg" | null | undefined;
5885
5941
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5886
5942
  declare const radioCardGroupItemIndicatorVariants: (props?: ({
5887
- size?: "sm" | "lg" | "md" | null | undefined;
5943
+ size?: "sm" | "md" | "lg" | null | undefined;
5888
5944
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5889
5945
  declare const radioCardGroupItemDotVariants: (props?: ({
5890
- size?: "sm" | "lg" | "md" | null | undefined;
5946
+ size?: "sm" | "md" | "lg" | null | undefined;
5891
5947
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5892
5948
  declare const radioCardGroupItemContentVariants: (props?: ({} & class_variance_authority_types.ClassProp) | undefined) => string;
5893
5949
  declare const radioCardGroupItemIconVariants: (props?: ({
5894
- size?: "sm" | "lg" | "md" | null | undefined;
5950
+ size?: "sm" | "md" | "lg" | null | undefined;
5895
5951
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5896
5952
  declare const radioCardGroupItemTitleVariants: (props?: ({
5897
- size?: "sm" | "lg" | "md" | null | undefined;
5953
+ size?: "sm" | "md" | "lg" | null | undefined;
5898
5954
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5899
5955
  declare const radioCardGroupItemDescriptionVariants: (props?: ({
5900
- size?: "sm" | "lg" | "md" | null | undefined;
5956
+ size?: "sm" | "md" | "lg" | null | undefined;
5901
5957
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5902
5958
 
5903
5959
  declare const radioGroupVariants: (props?: ({
5904
5960
  orientation?: "vertical" | "horizontal" | null | undefined;
5905
5961
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5906
5962
  declare const radioGroupItemVariants: (props?: ({
5907
- size?: "sm" | "lg" | "md" | null | undefined;
5963
+ size?: "sm" | "md" | "lg" | null | undefined;
5908
5964
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5909
5965
  declare const radioGroupIndicatorVariants: (props?: ({
5910
- size?: "sm" | "lg" | "md" | null | undefined;
5966
+ size?: "sm" | "md" | "lg" | null | undefined;
5911
5967
  } & class_variance_authority_types.ClassProp) | undefined) => string;
5912
5968
  type RadioGroupVariantProps = VariantProps<typeof radioGroupVariants>;
5913
5969
  type RadioGroupItemVariantProps = VariantProps<typeof radioGroupItemVariants>;
@@ -6033,7 +6089,7 @@ interface RatingItemProps {
6033
6089
  declare function Rating({ className, value: controlledValue, defaultValue, max, size, allowHalf, readOnly, disabled, emptyIcon, filledIcon, halfIcon, onChange, onHover, name, ...props }: RatingProps): react_jsx_runtime.JSX.Element;
6034
6090
 
6035
6091
  declare const ratingVariants: (props?: ({
6036
- size?: "sm" | "lg" | "md" | null | undefined;
6092
+ size?: "sm" | "md" | "lg" | null | undefined;
6037
6093
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6038
6094
  declare const ratingItemVariants: (props?: ({
6039
6095
  filled?: "full" | "empty" | "half" | null | undefined;
@@ -6091,13 +6147,13 @@ declare function SearchInput({ className, size, variant, showClearButton, onClea
6091
6147
  * Search icon visual variants
6092
6148
  */
6093
6149
  declare const searchIconVariants: (props?: ({
6094
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
6150
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
6095
6151
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6096
6152
  /**
6097
6153
  * Clear button visual variants
6098
6154
  */
6099
6155
  declare const searchClearButtonVariants: (props?: ({
6100
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
6156
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
6101
6157
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6102
6158
  type SearchIconVariantProps = VariantProps<typeof searchIconVariants>;
6103
6159
  type SearchClearButtonVariantProps = VariantProps<typeof searchClearButtonVariants>;
@@ -6187,7 +6243,7 @@ declare function SelectScrollDownButton({ className, ...props }: SelectScrollDow
6187
6243
  * SelectTrigger variant styles using CVA
6188
6244
  */
6189
6245
  declare const selectTriggerVariants: (props?: ({
6190
- size?: "sm" | "lg" | "md" | null | undefined;
6246
+ size?: "sm" | "md" | "lg" | null | undefined;
6191
6247
  variant?: "default" | "filled" | "flushed" | null | undefined;
6192
6248
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6193
6249
  /**
@@ -6343,38 +6399,38 @@ type SliderValue = number[];
6343
6399
  declare function Slider({ className, defaultValue, value, min, max, step, size, labelType, color, formatValue, marks, getAriaValueText, onValueChange, orientation, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
6344
6400
 
6345
6401
  declare const sliderRootVariants: (props?: ({
6346
- size?: "sm" | "lg" | "md" | null | undefined;
6347
- labelType?: "text" | "none" | "tooltip" | null | undefined;
6402
+ size?: "sm" | "md" | "lg" | null | undefined;
6403
+ labelType?: "none" | "tooltip" | "text" | null | undefined;
6348
6404
  hasMarks?: boolean | null | undefined;
6349
6405
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6350
6406
  declare const sliderTrackVariants: (props?: ({
6351
- size?: "sm" | "lg" | "md" | null | undefined;
6407
+ size?: "sm" | "md" | "lg" | null | undefined;
6352
6408
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6353
6409
  declare const sliderRangeVariants: (props?: ({
6354
- size?: "sm" | "lg" | "md" | null | undefined;
6410
+ size?: "sm" | "md" | "lg" | null | undefined;
6355
6411
  color?: "default" | "primary" | "success" | "warning" | "error" | null | undefined;
6356
6412
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6357
6413
  declare const sliderThumbVariants: (props?: ({
6358
- size?: "sm" | "lg" | "md" | null | undefined;
6414
+ size?: "sm" | "md" | "lg" | null | undefined;
6359
6415
  color?: "default" | "primary" | "success" | "warning" | "error" | null | undefined;
6360
6416
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6361
6417
  declare const sliderLabelVariants: (props?: ({
6362
- size?: "sm" | "lg" | "md" | null | undefined;
6418
+ size?: "sm" | "md" | "lg" | null | undefined;
6363
6419
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6364
6420
  declare const sliderTooltipVariants: (props?: ({
6365
- size?: "sm" | "lg" | "md" | null | undefined;
6421
+ size?: "sm" | "md" | "lg" | null | undefined;
6366
6422
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6367
6423
  declare const sliderMarkContainerVariants: (props?: ({
6368
- size?: "sm" | "lg" | "md" | null | undefined;
6424
+ size?: "sm" | "md" | "lg" | null | undefined;
6369
6425
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6370
6426
  declare const sliderMarkVariants: (props?: ({
6371
- size?: "sm" | "lg" | "md" | null | undefined;
6427
+ size?: "sm" | "md" | "lg" | null | undefined;
6372
6428
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6373
6429
  declare const sliderMarkTickVariants: (props?: ({
6374
- size?: "sm" | "lg" | "md" | null | undefined;
6430
+ size?: "sm" | "md" | "lg" | null | undefined;
6375
6431
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6376
6432
  declare const sliderMarkLabelVariants: (props?: ({
6377
- size?: "sm" | "lg" | "md" | null | undefined;
6433
+ size?: "sm" | "md" | "lg" | null | undefined;
6378
6434
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6379
6435
  type SliderRootVariantProps = VariantProps<typeof sliderRootVariants>;
6380
6436
  type SliderTrackVariantProps = VariantProps<typeof sliderTrackVariants>;
@@ -6466,10 +6522,10 @@ type SwitchState = boolean;
6466
6522
  declare function Switch({ className, size, type, switchText, descriptionText, showText, showDescription, id, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
6467
6523
 
6468
6524
  declare const switchVariants: (props?: ({
6469
- size?: "sm" | "lg" | "md" | null | undefined;
6525
+ size?: "sm" | "md" | "lg" | null | undefined;
6470
6526
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6471
6527
  declare const switchThumbVariants: (props?: ({
6472
- size?: "sm" | "lg" | "md" | null | undefined;
6528
+ size?: "sm" | "md" | "lg" | null | undefined;
6473
6529
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6474
6530
  type SwitchVariantProps = VariantProps<typeof switchVariants>;
6475
6531
  type SwitchThumbVariantProps = VariantProps<typeof switchThumbVariants>;
@@ -6570,14 +6626,14 @@ declare function TagsInput({ value: controlledValue, defaultValue, onChange, onT
6570
6626
  * TagsInput container variant styles using CVA
6571
6627
  */
6572
6628
  declare const tagsInputVariants: (props?: ({
6573
- size?: "sm" | "lg" | "md" | null | undefined;
6629
+ size?: "sm" | "md" | "lg" | null | undefined;
6574
6630
  variant?: "default" | "filled" | "flushed" | null | undefined;
6575
6631
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6576
6632
  /**
6577
6633
  * TagsInput inner input variant styles
6578
6634
  */
6579
6635
  declare const tagsInputInputVariants: (props?: ({
6580
- size?: "sm" | "lg" | "md" | null | undefined;
6636
+ size?: "sm" | "md" | "lg" | null | undefined;
6581
6637
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6582
6638
  type TagsInputVariantProps = VariantProps<typeof tagsInputVariants>;
6583
6639
  type TagsInputInputVariantProps = VariantProps<typeof tagsInputInputVariants>;
@@ -6621,7 +6677,7 @@ declare function Textarea({ className, size, variant, resize, ...props }: Textar
6621
6677
  * Textarea variant styles using CVA
6622
6678
  */
6623
6679
  declare const textareaVariants: (props?: ({
6624
- size?: "sm" | "lg" | "md" | null | undefined;
6680
+ size?: "sm" | "md" | "lg" | null | undefined;
6625
6681
  variant?: "default" | "unstyled" | "filled" | "flushed" | null | undefined;
6626
6682
  resize?: "none" | "vertical" | "both" | "horizontal" | null | undefined;
6627
6683
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -6683,25 +6739,25 @@ declare function TextareaField({ label, description, errorMessage, required, id:
6683
6739
  * Wraps the Field + Textarea combination with consistent spacing
6684
6740
  */
6685
6741
  declare const textareaFieldVariants: (props?: ({
6686
- size?: "sm" | "lg" | "md" | null | undefined;
6742
+ size?: "sm" | "md" | "lg" | null | undefined;
6687
6743
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6688
6744
  /**
6689
6745
  * TextareaField label variant styles using CVA
6690
6746
  */
6691
6747
  declare const textareaFieldLabelVariants: (props?: ({
6692
- size?: "sm" | "lg" | "md" | null | undefined;
6748
+ size?: "sm" | "md" | "lg" | null | undefined;
6693
6749
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6694
6750
  /**
6695
6751
  * TextareaField description variant styles using CVA
6696
6752
  */
6697
6753
  declare const textareaFieldDescriptionVariants: (props?: ({
6698
- size?: "sm" | "lg" | "md" | null | undefined;
6754
+ size?: "sm" | "md" | "lg" | null | undefined;
6699
6755
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6700
6756
  /**
6701
6757
  * TextareaField error variant styles using CVA
6702
6758
  */
6703
6759
  declare const textareaFieldErrorVariants: (props?: ({
6704
- size?: "sm" | "lg" | "md" | null | undefined;
6760
+ size?: "sm" | "md" | "lg" | null | undefined;
6705
6761
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6706
6762
  type TextareaFieldVariantProps = VariantProps<typeof textareaFieldVariants>;
6707
6763
  type TextareaFieldLabelVariantProps = VariantProps<typeof textareaFieldLabelVariants>;
@@ -6792,7 +6848,7 @@ declare function TimePicker({ className, value, defaultValue, placeholder, disab
6792
6848
  * TimePicker trigger variant styles using CVA
6793
6849
  */
6794
6850
  declare const timePickerTriggerVariants: (props?: ({
6795
- size?: "sm" | "lg" | "md" | null | undefined;
6851
+ size?: "sm" | "md" | "lg" | null | undefined;
6796
6852
  variant?: "default" | "filled" | "flushed" | null | undefined;
6797
6853
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6798
6854
  /**
@@ -6817,7 +6873,7 @@ type TimeItemVariantProps = VariantProps<typeof timeItemVariants>;
6817
6873
  */
6818
6874
  declare const toggleGroupItemVariants: (props?: ({
6819
6875
  variant?: "default" | "outline" | null | undefined;
6820
- size?: "default" | "sm" | "lg" | "md" | null | undefined;
6876
+ size?: "sm" | "md" | "lg" | "default" | null | undefined;
6821
6877
  connected?: boolean | null | undefined;
6822
6878
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6823
6879
  type ToggleGroupItemVariantProps = VariantProps<typeof toggleGroupItemVariants>;
@@ -6879,14 +6935,14 @@ declare function URLInput({ className, size, variant, validationState, showValid
6879
6935
  * URL link icon visual variants
6880
6936
  */
6881
6937
  declare const urlLinkIconVariants: (props?: ({
6882
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
6938
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
6883
6939
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6884
6940
  /**
6885
6941
  * URL validation icon visual variants
6886
6942
  */
6887
6943
  declare const urlValidationIconVariants: (props?: ({
6888
6944
  validationState?: "invalid" | "idle" | "valid" | null | undefined;
6889
- size?: "xs" | "sm" | "lg" | "xl" | "md" | null | undefined;
6945
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
6890
6946
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6891
6947
  type URLLinkIconVariantProps = VariantProps<typeof urlLinkIconVariants>;
6892
6948
  type URLValidationIconVariantProps = VariantProps<typeof urlValidationIconVariants>;
@@ -6904,7 +6960,7 @@ declare const cardVariants: (props?: ({
6904
6960
  * Bleeds to the card edges (overflow:hidden on Card root + zero padding here).
6905
6961
  */
6906
6962
  declare const cardMediaVariants: (props?: ({
6907
- aspect?: "video" | "auto" | "portrait" | "square" | "wide" | null | undefined;
6963
+ aspect?: "auto" | "square" | "video" | "portrait" | "wide" | null | undefined;
6908
6964
  } & class_variance_authority_types.ClassProp) | undefined) => string;
6909
6965
  /**
6910
6966
  * CardHeader variant styles
@@ -7076,8 +7132,8 @@ declare function CollapsibleContent({ className, animation, ...props }: Collapsi
7076
7132
  * Layout component for centering and limiting content width
7077
7133
  */
7078
7134
  declare const containerVariants: (props?: ({
7079
- maxWidth?: "sm" | "lg" | "xl" | "md" | "2xl" | "full" | null | undefined;
7080
- padding?: "none" | "sm" | "lg" | "md" | null | undefined;
7135
+ maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full" | null | undefined;
7136
+ padding?: "sm" | "md" | "lg" | "none" | null | undefined;
7081
7137
  centered?: boolean | null | undefined;
7082
7138
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7083
7139
  type ContainerVariantProps = VariantProps<typeof containerVariants>;
@@ -7114,9 +7170,9 @@ declare function Container({ as: Component, maxWidth, padding, centered, classNa
7114
7170
  */
7115
7171
  declare const flexVariants: (props?: ({
7116
7172
  display?: "inline" | "flex" | null | undefined;
7117
- direction?: "col" | "row" | "row-reverse" | "col-reverse" | null | undefined;
7118
- justify?: "center" | "end" | "start" | "around" | "between" | "evenly" | null | undefined;
7119
- align?: "center" | "end" | "start" | "baseline" | "stretch" | null | undefined;
7173
+ direction?: "row" | "col" | "row-reverse" | "col-reverse" | null | undefined;
7174
+ justify?: "end" | "start" | "center" | "around" | "between" | "evenly" | null | undefined;
7175
+ align?: "end" | "baseline" | "start" | "center" | "stretch" | null | undefined;
7120
7176
  wrap?: boolean | "nowrap" | "wrap" | "wrap-reverse" | null | undefined;
7121
7177
  gap?: 0 | 1 | 4 | 3 | 2 | 6 | 8 | null | undefined;
7122
7178
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -7183,9 +7239,9 @@ declare const gridVariants: (props?: ({
7183
7239
  gap?: 0 | 1 | 4 | 2 | 6 | 8 | null | undefined;
7184
7240
  gapX?: 0 | 1 | 4 | 2 | 6 | 8 | null | undefined;
7185
7241
  gapY?: 0 | 1 | 4 | 2 | 6 | 8 | null | undefined;
7186
- items?: "center" | "end" | "start" | "stretch" | null | undefined;
7187
- justify?: "center" | "end" | "start" | "stretch" | null | undefined;
7188
- flow?: "col" | "row" | "dense" | "row-dense" | "col-dense" | null | undefined;
7242
+ items?: "end" | "start" | "center" | "stretch" | null | undefined;
7243
+ justify?: "end" | "start" | "center" | "stretch" | null | undefined;
7244
+ flow?: "row" | "col" | "dense" | "row-dense" | "col-dense" | null | undefined;
7189
7245
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7190
7246
  type GridVariantProps = VariantProps<typeof gridVariants>;
7191
7247
 
@@ -7248,8 +7304,8 @@ declare function Grid({ as, cols, rows, gap, gapX, gapY, items, justify, flow, c
7248
7304
  */
7249
7305
  declare const panelVariants: (props?: ({
7250
7306
  variant?: "default" | "inset" | "subtle" | "elevated" | "outlined" | null | undefined;
7251
- size?: "auto" | "xs" | "sm" | "lg" | "xl" | "md" | "full" | null | undefined;
7252
- position?: "center" | "bottom" | "left" | "right" | "top" | null | undefined;
7307
+ size?: "sm" | "md" | "lg" | "auto" | "xs" | "xl" | "full" | null | undefined;
7308
+ position?: "left" | "right" | "center" | "bottom" | "top" | null | undefined;
7253
7309
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7254
7310
  /**
7255
7311
  * PanelHeader variant styles
@@ -7386,9 +7442,9 @@ declare function ResizableHandle({ withHandle, variant, className, ...props }: R
7386
7442
  */
7387
7443
  declare const responsiveContainerVariants: (props?: ({
7388
7444
  variant?: "default" | "fluid" | "constrained" | null | undefined;
7389
- maxWidth?: "sm" | "lg" | "xl" | "md" | "2xl" | null | undefined;
7445
+ maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
7390
7446
  padding?: boolean | null | undefined;
7391
- breakpoint?: "none" | "sm" | "lg" | "md" | null | undefined;
7447
+ breakpoint?: "sm" | "md" | "lg" | "none" | null | undefined;
7392
7448
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7393
7449
  type ResponsiveContainerVariantProps = VariantProps<typeof responsiveContainerVariants>;
7394
7450
 
@@ -7510,7 +7566,7 @@ declare function ScrollBar({ className, orientation, size, ...props }: ScrollBar
7510
7566
  */
7511
7567
  declare const sectionVariants: (props?: ({
7512
7568
  variant?: "default" | "bordered" | "muted" | "elevated" | null | undefined;
7513
- size?: "default" | "sm" | "lg" | null | undefined;
7569
+ size?: "sm" | "lg" | "default" | null | undefined;
7514
7570
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7515
7571
  type SectionVariantProps = VariantProps<typeof sectionVariants>;
7516
7572
 
@@ -7555,8 +7611,8 @@ declare const sheetOverlayVariants: (props?: ({
7555
7611
  * Controls the slide-out panel position and size
7556
7612
  */
7557
7613
  declare const sheetContentVariants: (props?: ({
7558
- side?: "bottom" | "left" | "right" | "top" | null | undefined;
7559
- size?: "default" | "sm" | "lg" | "full" | null | undefined;
7614
+ side?: "left" | "right" | "bottom" | "top" | null | undefined;
7615
+ size?: "sm" | "lg" | "default" | "full" | null | undefined;
7560
7616
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7561
7617
  type SheetOverlayVariantProps = VariantProps<typeof sheetOverlayVariants>;
7562
7618
  type SheetContentVariantProps = VariantProps<typeof sheetContentVariants>;
@@ -7649,8 +7705,8 @@ declare function SheetDescription({ className, ...props }: SheetDescriptionProps
7649
7705
  declare const stackVariants: (props?: ({
7650
7706
  direction?: "row" | "column" | "wrap" | null | undefined;
7651
7707
  spacing?: 0 | 1 | 4 | 3 | 2 | 6 | 8 | null | undefined;
7652
- align?: "center" | "end" | "start" | "stretch" | null | undefined;
7653
- justify?: "center" | "end" | "start" | "around" | "between" | null | undefined;
7708
+ align?: "end" | "start" | "center" | "stretch" | null | undefined;
7709
+ justify?: "end" | "start" | "center" | "around" | "between" | null | undefined;
7654
7710
  grow?: boolean | null | undefined;
7655
7711
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7656
7712
  type StackVariantProps = VariantProps<typeof stackVariants>;
@@ -8556,7 +8612,7 @@ interface FileTreeProps extends Omit<React$1.ComponentProps<"div">, "onSelect" |
8556
8612
 
8557
8613
  declare const fileTreeShellVariants: (props?: ({
8558
8614
  variant?: "outline" | "ide" | "notion" | null | undefined;
8559
- size?: "default" | "sm" | "lg" | null | undefined;
8615
+ size?: "sm" | "lg" | "default" | null | undefined;
8560
8616
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8561
8617
  declare const fileTreeRowVariants: (props?: ({
8562
8618
  variant?: "outline" | "ide" | "notion" | null | undefined;
@@ -8717,7 +8773,7 @@ declare const headerNavVariants: (props?: class_variance_authority_types.ClassPr
8717
8773
  * header with actions (e.g. the Mobile layout: logo + icons) hugs to 76px.
8718
8774
  */
8719
8775
  declare const headerActionsVariants: (props?: ({
8720
- align?: "center" | "end" | "start" | null | undefined;
8776
+ align?: "end" | "start" | "center" | null | undefined;
8721
8777
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8722
8778
 
8723
8779
  /**
@@ -9241,7 +9297,7 @@ declare function NavbarMenu({ className, isOpen, children, ...props }: NavbarMen
9241
9297
  */
9242
9298
  declare const navbarVariants: (props?: ({
9243
9299
  variant?: "default" | "bordered" | "transparent" | "floating" | null | undefined;
9244
- size?: "sm" | "lg" | "md" | null | undefined;
9300
+ size?: "sm" | "md" | "lg" | null | undefined;
9245
9301
  sticky?: boolean | null | undefined;
9246
9302
  } & class_variance_authority_types.ClassProp) | undefined) => string;
9247
9303
  /**
@@ -9258,7 +9314,7 @@ declare const navbarBrandVariants: (props?: class_variance_authority_types.Class
9258
9314
  * NavbarContent variant styles
9259
9315
  */
9260
9316
  declare const navbarContentVariants: (props?: ({
9261
- justify?: "center" | "end" | "start" | null | undefined;
9317
+ justify?: "end" | "start" | "center" | null | undefined;
9262
9318
  } & class_variance_authority_types.ClassProp) | undefined) => string;
9263
9319
  /**
9264
9320
  * NavbarItem variant styles
@@ -9812,7 +9868,7 @@ declare const sidebarMenuItemVariants: (props?: class_variance_authority_types.C
9812
9868
  */
9813
9869
  declare const sidebarMenuButtonVariants: (props?: ({
9814
9870
  variant?: "default" | "outline" | null | undefined;
9815
- size?: "default" | "sm" | "lg" | null | undefined;
9871
+ size?: "sm" | "lg" | "default" | null | undefined;
9816
9872
  } & class_variance_authority_types.ClassProp) | undefined) => string;
9817
9873
  /**
9818
9874
  * SidebarRailButton variant styles
@@ -10995,7 +11051,7 @@ declare const accordionItemVariants: (props?: ({
10995
11051
  * @see https://cva.style/docs
10996
11052
  */
10997
11053
  declare const accordionTriggerVariants: (props?: ({
10998
- size?: "default" | "sm" | "lg" | null | undefined;
11054
+ size?: "sm" | "lg" | "default" | null | undefined;
10999
11055
  } & class_variance_authority_types.ClassProp) | undefined) => string;
11000
11056
  /**
11001
11057
  * AccordionContent style variants using CVA
@@ -11003,13 +11059,13 @@ declare const accordionTriggerVariants: (props?: ({
11003
11059
  * @see https://cva.style/docs
11004
11060
  */
11005
11061
  declare const accordionContentVariants: (props?: ({
11006
- size?: "default" | "sm" | "lg" | null | undefined;
11062
+ size?: "sm" | "lg" | "default" | null | undefined;
11007
11063
  } & class_variance_authority_types.ClassProp) | undefined) => string;
11008
11064
  /**
11009
11065
  * AccordionContent inner wrapper style variants using CVA
11010
11066
  */
11011
11067
  declare const accordionContentInnerVariants: (props?: ({
11012
- size?: "default" | "sm" | "lg" | null | undefined;
11068
+ size?: "sm" | "lg" | "default" | null | undefined;
11013
11069
  } & class_variance_authority_types.ClassProp) | undefined) => string;
11014
11070
  type AccordionItemVariantProps = VariantProps<typeof accordionItemVariants>;
11015
11071
  type AccordionTriggerVariantProps = VariantProps<typeof accordionTriggerVariants>;
@@ -11662,7 +11718,7 @@ declare namespace BarList {
11662
11718
  */
11663
11719
  declare const calloutVariants: (props?: ({
11664
11720
  variant?: "default" | "success" | "warning" | "info" | "tip" | "transparent" | "error" | null | undefined;
11665
- size?: "sm" | "lg" | "md" | null | undefined;
11721
+ size?: "sm" | "md" | "lg" | null | undefined;
11666
11722
  } & class_variance_authority_types.ClassProp) | undefined) => string;
11667
11723
 
11668
11724
  interface CalloutProps$1 extends React.ComponentProps<"div">, VariantProps<typeof calloutVariants> {
@@ -12285,7 +12341,7 @@ type ChartLegendProps = RechartsPrimitive.LegendProps;
12285
12341
  */
12286
12342
  declare const dashboardCardVariants: (props?: ({
12287
12343
  variant?: "default" | "outline" | "ghost" | "elevated" | null | undefined;
12288
- size?: "sm" | "lg" | "md" | null | undefined;
12344
+ size?: "sm" | "md" | "lg" | null | undefined;
12289
12345
  } & class_variance_authority_types.ClassProp) | undefined) => string;
12290
12346
  declare const dashboardCardHeaderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
12291
12347
  declare const dashboardCardTitleVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
@@ -13467,10 +13523,10 @@ declare function FeatureItem({ badge, className, description, icon, iconTone, ti
13467
13523
 
13468
13524
  declare const feedVariants: (props?: ({
13469
13525
  variant?: "default" | "compact" | "highlighted" | null | undefined;
13470
- size?: "default" | "sm" | "lg" | null | undefined;
13526
+ size?: "sm" | "lg" | "default" | null | undefined;
13471
13527
  } & class_variance_authority_types.ClassProp) | undefined) => string;
13472
13528
  declare const feedItemVariants: (props?: ({
13473
- size?: "default" | "sm" | "lg" | null | undefined;
13529
+ size?: "sm" | "lg" | "default" | null | undefined;
13474
13530
  isActive?: boolean | null | undefined;
13475
13531
  isHighlighted?: boolean | null | undefined;
13476
13532
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -13835,7 +13891,7 @@ interface GaugeChartProps {
13835
13891
  }
13836
13892
 
13837
13893
  declare const gaugeChartVariants: (props?: ({
13838
- size?: "sm" | "lg" | "md" | null | undefined;
13894
+ size?: "sm" | "md" | "lg" | null | undefined;
13839
13895
  } & class_variance_authority_types.ClassProp) | undefined) => string;
13840
13896
  /**
13841
13897
  * GaugeChart - A speedometer-style gauge for displaying values on a scale
@@ -14126,7 +14182,7 @@ declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div"
14126
14182
  declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Divider>): react_jsx_runtime.JSX.Element;
14127
14183
  declare const itemVariants: (props?: ({
14128
14184
  variant?: "default" | "muted" | "outline" | "active" | null | undefined;
14129
- size?: "default" | "sm" | "lg" | null | undefined;
14185
+ size?: "sm" | "lg" | "default" | null | undefined;
14130
14186
  interactive?: boolean | null | undefined;
14131
14187
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14132
14188
  interface ItemEventPayload {
@@ -14508,7 +14564,7 @@ declare const listVariants: (props?: ({
14508
14564
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14509
14565
  declare const listItemVariants: (props?: ({
14510
14566
  variant?: "flat" | "default" | "card" | "minimal" | null | undefined;
14511
- size?: "default" | "sm" | "lg" | null | undefined;
14567
+ size?: "sm" | "lg" | "default" | null | undefined;
14512
14568
  selectable?: boolean | null | undefined;
14513
14569
  selected?: boolean | null | undefined;
14514
14570
  disabled?: boolean | null | undefined;
@@ -14632,17 +14688,17 @@ declare namespace MarkerBar {
14632
14688
  }
14633
14689
 
14634
14690
  declare const markerBarContainerVariants: (props?: ({
14635
- size?: "sm" | "lg" | "md" | null | undefined;
14691
+ size?: "sm" | "md" | "lg" | null | undefined;
14636
14692
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14637
14693
  declare const markerBarRangeVariants: (props?: ({
14638
14694
  animated?: boolean | null | undefined;
14639
14695
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14640
14696
  declare const markerBarMarkerWrapperVariants: (props?: ({
14641
- size?: "sm" | "lg" | "md" | null | undefined;
14697
+ size?: "sm" | "md" | "lg" | null | undefined;
14642
14698
  animated?: boolean | null | undefined;
14643
14699
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14644
14700
  declare const markerBarMarkerVariants: (props?: ({
14645
- size?: "sm" | "lg" | "md" | null | undefined;
14701
+ size?: "sm" | "md" | "lg" | null | undefined;
14646
14702
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14647
14703
 
14648
14704
  /**
@@ -15422,7 +15478,7 @@ declare const tableHeadVariants: (props?: ({
15422
15478
  * Table cell style variants
15423
15479
  */
15424
15480
  declare const tableCellVariants: (props?: ({
15425
- align?: "center" | "left" | "right" | null | undefined;
15481
+ align?: "left" | "right" | "center" | null | undefined;
15426
15482
  } & class_variance_authority_types.ClassProp) | undefined) => string;
15427
15483
  type TableContainerVariantProps = VariantProps<typeof tableContainerVariants>;
15428
15484
  type TableVariantProps = VariantProps<typeof tableVariants>;
@@ -15451,21 +15507,21 @@ declare function TableCaption({ className, ...props }: React$1.ComponentProps<"c
15451
15507
  */
15452
15508
  declare const timelineVariants: (props?: ({
15453
15509
  variant?: "default" | "horizontal" | "compact" | "detailed" | null | undefined;
15454
- size?: "default" | "sm" | "lg" | null | undefined;
15510
+ size?: "sm" | "lg" | "default" | null | undefined;
15455
15511
  } & class_variance_authority_types.ClassProp) | undefined) => string;
15456
15512
  /**
15457
15513
  * Timeline item variants
15458
15514
  */
15459
15515
  declare const timelineItemVariants: (props?: ({
15460
15516
  variant?: "default" | "horizontal" | "compact" | "detailed" | null | undefined;
15461
- size?: "default" | "sm" | "lg" | null | undefined;
15517
+ size?: "sm" | "lg" | "default" | null | undefined;
15462
15518
  } & class_variance_authority_types.ClassProp) | undefined) => string;
15463
15519
  /**
15464
15520
  * Timeline marker variants based on status
15465
15521
  */
15466
15522
  declare const timelineMarkerVariants: (props?: ({
15467
15523
  status?: "current" | "error" | "pending" | "complete" | null | undefined;
15468
- size?: "default" | "sm" | "lg" | null | undefined;
15524
+ size?: "sm" | "lg" | "default" | null | undefined;
15469
15525
  hasIcon?: boolean | null | undefined;
15470
15526
  } & class_variance_authority_types.ClassProp) | undefined) => string;
15471
15527
 
@@ -17000,7 +17056,7 @@ declare function UpdatesWidget({ className, items, emptyState, menu, title, ...p
17000
17056
  * AssetManager root container variants
17001
17057
  */
17002
17058
  declare const assetManagerVariants: (props?: ({
17003
- size?: "sm" | "lg" | "md" | null | undefined;
17059
+ size?: "sm" | "md" | "lg" | null | undefined;
17004
17060
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17005
17061
  /**
17006
17062
  * AssetManager toolbar variants
@@ -17341,7 +17397,7 @@ declare namespace AssetManagerEmpty {
17341
17397
  * @see https://cva.style/docs
17342
17398
  */
17343
17399
  declare const commandVariants: (props?: ({
17344
- size?: "default" | "sm" | "lg" | null | undefined;
17400
+ size?: "sm" | "lg" | "default" | null | undefined;
17345
17401
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17346
17402
  /**
17347
17403
  * Command input wrapper style variants using CVA
@@ -17349,19 +17405,19 @@ declare const commandVariants: (props?: ({
17349
17405
  * Controls the height and padding of the input container.
17350
17406
  */
17351
17407
  declare const commandInputWrapperVariants: (props?: ({
17352
- size?: "default" | "sm" | "lg" | null | undefined;
17408
+ size?: "sm" | "lg" | "default" | null | undefined;
17353
17409
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17354
17410
  /**
17355
17411
  * Command input style variants using CVA
17356
17412
  */
17357
17413
  declare const commandInputVariants: (props?: ({
17358
- size?: "default" | "sm" | "lg" | null | undefined;
17414
+ size?: "sm" | "lg" | "default" | null | undefined;
17359
17415
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17360
17416
  /**
17361
17417
  * Command input icon style variants using CVA
17362
17418
  */
17363
17419
  declare const commandInputIconVariants: (props?: ({
17364
- size?: "default" | "sm" | "lg" | null | undefined;
17420
+ size?: "sm" | "lg" | "default" | null | undefined;
17365
17421
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17366
17422
  /**
17367
17423
  * Command input clear button (Icon/X) style variants using CVA
@@ -17370,25 +17426,25 @@ declare const commandInputIconVariants: (props?: ({
17370
17426
  * `Command/Input` Icon/X (16×16) shown to the right of the search input.
17371
17427
  */
17372
17428
  declare const commandInputClearVariants: (props?: ({
17373
- size?: "default" | "sm" | "lg" | null | undefined;
17429
+ size?: "sm" | "lg" | "default" | null | undefined;
17374
17430
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17375
17431
  /**
17376
17432
  * Command list style variants using CVA
17377
17433
  */
17378
17434
  declare const commandListVariants: (props?: ({
17379
- size?: "default" | "sm" | "lg" | null | undefined;
17435
+ size?: "sm" | "lg" | "default" | null | undefined;
17380
17436
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17381
17437
  /**
17382
17438
  * Command empty state style variants using CVA
17383
17439
  */
17384
17440
  declare const commandEmptyVariants: (props?: ({
17385
- size?: "default" | "sm" | "lg" | null | undefined;
17441
+ size?: "sm" | "lg" | "default" | null | undefined;
17386
17442
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17387
17443
  /**
17388
17444
  * Command group style variants using CVA
17389
17445
  */
17390
17446
  declare const commandGroupVariants: (props?: ({
17391
- size?: "default" | "sm" | "lg" | null | undefined;
17447
+ size?: "sm" | "lg" | "default" | null | undefined;
17392
17448
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17393
17449
  /**
17394
17450
  * Command item style variants using CVA
@@ -17396,20 +17452,20 @@ declare const commandGroupVariants: (props?: ({
17396
17452
  * Supports both size and visual variant options.
17397
17453
  */
17398
17454
  declare const commandItemVariants: (props?: ({
17399
- size?: "default" | "sm" | "lg" | null | undefined;
17455
+ size?: "sm" | "lg" | "default" | null | undefined;
17400
17456
  variant?: "default" | "destructive" | null | undefined;
17401
17457
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17402
17458
  /**
17403
17459
  * Command separator style variants using CVA
17404
17460
  */
17405
17461
  declare const commandSeparatorVariants: (props?: ({
17406
- size?: "default" | "sm" | "lg" | null | undefined;
17462
+ size?: "sm" | "lg" | "default" | null | undefined;
17407
17463
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17408
17464
  /**
17409
17465
  * Command shortcut style variants using CVA
17410
17466
  */
17411
17467
  declare const commandShortcutVariants: (props?: ({
17412
- size?: "default" | "sm" | "lg" | null | undefined;
17468
+ size?: "sm" | "lg" | "default" | null | undefined;
17413
17469
  } & class_variance_authority_types.ClassProp) | undefined) => string;
17414
17470
  type CommandVariantProps = VariantProps<typeof commandVariants>;
17415
17471
  type CommandInputWrapperVariantProps = VariantProps<typeof commandInputWrapperVariants>;
@@ -18059,20 +18115,20 @@ declare const errorBoundaryCardVariants: (props?: ({
18059
18115
  * ErrorBoundary icon variants
18060
18116
  */
18061
18117
  declare const errorBoundaryIconVariants: (props?: ({
18062
- size?: "sm" | "lg" | "md" | null | undefined;
18118
+ size?: "sm" | "md" | "lg" | null | undefined;
18063
18119
  severity?: "warning" | "info" | "error" | null | undefined;
18064
18120
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18065
18121
  /**
18066
18122
  * ErrorBoundary title variants
18067
18123
  */
18068
18124
  declare const errorBoundaryTitleVariants: (props?: ({
18069
- size?: "sm" | "lg" | "md" | null | undefined;
18125
+ size?: "sm" | "md" | "lg" | null | undefined;
18070
18126
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18071
18127
  /**
18072
18128
  * ErrorBoundary message variants
18073
18129
  */
18074
18130
  declare const errorBoundaryMessageVariants: (props?: ({
18075
- size?: "sm" | "lg" | "md" | null | undefined;
18131
+ size?: "sm" | "md" | "lg" | null | undefined;
18076
18132
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18077
18133
  /**
18078
18134
  * ErrorBoundary stack trace variants
@@ -18085,7 +18141,7 @@ declare const errorBoundaryStackVariants: (props?: ({
18085
18141
  */
18086
18142
  declare const errorBoundaryActionVariants: (props?: ({
18087
18143
  variant?: "primary" | "outline" | "ghost" | null | undefined;
18088
- size?: "sm" | "lg" | "md" | null | undefined;
18144
+ size?: "sm" | "md" | "lg" | null | undefined;
18089
18145
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18090
18146
 
18091
18147
  /**
@@ -18317,7 +18373,7 @@ declare function EventCalendar({ events, view: controlledView, date: controlledD
18317
18373
  * EventCalendar container variants
18318
18374
  */
18319
18375
  declare const eventCalendarVariants: (props?: ({
18320
- size?: "sm" | "lg" | "md" | "full" | null | undefined;
18376
+ size?: "sm" | "md" | "lg" | "full" | null | undefined;
18321
18377
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18322
18378
  /**
18323
18379
  * Calendar header variants
@@ -18468,7 +18524,7 @@ declare const fileDropzoneVariants: (props?: ({
18468
18524
  */
18469
18525
  declare const filePreviewVariants: (props?: ({
18470
18526
  variant?: "inline" | "full" | "thumbnail" | "card" | null | undefined;
18471
- size?: "sm" | "lg" | "xl" | "md" | null | undefined;
18527
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
18472
18528
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18473
18529
  /**
18474
18530
  * FilePreview content area variants (for image/video preview)
@@ -18481,7 +18537,7 @@ declare const filePreviewContentVariants: (props?: ({
18481
18537
  */
18482
18538
  declare const filePreviewFallbackVariants: (props?: ({
18483
18539
  variant?: "inline" | "full" | "thumbnail" | "card" | null | undefined;
18484
- size?: "sm" | "lg" | "xl" | "md" | null | undefined;
18540
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
18485
18541
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18486
18542
  /**
18487
18543
  * FilePreview info section variants
@@ -18606,7 +18662,7 @@ declare const fileUploadVariants: (props?: ({
18606
18662
  */
18607
18663
  declare const fileUploadTriggerVariants: (props?: ({
18608
18664
  variant?: "default" | "secondary" | "outline" | "ghost" | null | undefined;
18609
- size?: "sm" | "lg" | "md" | null | undefined;
18665
+ size?: "sm" | "md" | "lg" | null | undefined;
18610
18666
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18611
18667
  /**
18612
18668
  * FileUpload dropzone area variants
@@ -18625,7 +18681,7 @@ declare const fileUploadPreviewVariants: (props?: ({
18625
18681
  * FileUpload avatar preview variants
18626
18682
  */
18627
18683
  declare const fileUploadAvatarVariants: (props?: ({
18628
- size?: "sm" | "lg" | "md" | null | undefined;
18684
+ size?: "sm" | "md" | "lg" | null | undefined;
18629
18685
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18630
18686
  /**
18631
18687
  * FileUpload progress bar variants
@@ -18941,76 +18997,76 @@ declare namespace FileUploadInline {
18941
18997
  * FilterBuilder root container variants
18942
18998
  */
18943
18999
  declare const filterBuilderVariants: (props?: ({
18944
- size?: "default" | "sm" | "lg" | null | undefined;
19000
+ size?: "sm" | "lg" | "default" | null | undefined;
18945
19001
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18946
19002
  /**
18947
19003
  * FilterGroup container variants
18948
19004
  */
18949
19005
  declare const filterGroupVariants: (props?: ({
18950
- size?: "default" | "sm" | "lg" | null | undefined;
19006
+ size?: "sm" | "lg" | "default" | null | undefined;
18951
19007
  isRoot?: boolean | null | undefined;
18952
19008
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18953
19009
  /**
18954
19010
  * FilterGroup header (combinator toggle) variants
18955
19011
  */
18956
19012
  declare const filterGroupHeaderVariants: (props?: ({
18957
- size?: "default" | "sm" | "lg" | null | undefined;
19013
+ size?: "sm" | "lg" | "default" | null | undefined;
18958
19014
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18959
19015
  /**
18960
19016
  * Combinator toggle button variants
18961
19017
  */
18962
19018
  declare const combinatorToggleVariants: (props?: ({
18963
- size?: "default" | "sm" | "lg" | null | undefined;
19019
+ size?: "sm" | "lg" | "default" | null | undefined;
18964
19020
  active?: boolean | null | undefined;
18965
19021
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18966
19022
  /**
18967
19023
  * FilterRule container variants
18968
19024
  */
18969
19025
  declare const filterRuleVariants: (props?: ({
18970
- size?: "default" | "sm" | "lg" | null | undefined;
19026
+ size?: "sm" | "lg" | "default" | null | undefined;
18971
19027
  invalid?: boolean | null | undefined;
18972
19028
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18973
19029
  /**
18974
19030
  * Rule field select variants
18975
19031
  */
18976
19032
  declare const ruleFieldVariants: (props?: ({
18977
- size?: "default" | "sm" | "lg" | null | undefined;
19033
+ size?: "sm" | "lg" | "default" | null | undefined;
18978
19034
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18979
19035
  /**
18980
19036
  * Rule operator select variants
18981
19037
  */
18982
19038
  declare const ruleOperatorVariants: (props?: ({
18983
- size?: "default" | "sm" | "lg" | null | undefined;
19039
+ size?: "sm" | "lg" | "default" | null | undefined;
18984
19040
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18985
19041
  /**
18986
19042
  * Rule value input variants
18987
19043
  */
18988
19044
  declare const ruleValueVariants: (props?: ({
18989
- size?: "default" | "sm" | "lg" | null | undefined;
19045
+ size?: "sm" | "lg" | "default" | null | undefined;
18990
19046
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18991
19047
  /**
18992
19048
  * Rules container variants
18993
19049
  */
18994
19050
  declare const rulesContainerVariants: (props?: ({
18995
- size?: "default" | "sm" | "lg" | null | undefined;
19051
+ size?: "sm" | "lg" | "default" | null | undefined;
18996
19052
  } & class_variance_authority_types.ClassProp) | undefined) => string;
18997
19053
  /**
18998
19054
  * FilterToolbar variants
18999
19055
  */
19000
19056
  declare const filterToolbarVariants: (props?: ({
19001
- size?: "default" | "sm" | "lg" | null | undefined;
19057
+ size?: "sm" | "lg" | "default" | null | undefined;
19002
19058
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19003
19059
  /**
19004
19060
  * FilterPreview variants
19005
19061
  */
19006
19062
  declare const filterPreviewVariants: (props?: ({
19007
- size?: "default" | "sm" | "lg" | null | undefined;
19063
+ size?: "sm" | "lg" | "default" | null | undefined;
19008
19064
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19009
19065
  /**
19010
19066
  * Empty state variants
19011
19067
  */
19012
19068
  declare const emptyStateVariants: (props?: ({
19013
- size?: "default" | "sm" | "lg" | null | undefined;
19069
+ size?: "sm" | "lg" | "default" | null | undefined;
19014
19070
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19015
19071
  type FilterBuilderVariantProps = VariantProps<typeof filterBuilderVariants>;
19016
19072
  type FilterGroupVariantProps = VariantProps<typeof filterGroupVariants>;
@@ -19454,7 +19510,7 @@ declare function Portal({ children, container, disabled }: PortalProps): react_j
19454
19510
  */
19455
19511
  declare const portalContainerVariants: (props?: ({
19456
19512
  position?: "fixed" | "relative" | "absolute" | null | undefined;
19457
- zIndex?: "base" | "popover" | "tooltip" | "sticky" | "max" | "modal" | "overlay" | "dropdown" | "toast" | null | undefined;
19513
+ zIndex?: "max" | "tooltip" | "base" | "popover" | "sticky" | "modal" | "overlay" | "dropdown" | "toast" | null | undefined;
19458
19514
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19459
19515
  /**
19460
19516
  * Portal overlay variants
@@ -19469,8 +19525,8 @@ declare const portalOverlayVariants: (props?: ({
19469
19525
  * Used for centering or positioning portaled content
19470
19526
  */
19471
19527
  declare const portalContentVariants: (props?: ({
19472
- position?: "center" | "bottom" | "left" | "right" | "top" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | null | undefined;
19473
- padding?: "none" | "sm" | "lg" | "md" | null | undefined;
19528
+ position?: "left" | "right" | "center" | "bottom" | "top" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | null | undefined;
19529
+ padding?: "sm" | "md" | "lg" | "none" | null | undefined;
19474
19530
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19475
19531
 
19476
19532
  type ReportBuilderFieldKind = "dimension" | "metric";
@@ -19655,7 +19711,7 @@ declare function RichTextEditor({ "aria-label": ariaLabel, autofocus, className,
19655
19711
  * RichTextEditor container variants
19656
19712
  */
19657
19713
  declare const richTextEditorVariants: (props?: ({
19658
- size?: "sm" | "lg" | "md" | "full" | null | undefined;
19714
+ size?: "sm" | "md" | "lg" | "full" | null | undefined;
19659
19715
  disabled?: boolean | null | undefined;
19660
19716
  focused?: boolean | null | undefined;
19661
19717
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -19671,7 +19727,7 @@ declare const richTextEditorToolbarVariants: (props?: ({
19671
19727
  */
19672
19728
  declare const richTextEditorToolbarButtonVariants: (props?: ({
19673
19729
  variant?: "default" | "active" | null | undefined;
19674
- size?: "sm" | "lg" | "md" | null | undefined;
19730
+ size?: "sm" | "md" | "lg" | null | undefined;
19675
19731
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19676
19732
  /**
19677
19733
  * RichTextEditor content area variants
@@ -19927,77 +19983,77 @@ interface SearchHighlightProps {
19927
19983
  */
19928
19984
  declare const searchVariants: (props?: ({
19929
19985
  variant?: "inline" | "command" | "fullscreen" | null | undefined;
19930
- size?: "default" | "sm" | "lg" | null | undefined;
19986
+ size?: "sm" | "lg" | "default" | null | undefined;
19931
19987
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19932
19988
  /**
19933
19989
  * Search input wrapper variants
19934
19990
  */
19935
19991
  declare const searchInputWrapperVariants: (props?: ({
19936
- size?: "default" | "sm" | "lg" | null | undefined;
19992
+ size?: "sm" | "lg" | "default" | null | undefined;
19937
19993
  variant?: "inline" | "command" | "fullscreen" | null | undefined;
19938
19994
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19939
19995
  /**
19940
19996
  * Search input field variants
19941
19997
  */
19942
19998
  declare const searchInputVariants: (props?: ({
19943
- size?: "default" | "sm" | "lg" | null | undefined;
19999
+ size?: "sm" | "lg" | "default" | null | undefined;
19944
20000
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19945
20001
  /**
19946
20002
  * Search results container variants
19947
20003
  */
19948
20004
  declare const searchResultsVariants: (props?: ({
19949
- size?: "default" | "sm" | "lg" | null | undefined;
20005
+ size?: "sm" | "lg" | "default" | null | undefined;
19950
20006
  variant?: "inline" | "command" | "fullscreen" | null | undefined;
19951
20007
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19952
20008
  /**
19953
20009
  * Search result item variants
19954
20010
  */
19955
20011
  declare const searchResultItemVariants: (props?: ({
19956
- size?: "default" | "sm" | "lg" | null | undefined;
20012
+ size?: "sm" | "lg" | "default" | null | undefined;
19957
20013
  selected?: boolean | null | undefined;
19958
20014
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19959
20015
  /**
19960
20016
  * Search result icon variants
19961
20017
  */
19962
20018
  declare const searchResultIconVariants: (props?: ({
19963
- size?: "default" | "sm" | "lg" | null | undefined;
20019
+ size?: "sm" | "lg" | "default" | null | undefined;
19964
20020
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19965
20021
  /**
19966
20022
  * Search result group heading variants
19967
20023
  */
19968
20024
  declare const searchGroupHeadingVariants: (props?: ({
19969
- size?: "default" | "sm" | "lg" | null | undefined;
20025
+ size?: "sm" | "lg" | "default" | null | undefined;
19970
20026
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19971
20027
  /**
19972
20028
  * Search empty state variants
19973
20029
  */
19974
20030
  declare const searchEmptyVariants: (props?: ({
19975
- size?: "default" | "sm" | "lg" | null | undefined;
20031
+ size?: "sm" | "lg" | "default" | null | undefined;
19976
20032
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19977
20033
  /**
19978
20034
  * Search loading variants
19979
20035
  */
19980
20036
  declare const searchLoadingVariants: (props?: ({
19981
- size?: "default" | "sm" | "lg" | null | undefined;
20037
+ size?: "sm" | "lg" | "default" | null | undefined;
19982
20038
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19983
20039
  /**
19984
20040
  * Search filter button variants
19985
20041
  */
19986
20042
  declare const searchFilterVariants: (props?: ({
19987
- size?: "default" | "sm" | "lg" | null | undefined;
20043
+ size?: "sm" | "lg" | "default" | null | undefined;
19988
20044
  active?: boolean | null | undefined;
19989
20045
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19990
20046
  /**
19991
20047
  * Search filters container variants
19992
20048
  */
19993
20049
  declare const searchFiltersContainerVariants: (props?: ({
19994
- size?: "default" | "sm" | "lg" | null | undefined;
20050
+ size?: "sm" | "lg" | "default" | null | undefined;
19995
20051
  } & class_variance_authority_types.ClassProp) | undefined) => string;
19996
20052
  /**
19997
20053
  * Search history header variants
19998
20054
  */
19999
20055
  declare const searchHistoryHeaderVariants: (props?: ({
20000
- size?: "default" | "sm" | "lg" | null | undefined;
20056
+ size?: "sm" | "lg" | "default" | null | undefined;
20001
20057
  } & class_variance_authority_types.ClassProp) | undefined) => string;
20002
20058
  /**
20003
20059
  * Search highlight match variants
@@ -20234,14 +20290,14 @@ declare const sortableListOverlayVariants: (props?: ({} & class_variance_authori
20234
20290
  */
20235
20291
  declare const versionControlVariants: (props?: ({
20236
20292
  variant?: "list" | "compact" | "timeline" | "diff" | null | undefined;
20237
- size?: "default" | "sm" | "lg" | null | undefined;
20293
+ size?: "sm" | "lg" | "default" | null | undefined;
20238
20294
  } & class_variance_authority_types.ClassProp) | undefined) => string;
20239
20295
  /**
20240
20296
  * VersionItem variants
20241
20297
  */
20242
20298
  declare const versionItemVariants: (props?: ({
20243
20299
  variant?: "list" | "compact" | "timeline" | "diff" | null | undefined;
20244
- size?: "default" | "sm" | "lg" | null | undefined;
20300
+ size?: "sm" | "lg" | "default" | null | undefined;
20245
20301
  isCurrent?: boolean | null | undefined;
20246
20302
  isSelected?: boolean | null | undefined;
20247
20303
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -20250,14 +20306,14 @@ declare const versionItemVariants: (props?: ({
20250
20306
  */
20251
20307
  declare const versionBadgeVariants: (props?: ({
20252
20308
  variant?: "previous" | "current" | "selected" | null | undefined;
20253
- size?: "default" | "sm" | "lg" | null | undefined;
20309
+ size?: "sm" | "lg" | "default" | null | undefined;
20254
20310
  } & class_variance_authority_types.ClassProp) | undefined) => string;
20255
20311
  /**
20256
20312
  * Diff line variants
20257
20313
  */
20258
20314
  declare const diffLineVariants: (props?: ({
20259
20315
  type?: "context" | "addition" | "deletion" | null | undefined;
20260
- size?: "default" | "sm" | "lg" | null | undefined;
20316
+ size?: "sm" | "lg" | "default" | null | undefined;
20261
20317
  } & class_variance_authority_types.ClassProp) | undefined) => string;
20262
20318
  /**
20263
20319
  * Change indicator variants (additions/deletions)
@@ -20270,14 +20326,14 @@ declare const changeIndicatorVariants: (props?: ({
20270
20326
  */
20271
20327
  declare const versionTimelineConnectorVariants: (props?: ({
20272
20328
  status?: "previous" | "current" | null | undefined;
20273
- size?: "default" | "sm" | "lg" | null | undefined;
20329
+ size?: "sm" | "lg" | "default" | null | undefined;
20274
20330
  } & class_variance_authority_types.ClassProp) | undefined) => string;
20275
20331
  /**
20276
20332
  * Version timeline marker variants
20277
20333
  */
20278
20334
  declare const versionTimelineMarkerVariants: (props?: ({
20279
20335
  status?: "previous" | "current" | null | undefined;
20280
- size?: "default" | "sm" | "lg" | null | undefined;
20336
+ size?: "sm" | "lg" | "default" | null | undefined;
20281
20337
  } & class_variance_authority_types.ClassProp) | undefined) => string;
20282
20338
 
20283
20339
  /**
@@ -20532,7 +20588,7 @@ declare const approvalFlowStepVariants: (props?: ({
20532
20588
  */
20533
20589
  declare const approvalFlowMarkerVariants: (props?: ({
20534
20590
  status?: "pending" | "in_progress" | "awaiting" | "approved" | "rejected" | "escalated" | "skipped" | null | undefined;
20535
- size?: "default" | "sm" | "lg" | null | undefined;
20591
+ size?: "sm" | "lg" | "default" | null | undefined;
20536
20592
  } & class_variance_authority_types.ClassProp) | undefined) => string;
20537
20593
  /**
20538
20594
  * Connector line variants between steps
@@ -20813,7 +20869,7 @@ declare function ApprovalFlow({ "aria-label": ariaLabel, className, steps, curre
20813
20869
  * ApprovalStatus variant styles using CVA
20814
20870
  */
20815
20871
  declare const approvalStatusVariants: (props?: ({
20816
- size?: "sm" | "lg" | "md" | null | undefined;
20872
+ size?: "sm" | "md" | "lg" | null | undefined;
20817
20873
  variant?: "default" | "compact" | "detailed" | "timeline" | null | undefined;
20818
20874
  } & class_variance_authority_types.ClassProp) | undefined) => string;
20819
20875
 
@@ -21318,7 +21374,7 @@ declare const dashboardGridVariants: (props?: ({
21318
21374
  * Dashboard sidebar variants
21319
21375
  */
21320
21376
  declare const dashboardSidebarVariants: (props?: ({
21321
- width?: "sm" | "lg" | "md" | null | undefined;
21377
+ width?: "sm" | "md" | "lg" | null | undefined;
21322
21378
  } & class_variance_authority_types.ClassProp) | undefined) => string;
21323
21379
  /**
21324
21380
  * Dashboard content variants
@@ -21657,7 +21713,7 @@ declare const dashboardBuilderWidgetVariants: (props?: ({
21657
21713
  */
21658
21714
  declare const dashboardBuilderResizeHandleVariants: (props?: ({
21659
21715
  position?: "s" | "e" | "se" | "sw" | "ne" | "nw" | "w" | "n" | null | undefined;
21660
- size?: "default" | "sm" | "lg" | null | undefined;
21716
+ size?: "sm" | "lg" | "default" | null | undefined;
21661
21717
  } & class_variance_authority_types.ClassProp) | undefined) => string;
21662
21718
  /**
21663
21719
  * Drop zone indicator variants
@@ -22344,7 +22400,7 @@ declare function KanbanBoard({ allowAddColumn, allowAddItem, allowColumnReorder,
22344
22400
  */
22345
22401
  declare const progressStepsVariants: (props?: ({
22346
22402
  orientation?: "vertical" | "horizontal" | null | undefined;
22347
- size?: "sm" | "lg" | "md" | null | undefined;
22403
+ size?: "sm" | "md" | "lg" | null | undefined;
22348
22404
  variant?: "default" | "dot" | "icon" | "bar" | "numbered" | null | undefined;
22349
22405
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22350
22406
  /**
@@ -22352,14 +22408,14 @@ declare const progressStepsVariants: (props?: ({
22352
22408
  */
22353
22409
  declare const stepItemVariants$1: (props?: ({
22354
22410
  orientation?: "vertical" | "horizontal" | null | undefined;
22355
- size?: "sm" | "lg" | "md" | null | undefined;
22411
+ size?: "sm" | "md" | "lg" | null | undefined;
22356
22412
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22357
22413
  /**
22358
22414
  * Step circle/marker variants
22359
22415
  */
22360
22416
  declare const stepCircleVariants: (props?: ({
22361
22417
  animated?: boolean | null | undefined;
22362
- size?: "sm" | "lg" | "md" | null | undefined;
22418
+ size?: "sm" | "md" | "lg" | null | undefined;
22363
22419
  status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
22364
22420
  variant?: "default" | "dot" | "icon" | "bar" | "numbered" | null | undefined;
22365
22421
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -22368,14 +22424,14 @@ declare const stepCircleVariants: (props?: ({
22368
22424
  */
22369
22425
  declare const stepDotVariants: (props?: ({
22370
22426
  animated?: boolean | null | undefined;
22371
- size?: "sm" | "lg" | "md" | null | undefined;
22427
+ size?: "sm" | "md" | "lg" | null | undefined;
22372
22428
  status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
22373
22429
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22374
22430
  /**
22375
22431
  * Connector line variants (horizontal)
22376
22432
  */
22377
22433
  declare const stepConnectorHorizontalVariants: (props?: ({
22378
- size?: "sm" | "lg" | "md" | null | undefined;
22434
+ size?: "sm" | "md" | "lg" | null | undefined;
22379
22435
  status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
22380
22436
  variant?: "default" | "dot" | "icon" | "bar" | "numbered" | null | undefined;
22381
22437
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -22383,7 +22439,7 @@ declare const stepConnectorHorizontalVariants: (props?: ({
22383
22439
  * Connector line variants (vertical)
22384
22440
  */
22385
22441
  declare const stepConnectorVerticalVariants: (props?: ({
22386
- size?: "sm" | "lg" | "md" | null | undefined;
22442
+ size?: "sm" | "md" | "lg" | null | undefined;
22387
22443
  status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
22388
22444
  variant?: "default" | "dot" | "icon" | "bar" | "numbered" | null | undefined;
22389
22445
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -22391,14 +22447,14 @@ declare const stepConnectorVerticalVariants: (props?: ({
22391
22447
  * Step label variants
22392
22448
  */
22393
22449
  declare const stepLabelVariants: (props?: ({
22394
- size?: "sm" | "lg" | "md" | null | undefined;
22450
+ size?: "sm" | "md" | "lg" | null | undefined;
22395
22451
  status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
22396
22452
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22397
22453
  /**
22398
22454
  * Step description variants
22399
22455
  */
22400
22456
  declare const stepDescriptionVariants: (props?: ({
22401
- size?: "sm" | "lg" | "md" | null | undefined;
22457
+ size?: "sm" | "md" | "lg" | null | undefined;
22402
22458
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22403
22459
  /**
22404
22460
  * Bar segment variants (for bar variant)
@@ -22501,14 +22557,14 @@ declare function ProgressSteps({ animated, className, currentStep, orientation,
22501
22557
  * ReportGenerator container variants
22502
22558
  */
22503
22559
  declare const reportGeneratorVariants: (props?: ({
22504
- size?: "default" | "sm" | "lg" | null | undefined;
22560
+ size?: "sm" | "lg" | "default" | null | undefined;
22505
22561
  layout?: "default" | "full" | "compact" | null | undefined;
22506
22562
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22507
22563
  /**
22508
22564
  * Step indicator variants
22509
22565
  */
22510
22566
  declare const stepIndicatorVariants: (props?: ({
22511
- size?: "default" | "sm" | "lg" | null | undefined;
22567
+ size?: "sm" | "lg" | "default" | null | undefined;
22512
22568
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22513
22569
  /**
22514
22570
  * Step item variants
@@ -22522,7 +22578,7 @@ declare const stepItemVariants: (props?: ({
22522
22578
  */
22523
22579
  declare const stepBadgeVariants: (props?: ({
22524
22580
  state?: "active" | "pending" | "complete" | null | undefined;
22525
- size?: "default" | "sm" | "lg" | null | undefined;
22581
+ size?: "sm" | "lg" | "default" | null | undefined;
22526
22582
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22527
22583
  /**
22528
22584
  * Template grid variants
@@ -22540,31 +22596,31 @@ declare const templateCardVariants: (props?: ({
22540
22596
  * Configuration section variants
22541
22597
  */
22542
22598
  declare const configSectionVariants: (props?: ({
22543
- size?: "default" | "sm" | "lg" | null | undefined;
22599
+ size?: "sm" | "lg" | "default" | null | undefined;
22544
22600
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22545
22601
  /**
22546
22602
  * Preview container variants
22547
22603
  */
22548
22604
  declare const previewContainerVariants: (props?: ({
22549
- size?: "default" | "sm" | "lg" | null | undefined;
22605
+ size?: "sm" | "lg" | "default" | null | undefined;
22550
22606
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22551
22607
  /**
22552
22608
  * Preview header variants
22553
22609
  */
22554
22610
  declare const previewHeaderVariants: (props?: ({
22555
- size?: "default" | "sm" | "lg" | null | undefined;
22611
+ size?: "sm" | "lg" | "default" | null | undefined;
22556
22612
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22557
22613
  /**
22558
22614
  * Preview content variants
22559
22615
  */
22560
22616
  declare const previewContentVariants: (props?: ({
22561
- size?: "default" | "sm" | "lg" | null | undefined;
22617
+ size?: "sm" | "lg" | "default" | null | undefined;
22562
22618
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22563
22619
  /**
22564
22620
  * Export button group variants
22565
22621
  */
22566
22622
  declare const exportButtonGroupVariants: (props?: ({
22567
- align?: "center" | "end" | "start" | null | undefined;
22623
+ align?: "end" | "start" | "center" | null | undefined;
22568
22624
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22569
22625
  /**
22570
22626
  * Form actions variants
@@ -22576,13 +22632,13 @@ declare const formActionsVariants: (props?: ({
22576
22632
  * Loading state variants
22577
22633
  */
22578
22634
  declare const loadingStateVariants: (props?: ({
22579
- size?: "default" | "sm" | "lg" | null | undefined;
22635
+ size?: "sm" | "lg" | "default" | null | undefined;
22580
22636
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22581
22637
  /**
22582
22638
  * Error state variants
22583
22639
  */
22584
22640
  declare const errorStateVariants: (props?: ({
22585
- size?: "default" | "sm" | "lg" | null | undefined;
22641
+ size?: "sm" | "lg" | "default" | null | undefined;
22586
22642
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22587
22643
  type ReportGeneratorVariantProps = VariantProps<typeof reportGeneratorVariants>;
22588
22644
  type StepIndicatorVariantProps = VariantProps<typeof stepIndicatorVariants>;
@@ -22870,49 +22926,49 @@ declare function ReportGenerator({ templates, dataSource, defaultTemplate, expor
22870
22926
  * Stepper container variants
22871
22927
  */
22872
22928
  declare const stepperVariants: (props?: ({
22873
- size?: "default" | "sm" | "lg" | null | undefined;
22929
+ size?: "sm" | "lg" | "default" | null | undefined;
22874
22930
  variant?: "vertical" | "default" | "compact" | null | undefined;
22875
22931
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22876
22932
  /**
22877
22933
  * Step item container variants
22878
22934
  */
22879
22935
  declare const stepperItemVariants: (props?: ({
22880
- size?: "default" | "sm" | "lg" | null | undefined;
22936
+ size?: "sm" | "lg" | "default" | null | undefined;
22881
22937
  variant?: "vertical" | "default" | "compact" | null | undefined;
22882
22938
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22883
22939
  /**
22884
22940
  * Step indicator (circle) variants
22885
22941
  */
22886
22942
  declare const stepperIndicatorVariants: (props?: ({
22887
- size?: "default" | "sm" | "lg" | null | undefined;
22943
+ size?: "sm" | "lg" | "default" | null | undefined;
22888
22944
  status?: "active" | "error" | "pending" | "complete" | null | undefined;
22889
22945
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22890
22946
  /**
22891
22947
  * Horizontal connector variants
22892
22948
  */
22893
22949
  declare const stepperConnectorHorizontalVariants: (props?: ({
22894
- size?: "default" | "sm" | "lg" | null | undefined;
22950
+ size?: "sm" | "lg" | "default" | null | undefined;
22895
22951
  status?: "active" | "error" | "pending" | "complete" | null | undefined;
22896
22952
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22897
22953
  /**
22898
22954
  * Vertical connector variants
22899
22955
  */
22900
22956
  declare const stepperConnectorVerticalVariants: (props?: ({
22901
- size?: "default" | "sm" | "lg" | null | undefined;
22957
+ size?: "sm" | "lg" | "default" | null | undefined;
22902
22958
  status?: "active" | "error" | "pending" | "complete" | null | undefined;
22903
22959
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22904
22960
  /**
22905
22961
  * Step label variants
22906
22962
  */
22907
22963
  declare const stepperLabelVariants: (props?: ({
22908
- size?: "default" | "sm" | "lg" | null | undefined;
22964
+ size?: "sm" | "lg" | "default" | null | undefined;
22909
22965
  status?: "active" | "error" | "pending" | "complete" | null | undefined;
22910
22966
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22911
22967
  /**
22912
22968
  * Step description variants
22913
22969
  */
22914
22970
  declare const stepperDescriptionVariants: (props?: ({
22915
- size?: "default" | "sm" | "lg" | null | undefined;
22971
+ size?: "sm" | "lg" | "default" | null | undefined;
22916
22972
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22917
22973
  type StepperVariantProps = VariantProps<typeof stepperVariants>;
22918
22974
  type StepperItemVariantProps = VariantProps<typeof stepperItemVariants>;
@@ -22983,7 +23039,7 @@ declare function Stepper({ children, className, clickable, completed, currentSte
22983
23039
  * TaskCard variant styles using CVA
22984
23040
  */
22985
23041
  declare const taskCardVariants: (props?: ({
22986
- size?: "default" | "sm" | "lg" | null | undefined;
23042
+ size?: "sm" | "lg" | "default" | null | undefined;
22987
23043
  variant?: "default" | "elevated" | "highlighted" | "minimal" | null | undefined;
22988
23044
  } & class_variance_authority_types.ClassProp) | undefined) => string;
22989
23045
  /**
@@ -23080,26 +23136,26 @@ declare function TaskCard({ assignee, children, className, completed, descriptio
23080
23136
  * TaskList container variant styles using CVA
23081
23137
  */
23082
23138
  declare const taskListVariants: (props?: ({
23083
- size?: "default" | "sm" | "lg" | null | undefined;
23139
+ size?: "sm" | "lg" | "default" | null | undefined;
23084
23140
  variant?: "default" | "compact" | "grouped" | null | undefined;
23085
23141
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23086
23142
  /**
23087
23143
  * TaskList header styles
23088
23144
  */
23089
23145
  declare const taskListHeaderVariants: (props?: ({
23090
- size?: "default" | "sm" | "lg" | null | undefined;
23146
+ size?: "sm" | "lg" | "default" | null | undefined;
23091
23147
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23092
23148
  /**
23093
23149
  * TaskList title styles
23094
23150
  */
23095
23151
  declare const taskListTitleVariants: (props?: ({
23096
- size?: "default" | "sm" | "lg" | null | undefined;
23152
+ size?: "sm" | "lg" | "default" | null | undefined;
23097
23153
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23098
23154
  /**
23099
23155
  * TaskList item wrapper styles
23100
23156
  */
23101
23157
  declare const taskListItemVariants: (props?: ({
23102
- size?: "default" | "sm" | "lg" | null | undefined;
23158
+ size?: "sm" | "lg" | "default" | null | undefined;
23103
23159
  variant?: "default" | "compact" | "grouped" | null | undefined;
23104
23160
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23105
23161
  /**
@@ -23209,7 +23265,7 @@ declare function TaskList({ className, empty, filterable, groupBy, loading, onSe
23209
23265
  declare const taskStatusVariants: (props?: ({
23210
23266
  disabled?: boolean | null | undefined;
23211
23267
  interactive?: boolean | null | undefined;
23212
- size?: "default" | "sm" | "lg" | null | undefined;
23268
+ size?: "sm" | "lg" | "default" | null | undefined;
23213
23269
  variant?: "default" | "outline" | "subtle" | "pill" | null | undefined;
23214
23270
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23215
23271
  /**
@@ -23223,19 +23279,19 @@ declare const taskStatusColorVariants: (props?: ({
23223
23279
  * Icon container variants
23224
23280
  */
23225
23281
  declare const taskStatusIconVariants: (props?: ({
23226
- size?: "default" | "sm" | "lg" | null | undefined;
23282
+ size?: "sm" | "lg" | "default" | null | undefined;
23227
23283
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23228
23284
  /**
23229
23285
  * Label variants
23230
23286
  */
23231
23287
  declare const taskStatusLabelVariants: (props?: ({
23232
- size?: "default" | "sm" | "lg" | null | undefined;
23288
+ size?: "sm" | "lg" | "default" | null | undefined;
23233
23289
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23234
23290
  /**
23235
23291
  * Trigger button variants (for interactive mode)
23236
23292
  */
23237
23293
  declare const taskStatusTriggerVariants: (props?: ({
23238
- size?: "default" | "sm" | "lg" | null | undefined;
23294
+ size?: "sm" | "lg" | "default" | null | undefined;
23239
23295
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23240
23296
  /**
23241
23297
  * Dropdown menu item variants
@@ -23347,34 +23403,34 @@ declare function TaskStatus({ children, className, customStatuses, disabled, int
23347
23403
  */
23348
23404
  declare const wizardVariants: (props?: ({
23349
23405
  variant?: "vertical" | "default" | "card" | null | undefined;
23350
- size?: "default" | "sm" | "lg" | null | undefined;
23406
+ size?: "sm" | "lg" | "default" | null | undefined;
23351
23407
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23352
23408
  /**
23353
23409
  * Wizard content area variants
23354
23410
  */
23355
23411
  declare const wizardContentVariants: (props?: ({
23356
23412
  variant?: "vertical" | "default" | "card" | null | undefined;
23357
- size?: "default" | "sm" | "lg" | null | undefined;
23413
+ size?: "sm" | "lg" | "default" | null | undefined;
23358
23414
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23359
23415
  /**
23360
23416
  * Wizard stepper area variants
23361
23417
  */
23362
23418
  declare const wizardStepperVariants: (props?: ({
23363
23419
  variant?: "vertical" | "default" | "card" | null | undefined;
23364
- size?: "default" | "sm" | "lg" | null | undefined;
23420
+ size?: "sm" | "lg" | "default" | null | undefined;
23365
23421
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23366
23422
  /**
23367
23423
  * Wizard actions area variants
23368
23424
  */
23369
23425
  declare const wizardActionsVariants: (props?: ({
23370
23426
  variant?: "vertical" | "default" | "card" | null | undefined;
23371
- size?: "default" | "sm" | "lg" | null | undefined;
23427
+ size?: "sm" | "lg" | "default" | null | undefined;
23372
23428
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23373
23429
  /**
23374
23430
  * Wizard step content wrapper variants
23375
23431
  */
23376
23432
  declare const wizardStepContentVariants: (props?: ({
23377
- size?: "default" | "sm" | "lg" | null | undefined;
23433
+ size?: "sm" | "lg" | "default" | null | undefined;
23378
23434
  } & class_variance_authority_types.ClassProp) | undefined) => string;
23379
23435
 
23380
23436
  /**
@@ -23614,4 +23670,4 @@ declare function getColorClassName(color: ChartColor, type: ColorUtility): strin
23614
23670
  */
23615
23671
  declare function getYAxisDomain(autoMinValue: boolean, minValue?: number, maxValue?: number): ["auto" | number, "auto" | number];
23616
23672
 
23617
- 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 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, CardMedia, type CardMediaProps, type CardProps, type CardSelectablePayload, 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 CommandInputClearVariantProps, 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, 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 FeatureItemVariant, 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, FileTree, FileTreeAction, FileTreeBody, FileTreeFooter, FileTreeHeader, type FileTreeNode, FileTreeProjectBadge, FileTreeProjectMeta, type FileTreeProps, type FileTreeRowContext, FileTreeSearch, type FileTreeSelectEventPayload, type FileTreeSize, type FileTreeToggleEventPayload, FileTreeToolbar, type FileTreeVariant, 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, FolderStack, type FolderStackEventPayload, type FolderStackProps, 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, type ItemEventPayload, 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, LogoConta, type LogoContaProps, type LogoContaTone, 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 ModalIntent, 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, type PaymentMethod, PaymentMethodIcon, type PaymentMethodIconProps, type PaymentMethodIconSize, 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, ReportBuilder, type ReportBuilderField, type ReportBuilderFieldKind, type ReportBuilderFilter, type ReportBuilderFilterField, type ReportBuilderFilterOp, type ReportBuilderFilterType, type ReportBuilderNumberOp, type ReportBuilderProps, 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, SidebarAvatar, 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, SidebarLogo, 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, SidebarThemeToggle, 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, type TagDotColor, 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 TextColor, 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, ThumbnailBadge, ThumbnailCheckbox, type ThumbnailMode, ThumbnailPin, ThumbnailPlayOverlay, type ThumbnailProps, type ThumbnailRounded, type ThumbnailRoundedVariant, type ThumbnailSize, type ThumbnailSizeVariant, ThumbnailTag, 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, ToolbarGroup, type ToolbarGroupProps, 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, Topbar, TopbarLeading, type TopbarLeadingProps, type TopbarProps, TopbarTrailing, type TopbarTrailingProps, 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, cardMediaVariants, 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, commandInputClearVariants, 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, 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, featureItemVariants, featuredIconVariants, feedItemVariants, feedVariants, fieldContentVariants, fieldDescriptionVariants, fieldErrorVariants, fieldGroupVariants, fieldLabelVariants, fieldLegendVariants, fieldSeparatorVariants, fieldSetVariants, fieldTitleVariants, fieldVariants, fileDropzoneVariants, filePreviewActionButtonVariants, filePreviewActionsVariants, filePreviewContentVariants, filePreviewFallbackVariants, filePreviewInfoVariants, filePreviewVariants, fileTreeRowVariants, fileTreeShellVariants, filterBuilderVariants, filterGroupHeaderVariants, filterGroupVariants, filterPreviewVariants, filterRuleVariants, filterToolbarVariants, findCountryByCode, findCountryByDialCode, flexVariants, folderStackVariants, 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, logoContaVariants, 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, parseRatio, passwordToggleVariants, paymentInputIconVariants, paymentInputInputVariants, paymentInputVariants, paymentMethodIconVariants, paymentMethodLabels, paymentMethodLogos, 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, toolbarGroupVariants, toolbarLinkVariants, toolbarSeparatorVariants, toolbarToggleGroupVariants, toolbarToggleItemVariants, toolbarVariants, tooltipArrowVariants, tooltipContentVariants, topbarLeadingVariants, topbarTrailingVariants, topbarVariants, unreadDotVariants, urlLinkIconVariants, urlValidationIconVariants, useButtonGroup, useFormField, useIsMobile, useMediaQuery, useOnWindowResize, useSidebar, useTagGroup, validateCardNumber, versionBadgeVariants, versionControlVariants, versionItemVariants, versionTimelineConnectorVariants, versionTimelineMarkerVariants, wizardActionsVariants, wizardContentVariants, wizardStepContentVariants, wizardStepperVariants, wizardVariants };
23673
+ 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, ArrowAnimated, type ArrowAnimatedProps, AspectRatio, 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, CardMedia, type CardMediaProps, type CardProps, type CardSelectablePayload, 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 CommandInputClearVariantProps, 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, 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 FeatureItemVariant, 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, FileTree, FileTreeAction, FileTreeBody, FileTreeFooter, FileTreeHeader, type FileTreeNode, FileTreeProjectBadge, FileTreeProjectMeta, type FileTreeProps, type FileTreeRowContext, FileTreeSearch, type FileTreeSelectEventPayload, type FileTreeSize, type FileTreeToggleEventPayload, FileTreeToolbar, type FileTreeVariant, 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, FolderStack, type FolderStackEventPayload, type FolderStackProps, 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, type ItemEventPayload, 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, LogoConta, type LogoContaProps, type LogoContaTone, 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 ModalIntent, 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, type PaymentMethod, PaymentMethodIcon, type PaymentMethodIconProps, type PaymentMethodIconSize, 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, ReportBuilder, type ReportBuilderField, type ReportBuilderFieldKind, type ReportBuilderFilter, type ReportBuilderFilterField, type ReportBuilderFilterOp, type ReportBuilderFilterType, type ReportBuilderNumberOp, type ReportBuilderProps, 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, SidebarAvatar, 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, SidebarLogo, 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, SidebarThemeToggle, 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, type TagDotColor, 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 TextColor, 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, ThumbnailBadge, ThumbnailCheckbox, type ThumbnailMode, ThumbnailPin, ThumbnailPlayOverlay, type ThumbnailProps, type ThumbnailRounded, type ThumbnailRoundedVariant, type ThumbnailSize, type ThumbnailSizeVariant, ThumbnailTag, 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, ToolbarGroup, type ToolbarGroupProps, 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, Topbar, TopbarLeading, type TopbarLeadingProps, type TopbarProps, TopbarTrailing, type TopbarTrailingProps, 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, arrowAnimatedHeadTransforms, arrowAnimatedHeadVariants, arrowAnimatedLineVariants, arrowAnimatedVariants, 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, cardMediaVariants, 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, commandInputClearVariants, 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, 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, featureItemVariants, featuredIconVariants, feedItemVariants, feedVariants, fieldContentVariants, fieldDescriptionVariants, fieldErrorVariants, fieldGroupVariants, fieldLabelVariants, fieldLegendVariants, fieldSeparatorVariants, fieldSetVariants, fieldTitleVariants, fieldVariants, fileDropzoneVariants, filePreviewActionButtonVariants, filePreviewActionsVariants, filePreviewContentVariants, filePreviewFallbackVariants, filePreviewInfoVariants, filePreviewVariants, fileTreeRowVariants, fileTreeShellVariants, filterBuilderVariants, filterGroupHeaderVariants, filterGroupVariants, filterPreviewVariants, filterRuleVariants, filterToolbarVariants, findCountryByCode, findCountryByDialCode, flexVariants, folderStackVariants, 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, logoContaVariants, 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, parseRatio, passwordToggleVariants, paymentInputIconVariants, paymentInputInputVariants, paymentInputVariants, paymentMethodIconVariants, paymentMethodLabels, paymentMethodLogos, 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, toolbarGroupVariants, toolbarLinkVariants, toolbarSeparatorVariants, toolbarToggleGroupVariants, toolbarToggleItemVariants, toolbarVariants, tooltipArrowVariants, tooltipContentVariants, topbarLeadingVariants, topbarTrailingVariants, topbarVariants, unreadDotVariants, urlLinkIconVariants, urlValidationIconVariants, useButtonGroup, useFormField, useIsMobile, useMediaQuery, useOnWindowResize, useSidebar, useTagGroup, validateCardNumber, versionBadgeVariants, versionControlVariants, versionItemVariants, versionTimelineConnectorVariants, versionTimelineMarkerVariants, wizardActionsVariants, wizardContentVariants, wizardStepContentVariants, wizardStepperVariants, wizardVariants };