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

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 (47) hide show
  1. package/dist/{chunk-QUENPT24.js → chunk-2NY6DDLO.js} +5 -5
  2. package/dist/{chunk-QUENPT24.js.map → chunk-2NY6DDLO.js.map} +1 -1
  3. package/dist/chunk-345S7BBL.js +3 -0
  4. package/dist/{chunk-KRHL3YH2.js.map → chunk-345S7BBL.js.map} +1 -1
  5. package/dist/{chunk-7GCTZEMK.js → chunk-5U5XAOES.js} +68 -47
  6. package/dist/chunk-5U5XAOES.js.map +1 -0
  7. package/dist/chunk-COZXTBIU.js +176 -0
  8. package/dist/chunk-COZXTBIU.js.map +1 -0
  9. package/dist/{chunk-37IIHQP4.js → chunk-IMUBWKZC.js} +52 -4
  10. package/dist/chunk-IMUBWKZC.js.map +1 -0
  11. package/dist/{chunk-MDIXY44D.js → chunk-P27ERD6W.js} +2 -2
  12. package/dist/{chunk-MDIXY44D.js.map → chunk-P27ERD6W.js.map} +1 -1
  13. package/dist/{chunk-FDES5YDF.js → chunk-WMG2MMJF.js} +3 -3
  14. package/dist/chunk-WMG2MMJF.js.map +1 -0
  15. package/dist/{chunk-2Z722V5K.js → chunk-ZPAWUKJI.js} +40 -5
  16. package/dist/chunk-ZPAWUKJI.js.map +1 -0
  17. package/dist/components/advanced/index.js +7 -7
  18. package/dist/components/data-display/BarChart/index.js +1 -1
  19. package/dist/components/data-display/BarList/index.js +1 -1
  20. package/dist/components/data-display/DataTable/index.js +1 -1
  21. package/dist/components/data-display/EmptyState/index.js +1 -1
  22. package/dist/components/data-display/LineChart/index.js +1 -1
  23. package/dist/components/data-display/index.js +16 -16
  24. package/dist/components/feedback/index.js +2 -2
  25. package/dist/components/forms/index.js +9 -10
  26. package/dist/components/index.js +65 -66
  27. package/dist/components/layout/index.js +2 -2
  28. package/dist/components/navigation/AccountSwitch/index.js +1 -1
  29. package/dist/components/navigation/Sidebar/index.js +1 -1
  30. package/dist/components/navigation/index.js +4 -4
  31. package/dist/components/primitives/index.js +10 -10
  32. package/dist/components/workflow/index.js +7 -7
  33. package/dist/index.d.ts +582 -603
  34. package/dist/index.js +65 -66
  35. package/dist/styles.css +63 -50
  36. package/package.json +12 -13
  37. package/dist/chunk-2Z722V5K.js.map +0 -1
  38. package/dist/chunk-37IIHQP4.js.map +0 -1
  39. package/dist/chunk-7GCTZEMK.js.map +0 -1
  40. package/dist/chunk-FDES5YDF.js.map +0 -1
  41. package/dist/chunk-KRHL3YH2.js +0 -3
  42. package/dist/chunk-QYWCXM7F.js +0 -96
  43. package/dist/chunk-QYWCXM7F.js.map +0 -1
  44. package/dist/chunk-SXJMERQL.js +0 -40
  45. package/dist/chunk-SXJMERQL.js.map +0 -1
  46. package/dist/components/forms/ToggleGroup/index.js +0 -6
  47. package/dist/components/forms/ToggleGroup/index.js.map +0 -1
package/dist/index.d.ts CHANGED
@@ -1,10 +1,9 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as React$1 from 'react';
2
+ import React__default, { ComponentProps, ReactNode, CSSProperties, Ref, ComponentPropsWithoutRef, ComponentRef, MouseEvent as MouseEvent$1, HTMLAttributes, ReactElement, RefObject, ComponentType, ErrorInfo, Component, SVGProps } from 'react';
2
3
  import * as class_variance_authority_types from 'class-variance-authority/types';
3
4
  import { VariantProps } from 'class-variance-authority';
4
5
  export { VariantProps as GaugeChartVariantProps } from 'class-variance-authority';
5
6
  import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
6
- import * as React$1 from 'react';
7
- import React__default, { ComponentProps, ReactNode, CSSProperties, Ref, ComponentPropsWithoutRef, ComponentRef, MouseEvent as MouseEvent$1, HTMLAttributes, ReactElement, RefObject, ComponentType, ErrorInfo, Component, SVGProps } from 'react';
8
7
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
9
8
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
10
9
  import { LucideIcon, LucideProps } from 'lucide-react';
@@ -109,12 +108,12 @@ interface ArrowAnimatedProps extends React.SVGProps<SVGSVGElement>, VariantProps
109
108
  * <ArrowAnimated size="lg" />
110
109
  * ```
111
110
  */
112
- declare function ArrowAnimated({ direction, size, className, ...props }: ArrowAnimatedProps): react_jsx_runtime.JSX.Element;
111
+ declare function ArrowAnimated({ direction, size, className, ...props }: ArrowAnimatedProps): React$1.JSX.Element;
113
112
  declare namespace ArrowAnimated {
114
113
  var displayName: string;
115
114
  }
116
115
 
117
- declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): react_jsx_runtime.JSX.Element;
116
+ declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): React$1.JSX.Element;
118
117
 
119
118
  /**
120
119
  * Common aspect ratio presets
@@ -250,12 +249,12 @@ declare const avatarVariants: (props?: ({
250
249
  bordered?: boolean | null | undefined;
251
250
  interactive?: boolean | null | undefined;
252
251
  } & class_variance_authority_types.ClassProp) | undefined) => string;
253
- declare function Avatar({ className, size, shape, bordered, interactive, contrastBorder, tooltip, children, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
254
- declare function AvatarImage({ className, ...props }: AvatarImageProps): react_jsx_runtime.JSX.Element;
252
+ declare function Avatar({ className, size, shape, bordered, interactive, contrastBorder, tooltip, children, ...props }: AvatarProps): React$1.JSX.Element;
253
+ declare function AvatarImage({ className, ...props }: AvatarImageProps): React$1.JSX.Element;
255
254
  declare const avatarFallbackVariants: (props?: ({
256
255
  colorScheme?: "default" | "destructive" | "primary" | "secondary" | "success" | "warning" | null | undefined;
257
256
  } & class_variance_authority_types.ClassProp) | undefined) => string;
258
- declare function AvatarFallback({ className, colorScheme, ...props }: AvatarFallbackProps): react_jsx_runtime.JSX.Element;
257
+ declare function AvatarFallback({ className, colorScheme, ...props }: AvatarFallbackProps): React$1.JSX.Element;
259
258
 
260
259
  declare const avatarStatusVariants: (props?: ({
261
260
  status?: "online" | "offline" | "busy" | "away" | null | undefined;
@@ -273,7 +272,7 @@ interface AvatarStatusProps extends React$1.ComponentProps<"span"> {
273
272
  */
274
273
  status?: "away" | "busy" | "offline" | "online";
275
274
  }
276
- declare function AvatarStatus({ className, status, size, ...props }: AvatarStatusProps): react_jsx_runtime.JSX.Element;
275
+ declare function AvatarStatus({ className, status, size, ...props }: AvatarStatusProps): React$1.JSX.Element;
277
276
 
278
277
  declare const avatarBadgeVariants: (props?: ({
279
278
  variant?: "company" | "verified" | null | undefined;
@@ -291,7 +290,7 @@ interface AvatarBadgeProps extends React$1.ComponentProps<"span"> {
291
290
  */
292
291
  variant?: "company" | "verified";
293
292
  }
294
- declare function AvatarBadge({ className, variant, size, children, ...props }: AvatarBadgeProps): react_jsx_runtime.JSX.Element;
293
+ declare function AvatarBadge({ className, variant, size, children, ...props }: AvatarBadgeProps): React$1.JSX.Element;
295
294
 
296
295
  declare const avatarGroupVariants: (props?: ({
297
296
  size?: "sm" | "lg" | "default" | "xs" | "xl" | "3xl" | "4xl" | null | undefined;
@@ -316,7 +315,7 @@ interface AvatarGroupProps extends React$1.ComponentProps<"div"> {
316
315
  */
317
316
  size?: AvatarSize;
318
317
  }
319
- declare function AvatarGroup({ className, max, size, bordered, children, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
318
+ declare function AvatarGroup({ className, max, size, bordered, children, ...props }: AvatarGroupProps): React$1.JSX.Element;
320
319
 
321
320
  declare const avatarLabelGroupVariants: (props?: ({
322
321
  interactive?: boolean | null | undefined;
@@ -374,7 +373,7 @@ interface AvatarLabelGroupProps extends React$1.ComponentProps<"div"> {
374
373
  * Takes first letter of first two words, uppercased
375
374
  */
376
375
  declare function getInitials(name: string): string;
377
- declare function AvatarLabelGroup({ className, src, alt, name, description, size, status, badge, interactive, onClick, tooltip, ...props }: AvatarLabelGroupProps): react_jsx_runtime.JSX.Element;
376
+ declare function AvatarLabelGroup({ className, src, alt, name, description, size, status, badge, interactive, onClick, tooltip, ...props }: AvatarLabelGroupProps): React$1.JSX.Element;
378
377
 
379
378
  declare const avatarAddButtonVariants: (props?: ({
380
379
  size?: "sm" | "lg" | "default" | "xs" | "xl" | "3xl" | "4xl" | null | undefined;
@@ -382,7 +381,7 @@ declare const avatarAddButtonVariants: (props?: ({
382
381
  interface AvatarAddButtonProps extends React$1.ComponentProps<"button"> {
383
382
  size?: "3xl" | "4xl" | "default" | "lg" | "sm" | "xl" | "xs";
384
383
  }
385
- declare function AvatarAddButton({ className, size, ...props }: AvatarAddButtonProps): react_jsx_runtime.JSX.Element;
384
+ declare function AvatarAddButton({ className, size, ...props }: AvatarAddButtonProps): React$1.JSX.Element;
386
385
 
387
386
  interface AvatarSkeletonProps extends React$1.ComponentProps<"div"> {
388
387
  /**
@@ -407,12 +406,12 @@ interface AvatarLabelGroupSkeletonProps extends React$1.ComponentProps<"div"> {
407
406
  * Skeleton placeholder for Avatar component
408
407
  * Use while loading user data
409
408
  */
410
- declare function AvatarSkeleton({ size, shape, className, ...props }: AvatarSkeletonProps): react_jsx_runtime.JSX.Element;
409
+ declare function AvatarSkeleton({ size, shape, className, ...props }: AvatarSkeletonProps): React$1.JSX.Element;
411
410
  /**
412
411
  * Skeleton placeholder for AvatarLabelGroup component
413
412
  * Use while loading user data with name and description
414
413
  */
415
- declare function AvatarLabelGroupSkeleton({ size, className, ...props }: AvatarLabelGroupSkeletonProps): react_jsx_runtime.JSX.Element;
414
+ declare function AvatarLabelGroupSkeleton({ size, className, ...props }: AvatarLabelGroupSkeletonProps): React$1.JSX.Element;
416
415
 
417
416
  /**
418
417
  * Avatar props for badge avatar variant
@@ -516,7 +515,7 @@ declare const badgeVariants: (props?: ({
516
515
  color?: "destructive" | "primary" | "secondary" | "success" | "warning" | "info" | "tip" | "muted" | null | undefined;
517
516
  size?: "sm" | "lg" | "default" | null | undefined;
518
517
  } & class_variance_authority_types.ClassProp) | undefined) => string;
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;
518
+ 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$1.JSX.Element;
520
519
 
521
520
  /**
522
521
  * Event payload passed to Button callbacks
@@ -639,7 +638,7 @@ declare const buttonVariants: (props?: ({
639
638
  size?: "sm" | "lg" | "default" | "icon" | "icon-sm" | null | undefined;
640
639
  shape?: "square" | "circle" | "default" | null | undefined;
641
640
  } & class_variance_authority_types.ClassProp) | undefined) => string;
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;
641
+ 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$1.JSX.Element;
643
642
 
644
643
  /**
645
644
  * Divider orientation type
@@ -757,7 +756,7 @@ declare const dividerWrapperVariants: (props?: ({
757
756
  * </Divider>
758
757
  * ```
759
758
  */
760
- declare function Divider({ className, orientation, decorative, type, visualStyle, lineType, labelPosition, children, ...props }: DividerProps): react_jsx_runtime.JSX.Element;
759
+ declare function Divider({ className, orientation, decorative, type, visualStyle, lineType, labelPosition, children, ...props }: DividerProps): React$1.JSX.Element;
761
760
 
762
761
  /**
763
762
  * Context value for ButtonGroup prop inheritance
@@ -895,14 +894,14 @@ declare const buttonGroupItemVariants: (props?: ({
895
894
  iconMode?: "none" | "dot" | "leading" | "only" | null | undefined;
896
895
  current?: boolean | null | undefined;
897
896
  } & class_variance_authority_types.ClassProp) | undefined) => string;
898
- declare function ButtonGroup({ className, orientation, variant, size, buttonVariant, disabled, children, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
899
- declare function ButtonGroupText({ className, asChild, ...props }: ButtonGroupTextProps): react_jsx_runtime.JSX.Element;
900
- declare function ButtonGroupSeparator({ className, orientation, ...props }: ButtonGroupSeparatorProps): react_jsx_runtime.JSX.Element;
897
+ declare function ButtonGroup({ className, orientation, variant, size, buttonVariant, disabled, children, ...props }: ButtonGroupProps): React$1.JSX.Element;
898
+ declare function ButtonGroupText({ className, asChild, ...props }: ButtonGroupTextProps): React$1.JSX.Element;
899
+ declare function ButtonGroupSeparator({ className, orientation, ...props }: ButtonGroupSeparatorProps): React$1.JSX.Element;
901
900
  /**
902
901
  * ButtonGroupItem - Individual segment in a segmented button group
903
902
  * Use within ButtonGroup variant="segmented"
904
903
  */
905
- declare function ButtonGroupItem({ className, current, iconMode, icon, dot, children, disabled, size, ...props }: ButtonGroupItemProps): react_jsx_runtime.JSX.Element;
904
+ declare function ButtonGroupItem({ className, current, iconMode, icon, dot, children, disabled, size, ...props }: ButtonGroupItemProps): React$1.JSX.Element;
906
905
 
907
906
  /**
908
907
  * ConfirmButton component props
@@ -1009,7 +1008,7 @@ type ConfirmButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]
1009
1008
  * </ConfirmButton>
1010
1009
  * ```
1011
1010
  */
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;
1011
+ 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$1.JSX.Element;
1013
1012
 
1014
1013
  declare const featuredIconVariants: (props?: ({
1015
1014
  size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | null | undefined;
@@ -1027,7 +1026,7 @@ type FeaturedIconSize = NonNullable<VariantProps<typeof featuredIconVariants>["s
1027
1026
  type FeaturedIconShape = NonNullable<VariantProps<typeof featuredIconVariants>["shape"]>;
1028
1027
  type FeaturedIconTone = NonNullable<VariantProps<typeof featuredIconVariants>["tone"]>;
1029
1028
 
1030
- declare function FeaturedIcon({ className, size, shape, tone, children, ...props }: FeaturedIconProps): react_jsx_runtime.JSX.Element;
1029
+ declare function FeaturedIcon({ className, size, shape, tone, children, ...props }: FeaturedIconProps): React$1.JSX.Element;
1031
1030
 
1032
1031
  declare const folderStackVariants: (props?: ({
1033
1032
  size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
@@ -1066,7 +1065,7 @@ interface FolderStackProps extends Omit<React$1.ComponentProps<"div">, "onClick"
1066
1065
  * @example
1067
1066
  * <FolderStack tints={collectTints(folder)} size="default" interactive onClick={navigate} aria-label={folder.name} />
1068
1067
  */
1069
- declare function FolderStack({ tints, size, interactive, active, className, "aria-label": ariaLabel, onClick, ...props }: FolderStackProps): react_jsx_runtime.JSX.Element;
1068
+ declare function FolderStack({ tints, size, interactive, active, className, "aria-label": ariaLabel, onClick, ...props }: FolderStackProps): React$1.JSX.Element;
1070
1069
  declare namespace FolderStack {
1071
1070
  var displayName: string;
1072
1071
  }
@@ -1135,7 +1134,7 @@ declare const headingVariants: (props?: ({
1135
1134
  * // H2 semantico com tamanho visual de H1
1136
1135
  * <Heading level={2} size="4xl">Titulo Grande</Heading>
1137
1136
  */
1138
- declare function Heading({ className, level, size, weight, align, color, gradient, truncate, asChild, ref, ...props }: HeadingProps): react_jsx_runtime.JSX.Element;
1137
+ declare function Heading({ className, level, size, weight, align, color, gradient, truncate, asChild, ref, ...props }: HeadingProps): React$1.JSX.Element;
1139
1138
 
1140
1139
  /**
1141
1140
  * Icon component props
@@ -1184,7 +1183,7 @@ declare const iconVariants: (props?: ({
1184
1183
  variant?: "default" | "destructive" | "primary" | "success" | "warning" | "muted" | null | undefined;
1185
1184
  size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | null | undefined;
1186
1185
  } & class_variance_authority_types.ClassProp) | undefined) => string;
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;
1186
+ declare function Icon({ name: IconComponent, variant, size, spin, pulse, decorative, className, "aria-label": ariaLabel, "aria-hidden": ariaHidden, role, ref, ...props }: IconProps): React$1.JSX.Element;
1188
1187
 
1189
1188
  /**
1190
1189
  * Available aspect ratio options
@@ -1271,7 +1270,7 @@ declare const imageVariants: (props?: ({
1271
1270
  * placeholder={<div className="animate-pulse bg-muted" />}
1272
1271
  * />
1273
1272
  */
1274
- declare function Image(props: ImageProps): react_jsx_runtime.JSX.Element;
1273
+ declare function Image(props: ImageProps): React$1.JSX.Element;
1275
1274
 
1276
1275
  /**
1277
1276
  * Kbd variants using CVA
@@ -1345,7 +1344,7 @@ interface KbdGroupProps extends ComponentProps<"div"> {
1345
1344
  * <Kbd variant="outline">Esc</Kbd>
1346
1345
  * ```
1347
1346
  */
1348
- declare function Kbd({ className, size, variant, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
1347
+ declare function Kbd({ className, size, variant, ...props }: KbdProps): React$1.JSX.Element;
1349
1348
  /**
1350
1349
  * KbdGroup component for grouping keyboard shortcuts.
1351
1350
  *
@@ -1358,7 +1357,7 @@ declare function Kbd({ className, size, variant, ...props }: KbdProps): react_js
1358
1357
  * </KbdGroup>
1359
1358
  * ```
1360
1359
  */
1361
- declare function KbdGroup({ className, ...props }: KbdGroupProps): react_jsx_runtime.JSX.Element;
1360
+ declare function KbdGroup({ className, ...props }: KbdGroupProps): React$1.JSX.Element;
1362
1361
 
1363
1362
  /**
1364
1363
  * Label component props
@@ -1389,7 +1388,7 @@ interface LabelProps extends ComponentProps<typeof LabelPrimitive.Root> {
1389
1388
  size?: "lg" | "md" | "sm";
1390
1389
  }
1391
1390
 
1392
- declare function Label({ className, size, required, optional, optionalText, children, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
1391
+ declare function Label({ className, size, required, optional, optionalText, children, ...props }: LabelProps): React$1.JSX.Element;
1393
1392
 
1394
1393
  /**
1395
1394
  * Event payload passed to Link callbacks
@@ -1458,7 +1457,7 @@ declare const linkVariants: (props?: ({
1458
1457
  size?: "sm" | "lg" | "inherit" | "default" | "xs" | null | undefined;
1459
1458
  underline?: "none" | "always" | "hover" | null | undefined;
1460
1459
  } & class_variance_authority_types.ClassProp) | undefined) => string;
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;
1460
+ declare function Link({ className, variant, size, underline, asChild, external, leftIcon, rightIcon, showExternalIcon, children, onClick, href, rel, "data-id": dataId, ...props }: LinkProps): React$1.JSX.Element;
1462
1461
 
1463
1462
  /**
1464
1463
  * Available paragraph sizes
@@ -1554,7 +1553,7 @@ declare const paragraphVariants: (props?: ({
1554
1553
  * Texto destacado
1555
1554
  * </Paragraph>
1556
1555
  */
1557
- declare function Paragraph({ className, size, weight, color, align, leading, spacing, prose, asChild, ref, ...props }: ParagraphProps): react_jsx_runtime.JSX.Element;
1556
+ declare function Paragraph({ className, size, weight, color, align, leading, spacing, prose, asChild, ref, ...props }: ParagraphProps): React$1.JSX.Element;
1558
1557
 
1559
1558
  /**
1560
1559
  * The card "plate" that frames a payment brand logo. Background, border and
@@ -1589,7 +1588,7 @@ type PaymentMethodIconSize = NonNullable<VariantProps<typeof paymentMethodIconVa
1589
1588
  * from Figma) framed in a tokenized card. Renders as a labelled `img` for
1590
1589
  * assistive tech; pass `label=""` when the brand is already named nearby.
1591
1590
  */
1592
- declare function PaymentMethodIcon({ method, size, label, className, ...props }: PaymentMethodIconProps): react_jsx_runtime.JSX.Element;
1591
+ declare function PaymentMethodIcon({ method, size, label, className, ...props }: PaymentMethodIconProps): React$1.JSX.Element;
1593
1592
 
1594
1593
  declare const paymentMethodLabels: Record<PaymentMethod, string>;
1595
1594
  declare const paymentMethodLogos: Record<PaymentMethod, ReactNode>;
@@ -1725,7 +1724,7 @@ interface ProgressBarLabelProps {
1725
1724
  * <ProgressBar value={30} color="error" size="lg" />
1726
1725
  * ```
1727
1726
  */
1728
- declare function ProgressBar({ className, value, max, size, color, label, formatValue, showValue, animate, tooltip, ref, ...props }: ProgressBarProps): react_jsx_runtime.JSX.Element;
1727
+ declare function ProgressBar({ className, value, max, size, color, label, formatValue, showValue, animate, tooltip, ref, ...props }: ProgressBarProps): React$1.JSX.Element;
1729
1728
 
1730
1729
  /**
1731
1730
  * ProgressBar root (track) variants
@@ -1910,7 +1909,7 @@ interface ProgressCircleProps {
1910
1909
  * <ProgressCircle value={50} size="lg" color="warning" />
1911
1910
  * ```
1912
1911
  */
1913
- declare function ProgressCircle({ value, max, indeterminate, size, shape, color, label, formatValue, showValue, radius: customRadius, strokeWidth: customStrokeWidth, className, animate, tooltip, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
1912
+ declare function ProgressCircle({ value, max, indeterminate, size, shape, color, label, formatValue, showValue, radius: customRadius, strokeWidth: customStrokeWidth, className, animate, tooltip, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, }: ProgressCircleProps): React$1.JSX.Element;
1914
1913
 
1915
1914
  /**
1916
1915
  * Size configuration for ProgressCircle
@@ -2067,7 +2066,7 @@ interface SkeletonLoaderProps extends ComponentProps<"div">, VariantProps<typeof
2067
2066
  * </div>
2068
2067
  * ```
2069
2068
  */
2070
- declare function SkeletonLoader({ className, shape, size, animation, ...props }: SkeletonLoaderProps): react_jsx_runtime.JSX.Element;
2069
+ declare function SkeletonLoader({ className, shape, size, animation, ...props }: SkeletonLoaderProps): React$1.JSX.Element;
2071
2070
 
2072
2071
  /**
2073
2072
  * Token-based size type derived from spacerVariants
@@ -2153,7 +2152,7 @@ declare const spacerVariants: (props?: ({
2153
2152
  * <Spacer flex="grow" />
2154
2153
  * ```
2155
2154
  */
2156
- declare function Spacer({ className, size, axis, flex, style, ref, ...props }: SpacerProps): react_jsx_runtime.JSX.Element;
2155
+ declare function Spacer({ className, size, axis, flex, style, ref, ...props }: SpacerProps): React$1.JSX.Element;
2157
2156
 
2158
2157
  /**
2159
2158
  * Spinner variants using CVA
@@ -2228,7 +2227,7 @@ interface SpinnerProps extends Omit<ComponentProps<"svg">, "color">, VariantProp
2228
2227
  /**
2229
2228
  * GradientSpinner - Arc spinner with gradient effect
2230
2229
  */
2231
- declare function GradientSpinner({ className, size, ...props }: Omit<SpinnerProps, "color" | "variant">): react_jsx_runtime.JSX.Element;
2230
+ declare function GradientSpinner({ className, size, ...props }: Omit<SpinnerProps, "color" | "variant">): React$1.JSX.Element;
2232
2231
  /**
2233
2232
  * Spinner component for displaying loading indicators.
2234
2233
  *
@@ -2254,7 +2253,7 @@ declare function GradientSpinner({ className, size, ...props }: Omit<SpinnerProp
2254
2253
  * <Spinner size="xl" color="success" />
2255
2254
  * ```
2256
2255
  */
2257
- declare function Spinner({ className, size, color, variant, ...props }: SpinnerProps): react_jsx_runtime.JSX.Element;
2256
+ declare function Spinner({ className, size, color, variant, ...props }: SpinnerProps): React$1.JSX.Element;
2258
2257
 
2259
2258
  /**
2260
2259
  * Event payload passed to SplitButton callbacks
@@ -2366,7 +2365,7 @@ declare const splitButtonVariants: (props?: ({
2366
2365
  size?: "sm" | "md" | "lg" | null | undefined;
2367
2366
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2368
2367
 
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;
2368
+ declare function SplitButton({ className, variant, size, children, onClick, menuItems, loading, loadingText, disabled, leftIcon, "data-id": dataId, triggerAriaLabel, defaultOpen, open, onOpenChange, ...props }: SplitButtonProps): React$1.JSX.Element;
2370
2369
 
2371
2370
  /**
2372
2371
  * StatusIndicator style variants using CVA
@@ -2407,7 +2406,7 @@ type StatusIndicatorVariant = NonNullable<VariantProps<typeof statusIndicatorVar
2407
2406
  */
2408
2407
  type StatusIndicatorSize = NonNullable<VariantProps<typeof statusIndicatorVariants>["size"]>;
2409
2408
 
2410
- declare function StatusIndicator({ className, variant, shape, size, pulse, label, labelPosition, "aria-label": ariaLabel, ...props }: StatusIndicatorProps): react_jsx_runtime.JSX.Element;
2409
+ declare function StatusIndicator({ className, variant, shape, size, pulse, label, labelPosition, "aria-label": ariaLabel, ...props }: StatusIndicatorProps): React$1.JSX.Element;
2411
2410
 
2412
2411
  /**
2413
2412
  * Tag style variants using CVA
@@ -2551,7 +2550,7 @@ interface TagGroupProps extends ComponentProps<"div">, VariantProps<typeof tagGr
2551
2550
  * </Tag>
2552
2551
  * ```
2553
2552
  */
2554
- declare function Tag({ children, className, size: sizeProp, checkbox, checked: controlledChecked, defaultChecked, onCheckedChange, dot, dotColor, icon, avatar, country, count, onDismiss, disabled: disabledProp, onClick, onKeyDown, ...props }: TagProps): react_jsx_runtime.JSX.Element;
2553
+ declare function Tag({ children, className, size: sizeProp, checkbox, checked: controlledChecked, defaultChecked, onCheckedChange, dot, dotColor, icon, avatar, country, count, onDismiss, disabled: disabledProp, onClick, onKeyDown, ...props }: TagProps): React$1.JSX.Element;
2555
2554
  declare namespace Tag {
2556
2555
  var displayName: string;
2557
2556
  }
@@ -2594,7 +2593,7 @@ declare function useTagGroup(): null | TagGroupContextValue;
2594
2593
  * </TagGroup>
2595
2594
  * ```
2596
2595
  */
2597
- declare function TagGroup({ children, className, layout, gap, align, size, disabled, ...props }: TagGroupProps): react_jsx_runtime.JSX.Element;
2596
+ declare function TagGroup({ children, className, layout, gap, align, size, disabled, ...props }: TagGroupProps): React$1.JSX.Element;
2598
2597
  declare namespace TagGroup {
2599
2598
  var displayName: string;
2600
2599
  }
@@ -2613,7 +2612,7 @@ interface TextProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "color">,
2613
2612
  htmlFor?: string;
2614
2613
  truncate?: boolean;
2615
2614
  }
2616
- declare function Text({ className, variant, size, weight, color, as, asChild, truncate, children, ...props }: TextProps): react_jsx_runtime.JSX.Element;
2615
+ declare function Text({ className, variant, size, weight, color, as, asChild, truncate, children, ...props }: TextProps): React$1.JSX.Element;
2617
2616
 
2618
2617
  /**
2619
2618
  * Variant type derived from textVariants.
@@ -2784,7 +2783,7 @@ declare const thumbnailVariants: (props?: ({
2784
2783
  * <Thumbnail.Badge color="success">novo</Thumbnail.Badge>
2785
2784
  * </Thumbnail>
2786
2785
  */
2787
- declare function Thumbnail({ src, alt, size, aspectRatio, rounded, mode, tint, fallback, placeholder, onClick, selected, disabled, className, children, ...props }: ThumbnailProps): react_jsx_runtime.JSX.Element;
2786
+ declare function Thumbnail({ src, alt, size, aspectRatio, rounded, mode, tint, fallback, placeholder, onClick, selected, disabled, className, children, ...props }: ThumbnailProps): React$1.JSX.Element;
2788
2787
  declare namespace Thumbnail {
2789
2788
  var Tag: typeof ThumbnailTag;
2790
2789
  var PlayOverlay: typeof ThumbnailPlayOverlay;
@@ -2795,17 +2794,17 @@ declare namespace Thumbnail {
2795
2794
  interface ThumbnailTagProps extends React$1.ComponentProps<"span"> {
2796
2795
  position?: "bottom-left" | "bottom-right";
2797
2796
  }
2798
- declare function ThumbnailTag({ position, className, ...props }: ThumbnailTagProps): react_jsx_runtime.JSX.Element;
2797
+ declare function ThumbnailTag({ position, className, ...props }: ThumbnailTagProps): React$1.JSX.Element;
2799
2798
  interface ThumbnailPlayOverlayProps {
2800
2799
  className?: string;
2801
2800
  duration?: string;
2802
2801
  size?: "default" | "lg" | "sm";
2803
2802
  }
2804
- declare function ThumbnailPlayOverlay({ duration, size, className, }: ThumbnailPlayOverlayProps): react_jsx_runtime.JSX.Element;
2803
+ declare function ThumbnailPlayOverlay({ duration, size, className, }: ThumbnailPlayOverlayProps): React$1.JSX.Element;
2805
2804
  interface ThumbnailBadgeProps extends React$1.ComponentProps<typeof Badge> {
2806
2805
  position?: "top-left" | "top-right";
2807
2806
  }
2808
- declare function ThumbnailBadge({ position, className, ...props }: ThumbnailBadgeProps): react_jsx_runtime.JSX.Element;
2807
+ declare function ThumbnailBadge({ position, className, ...props }: ThumbnailBadgeProps): React$1.JSX.Element;
2809
2808
  interface ThumbnailCheckboxProps {
2810
2809
  "aria-label"?: string;
2811
2810
  checked: boolean;
@@ -2813,7 +2812,7 @@ interface ThumbnailCheckboxProps {
2813
2812
  onChange: (checked: boolean, event: React$1.KeyboardEvent<HTMLButtonElement> | React$1.MouseEvent<HTMLButtonElement>) => void;
2814
2813
  position?: "top-left" | "top-right";
2815
2814
  }
2816
- declare function ThumbnailCheckbox({ checked, onChange, position, className, "aria-label": ariaLabel, }: ThumbnailCheckboxProps): react_jsx_runtime.JSX.Element;
2815
+ declare function ThumbnailCheckbox({ checked, onChange, position, className, "aria-label": ariaLabel, }: ThumbnailCheckboxProps): React$1.JSX.Element;
2817
2816
  interface ThumbnailPinProps {
2818
2817
  "aria-label"?: string;
2819
2818
  className?: string;
@@ -2821,7 +2820,7 @@ interface ThumbnailPinProps {
2821
2820
  pinned: boolean;
2822
2821
  position?: "top-left" | "top-right";
2823
2822
  }
2824
- declare function ThumbnailPin({ pinned, onToggle, position, className, "aria-label": ariaLabel, }: ThumbnailPinProps): react_jsx_runtime.JSX.Element;
2823
+ declare function ThumbnailPin({ pinned, onToggle, position, className, "aria-label": ariaLabel, }: ThumbnailPinProps): React$1.JSX.Element;
2825
2824
 
2826
2825
  /**
2827
2826
  * Toggle component props
@@ -2969,13 +2968,13 @@ declare const toggleVariants: (props?: ({
2969
2968
  shape?: "rounded" | "pill" | null | undefined;
2970
2969
  connected?: boolean | null | undefined;
2971
2970
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2972
- declare function Toggle({ className, variant, size, shape, icon, children, ...props }: ToggleProps): react_jsx_runtime.JSX.Element;
2971
+ declare function Toggle({ className, variant, size, shape, icon, children, ...props }: ToggleProps): React$1.JSX.Element;
2973
2972
  declare namespace Toggle {
2974
2973
  var Group: typeof ToggleGroup;
2975
2974
  var Item: typeof ToggleItem;
2976
2975
  }
2977
- declare function ToggleGroup({ className, variant, size, shape, spacing, children, ...props }: ToggleGroupProps): react_jsx_runtime.JSX.Element;
2978
- declare function ToggleItem({ className, variant, size, shape, icon, children, ...props }: ToggleItemProps): react_jsx_runtime.JSX.Element;
2976
+ declare function ToggleGroup({ className, variant, size, shape, spacing, children, ...props }: ToggleGroupProps): React$1.JSX.Element;
2977
+ declare function ToggleItem({ className, variant, size, shape, icon, children, ...props }: ToggleItemProps): React$1.JSX.Element;
2979
2978
 
2980
2979
  /**
2981
2980
  * Autocomplete size variants
@@ -3173,7 +3172,7 @@ interface AutocompleteProps extends Omit<ComponentProps<"div">, "onChange"> {
3173
3172
  * />
3174
3173
  * ```
3175
3174
  */
3176
- declare function Autocomplete({ options, value: controlledValue, defaultValue, placeholder, loading, disabled, dropdown, dropdownMode, emptyMessage, error, errorMessage, icon, loadingMessage, autoHighlight, completeOnFocus, forceSelection, multiple, onChange, onClear, onInputChange, debounceMs, minChars, showClear, size, variant, open: controlledOpen, defaultOpen, onOpenChange, className, ...props }: AutocompleteProps): react_jsx_runtime.JSX.Element;
3175
+ declare function Autocomplete({ options, value: controlledValue, defaultValue, placeholder, loading, disabled, dropdown, dropdownMode, emptyMessage, error, errorMessage, icon, loadingMessage, autoHighlight, completeOnFocus, forceSelection, multiple, onChange, onClear, onInputChange, debounceMs, minChars, showClear, size, variant, open: controlledOpen, defaultOpen, onOpenChange, className, ...props }: AutocompleteProps): React$1.JSX.Element;
3177
3176
 
3178
3177
  /**
3179
3178
  * Checkbox size variants
@@ -3194,7 +3193,7 @@ interface CheckboxProps extends ComponentProps<typeof CheckboxPrimitive.Root> {
3194
3193
  */
3195
3194
  type CheckboxState = "indeterminate" | boolean;
3196
3195
 
3197
- declare function Checkbox({ className, size, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
3196
+ declare function Checkbox({ className, size, ...props }: CheckboxProps): React$1.JSX.Element;
3198
3197
 
3199
3198
  declare const checkboxVariants: (props?: ({
3200
3199
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -3341,7 +3340,7 @@ interface CheckboxGroupItemProps {
3341
3340
  * />
3342
3341
  * ```
3343
3342
  */
3344
- declare function CheckboxGroupItem({ className, size, label, description, id, value, checked, onCheckedChange, disabled, name, }: CheckboxGroupItemProps): react_jsx_runtime.JSX.Element;
3343
+ declare function CheckboxGroupItem({ className, size, label, description, id, value, checked, onCheckedChange, disabled, name, }: CheckboxGroupItemProps): React$1.JSX.Element;
3345
3344
  /**
3346
3345
  * CheckboxGroup - A group of related checkboxes with shared state management
3347
3346
  *
@@ -3371,7 +3370,7 @@ declare function CheckboxGroupItem({ className, size, label, description, id, va
3371
3370
  * />
3372
3371
  * ```
3373
3372
  */
3374
- declare function CheckboxGroup({ className, label, options, value: controlledValue, defaultValue, onChange, orientation, size, disabled, name, required, }: CheckboxGroupProps): react_jsx_runtime.JSX.Element;
3373
+ declare function CheckboxGroup({ className, label, options, value: controlledValue, defaultValue, onChange, orientation, size, disabled, name, required, }: CheckboxGroupProps): React$1.JSX.Element;
3375
3374
 
3376
3375
  declare const checkboxGroupVariants: (props?: ({
3377
3376
  orientation?: "vertical" | "horizontal" | null | undefined;
@@ -3482,7 +3481,7 @@ interface ColorPickerProps extends Omit<ComponentProps<"div">, "defaultValue" |
3482
3481
  variant?: ColorPickerVariant;
3483
3482
  }
3484
3483
 
3485
- declare function ColorPicker({ className, value, defaultValue, placeholder, disabled, swatches, showInput, showAlpha, showPreview, onChange, onOpenChange, size, variant, required, invalid, id, name, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, ...props }: ColorPickerProps): react_jsx_runtime.JSX.Element;
3484
+ declare function ColorPicker({ className, value, defaultValue, placeholder, disabled, swatches, showInput, showAlpha, showPreview, onChange, onOpenChange, size, variant, required, invalid, id, name, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, ...props }: ColorPickerProps): React$1.JSX.Element;
3486
3485
 
3487
3486
  /**
3488
3487
  * ColorPicker trigger variant styles using CVA
@@ -3630,7 +3629,7 @@ interface ComboboxProps extends Omit<ComponentProps<"button">, "onChange" | "val
3630
3629
  * />
3631
3630
  * ```
3632
3631
  */
3633
- declare function Combobox({ options, value: controlledValue, defaultValue, placeholder, searchPlaceholder, emptyMessage, disabled, open: controlledOpen, defaultOpen, onOpenChange, onChange, onSearch, size, variant, kbdHint, className, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
3632
+ declare function Combobox({ options, value: controlledValue, defaultValue, placeholder, searchPlaceholder, emptyMessage, disabled, open: controlledOpen, defaultOpen, onOpenChange, onChange, onSearch, size, variant, kbdHint, className, ...props }: ComboboxProps): React$1.JSX.Element;
3634
3633
 
3635
3634
  /**
3636
3635
  * DatePicker size variants
@@ -3799,7 +3798,7 @@ interface DatePickerProps extends Omit<ComponentProps<"div">, "defaultValue" | "
3799
3798
  variant?: DatePickerVariant;
3800
3799
  }
3801
3800
 
3802
- declare function DatePicker({ ref, className, align, dialogLabel, value, defaultValue, placeholder, disabled, disabledDates, readOnly, showTimePicker, showToday, timeLabel, timeMinuteStep, timeUse12Hour, todayLabel, minDate, maxDate, format, locale, onChange, onOpenChange, onClear, size, variant, required, invalid, clearable, calendarProps, id, name, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, "aria-describedby": ariaDescribedby, ...props }: DatePickerProps): react_jsx_runtime.JSX.Element;
3801
+ declare function DatePicker({ ref, className, align, dialogLabel, value, defaultValue, placeholder, disabled, disabledDates, readOnly, showTimePicker, showToday, timeLabel, timeMinuteStep, timeUse12Hour, todayLabel, minDate, maxDate, format, locale, onChange, onOpenChange, onClear, size, variant, required, invalid, clearable, calendarProps, id, name, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, "aria-describedby": ariaDescribedby, ...props }: DatePickerProps): React$1.JSX.Element;
3803
3802
 
3804
3803
  /**
3805
3804
  * DatePicker trigger variant styles using CVA
@@ -3858,8 +3857,8 @@ type CalendarDayButtonProps = ComponentPropsWithoutRef<typeof DayButton>;
3858
3857
  */
3859
3858
  type CalendarRef = ComponentRef<typeof DayPicker>;
3860
3859
 
3861
- declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, activeDates, modifiers: propModifiers, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
3862
- declare function CalendarDayButton({ className, day, modifiers, children, ...props }: CalendarDayButtonProps): react_jsx_runtime.JSX.Element;
3860
+ declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, activeDates, modifiers: propModifiers, ...props }: CalendarProps): React$1.JSX.Element;
3861
+ declare function CalendarDayButton({ className, day, modifiers, children, ...props }: CalendarDayButtonProps): React$1.JSX.Element;
3863
3862
 
3864
3863
  /**
3865
3864
  * Calendar container styles
@@ -4030,17 +4029,17 @@ interface DateRangeInputProps {
4030
4029
  /**
4031
4030
  * DateRangePicker component for selecting a date range with optional presets
4032
4031
  */
4033
- declare function DateRangePicker({ ref, className, value, defaultValue, placeholder, disabled, disabledDates, readOnly, minDate, maxDate, format, locale, onChange, onOpenChange, onClear, size, variant, displayMode, modalTitle, required, invalid, clearable, numberOfMonths, presets, showPresets, requireConfirmation, showTodayButton, activeDates, calendarProps, id, name, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, "aria-describedby": ariaDescribedby, ...props }: DateRangePickerProps): react_jsx_runtime.JSX.Element;
4032
+ declare function DateRangePicker({ ref, className, value, defaultValue, placeholder, disabled, disabledDates, readOnly, minDate, maxDate, format, locale, onChange, onOpenChange, onClear, size, variant, displayMode, modalTitle, required, invalid, clearable, numberOfMonths, presets, showPresets, requireConfirmation, showTodayButton, activeDates, calendarProps, id, name, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, "aria-describedby": ariaDescribedby, ...props }: DateRangePickerProps): React$1.JSX.Element;
4034
4033
 
4035
4034
  /**
4036
4035
  * DateRangePresets component displays a list of quick-select preset date ranges
4037
4036
  */
4038
- declare function DateRangePresets({ presets, selectedPreset, onSelect, }: DateRangePresetsProps): react_jsx_runtime.JSX.Element;
4037
+ declare function DateRangePresets({ presets, selectedPreset, onSelect, }: DateRangePresetsProps): React$1.JSX.Element;
4039
4038
 
4040
4039
  /**
4041
4040
  * DateRangeInput component provides editable text inputs for date range entry
4042
4041
  */
4043
- declare function DateRangeInput({ value, format, locale, onChange, disabled, readOnly, startPlaceholder, endPlaceholder, }: DateRangeInputProps): react_jsx_runtime.JSX.Element;
4042
+ declare function DateRangeInput({ value, format, locale, onChange, disabled, readOnly, startPlaceholder, endPlaceholder, }: DateRangeInputProps): React$1.JSX.Element;
4044
4043
 
4045
4044
  /**
4046
4045
  * Default preset options for quick date range selection.
@@ -4183,7 +4182,7 @@ interface EmailInputProps extends Omit<ComponentProps<"input">, "size" | "type">
4183
4182
  * <EmailInput placeholder="Enter email" />
4184
4183
  * ```
4185
4184
  */
4186
- declare function EmailInput({ className, size, variant, validationState, showValidationIcon, validIcon, invalidIcon, disabled, ...props }: EmailInputProps): react_jsx_runtime.JSX.Element;
4185
+ declare function EmailInput({ className, size, variant, validationState, showValidationIcon, validIcon, invalidIcon, disabled, ...props }: EmailInputProps): React$1.JSX.Element;
4187
4186
 
4188
4187
  /**
4189
4188
  * Email validation icon visual variants
@@ -4293,7 +4292,7 @@ type ErrorMessageIconVariantProps = VariantProps<typeof errorMessageIconVariants
4293
4292
  * <ErrorMessage variant="bordered">Please fix this error</ErrorMessage>
4294
4293
  * ```
4295
4294
  */
4296
- declare function ErrorMessage({ className, variant, size, icon, showIcon, animated, errors, children, ref, ...props }: ErrorMessageProps & ErrorMessageVariantProps): react_jsx_runtime.JSX.Element | null;
4295
+ declare function ErrorMessage({ className, variant, size, icon, showIcon, animated, errors, children, ref, ...props }: ErrorMessageProps & ErrorMessageVariantProps): React$1.JSX.Element | null;
4297
4296
 
4298
4297
  /**
4299
4298
  * FieldSet variant styles using CVA
@@ -4425,16 +4424,16 @@ interface FieldErrorProps extends ComponentProps<"div"> {
4425
4424
  errors?: (FieldErrorItem | undefined)[];
4426
4425
  }
4427
4426
 
4428
- declare function FieldSet({ className, ...props }: FieldSetProps): react_jsx_runtime.JSX.Element;
4429
- declare function FieldLegend({ className, variant, ...props }: FieldLegendProps): react_jsx_runtime.JSX.Element;
4430
- declare function FieldGroup({ className, ...props }: FieldGroupProps): react_jsx_runtime.JSX.Element;
4431
- declare function Field({ className, orientation, ...props }: FieldProps): react_jsx_runtime.JSX.Element;
4432
- declare function FieldContent({ className, ...props }: FieldContentProps): react_jsx_runtime.JSX.Element;
4433
- declare function FieldLabel({ className, ...props }: FieldLabelProps): react_jsx_runtime.JSX.Element;
4434
- declare function FieldTitle({ className, ...props }: FieldTitleProps): react_jsx_runtime.JSX.Element;
4435
- declare function FieldDescription({ className, id, ...props }: FieldDescriptionProps): react_jsx_runtime.JSX.Element;
4436
- declare function FieldSeparator({ children, className, ...props }: FieldSeparatorProps): react_jsx_runtime.JSX.Element;
4437
- declare function FieldError({ className, children, errors, id, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element | null;
4427
+ declare function FieldSet({ className, ...props }: FieldSetProps): React$1.JSX.Element;
4428
+ declare function FieldLegend({ className, variant, ...props }: FieldLegendProps): React$1.JSX.Element;
4429
+ declare function FieldGroup({ className, ...props }: FieldGroupProps): React$1.JSX.Element;
4430
+ declare function Field({ className, orientation, ...props }: FieldProps): React$1.JSX.Element;
4431
+ declare function FieldContent({ className, ...props }: FieldContentProps): React$1.JSX.Element;
4432
+ declare function FieldLabel({ className, ...props }: FieldLabelProps): React$1.JSX.Element;
4433
+ declare function FieldTitle({ className, ...props }: FieldTitleProps): React$1.JSX.Element;
4434
+ declare function FieldDescription({ className, id, ...props }: FieldDescriptionProps): React$1.JSX.Element;
4435
+ declare function FieldSeparator({ children, className, ...props }: FieldSeparatorProps): React$1.JSX.Element;
4436
+ declare function FieldError({ className, children, errors, id, ...props }: FieldErrorProps): React$1.JSX.Element | null;
4438
4437
 
4439
4438
  /**
4440
4439
  * FloatLabel variant determines label position behavior
@@ -4481,7 +4480,7 @@ interface FloatLabelProps extends Omit<ComponentProps<"div">, "children"> {
4481
4480
  * </FloatLabel>
4482
4481
  * ```
4483
4482
  */
4484
- declare function FloatLabel({ children, label, hasValue, variant, className, ...props }: FloatLabelProps): react_jsx_runtime.JSX.Element;
4483
+ declare function FloatLabel({ children, label, hasValue, variant, className, ...props }: FloatLabelProps): React$1.JSX.Element;
4485
4484
 
4486
4485
  /**
4487
4486
  * FormValidation state types
@@ -4550,7 +4549,7 @@ type FormValidationVariantProps = VariantProps<typeof formValidationVariants>;
4550
4549
  * />
4551
4550
  * ```
4552
4551
  */
4553
- declare function FormValidation({ className, state, error, success, warning, help, ...props }: FormValidationProps & FormValidationVariantProps): react_jsx_runtime.JSX.Element | null;
4552
+ declare function FormValidation({ className, state, error, success, warning, help, ...props }: FormValidationProps & FormValidationVariantProps): React$1.JSX.Element | null;
4554
4553
 
4555
4554
  /**
4556
4555
  * HelpText visual variants
@@ -4648,7 +4647,7 @@ type HelpTextIconVariantProps = VariantProps<typeof helpTextIconVariants>;
4648
4647
  * <HelpText srOnly>This is only visible to screen readers</HelpText>
4649
4648
  * ```
4650
4649
  */
4651
- declare function HelpText({ className, variant, size, icon, showIcon, asChild, srOnly, children, ...props }: HelpTextProps & Omit<HelpTextVariantProps, "srOnly">): react_jsx_runtime.JSX.Element;
4650
+ declare function HelpText({ className, variant, size, icon, showIcon, asChild, srOnly, children, ...props }: HelpTextProps & Omit<HelpTextVariantProps, "srOnly">): React$1.JSX.Element;
4652
4651
 
4653
4652
  /**
4654
4653
  * Props for the IftaLabel component
@@ -4679,7 +4678,7 @@ interface IftaLabelProps extends Omit<ComponentProps<"div">, "children"> {
4679
4678
  * </IftaLabel>
4680
4679
  * ```
4681
4680
  */
4682
- declare function IftaLabel({ children, label, className, ...props }: IftaLabelProps): react_jsx_runtime.JSX.Element;
4681
+ declare function IftaLabel({ children, label, className, ...props }: IftaLabelProps): React$1.JSX.Element;
4683
4682
 
4684
4683
  /**
4685
4684
  * FormItem variant styles using CVA
@@ -4809,9 +4808,9 @@ interface UseFormFieldReturn {
4809
4808
  name: string;
4810
4809
  }
4811
4810
 
4812
- declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
4811
+ declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, handleSubmit, unregister, control, register, setFocus, subscribe, }: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
4813
4812
  declare const FormFieldContext: React$1.Context<FormFieldContextValue<FieldValues, string>>;
4814
- declare function FormField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
4813
+ declare function FormField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>): React$1.JSX.Element;
4815
4814
  declare const useFormField: () => {
4816
4815
  invalid: boolean;
4817
4816
  isDirty: boolean;
@@ -4825,13 +4824,13 @@ declare const useFormField: () => {
4825
4824
  formMessageId: string;
4826
4825
  };
4827
4826
  declare const FormItemContext: React$1.Context<FormItemContextValue>;
4828
- declare function FormItem({ className, spacing, ...props }: FormItemProps): react_jsx_runtime.JSX.Element;
4829
- declare function FormLabel({ className, ...props }: FormLabelProps): react_jsx_runtime.JSX.Element;
4830
- declare function FormControl({ ...props }: FormControlProps): react_jsx_runtime.JSX.Element;
4831
- declare function FormDescription({ className, size, ...props }: FormDescriptionProps): react_jsx_runtime.JSX.Element;
4832
- declare function FormMessage({ className, state, children, ...props }: FormMessageProps): react_jsx_runtime.JSX.Element | null;
4827
+ declare function FormItem({ className, spacing, ...props }: FormItemProps): React$1.JSX.Element;
4828
+ declare function FormLabel({ className, ...props }: FormLabelProps): React$1.JSX.Element;
4829
+ declare function FormControl({ ...props }: FormControlProps): React$1.JSX.Element;
4830
+ declare function FormDescription({ className, size, ...props }: FormDescriptionProps): React$1.JSX.Element;
4831
+ declare function FormMessage({ className, state, children, ...props }: FormMessageProps): React$1.JSX.Element | null;
4833
4832
 
4834
- declare function TextInput({ className, type, size, variant, leadingIcon, trailingIcon, leadingIconInteractive, trailingIconInteractive, ...props }: TextInputProps): react_jsx_runtime.JSX.Element;
4833
+ declare function TextInput({ className, type, size, variant, leadingIcon, trailingIcon, leadingIconInteractive, trailingIconInteractive, ...props }: TextInputProps): React$1.JSX.Element;
4835
4834
 
4836
4835
  /**
4837
4836
  * Input variant styles using CVA
@@ -4937,12 +4936,12 @@ interface InputGroupInputProps extends TextInputProps {
4937
4936
  interface InputGroupTextareaProps extends ComponentProps<"textarea"> {
4938
4937
  }
4939
4938
 
4940
- declare function InputGroup({ className, size, disabled, ...props }: InputGroupProps): react_jsx_runtime.JSX.Element;
4941
- declare function InputGroupAddon({ className, align, ...props }: InputGroupAddonProps): react_jsx_runtime.JSX.Element;
4942
- declare function InputGroupButton({ className, type, variant, size, disabled, ...props }: InputGroupButtonProps): react_jsx_runtime.JSX.Element;
4943
- declare function InputGroupText({ className, ...props }: InputGroupTextProps): react_jsx_runtime.JSX.Element;
4944
- declare function InputGroupInput({ className, disabled, ...props }: InputGroupInputProps): react_jsx_runtime.JSX.Element;
4945
- declare function InputGroupTextarea({ className, disabled, ...props }: InputGroupTextareaProps): react_jsx_runtime.JSX.Element;
4939
+ declare function InputGroup({ className, size, disabled, ...props }: InputGroupProps): React$1.JSX.Element;
4940
+ declare function InputGroupAddon({ className, align, ...props }: InputGroupAddonProps): React$1.JSX.Element;
4941
+ declare function InputGroupButton({ className, type, variant, size, disabled, ...props }: InputGroupButtonProps): React$1.JSX.Element;
4942
+ declare function InputGroupText({ className, ...props }: InputGroupTextProps): React$1.JSX.Element;
4943
+ declare function InputGroupInput({ className, disabled, ...props }: InputGroupInputProps): React$1.JSX.Element;
4944
+ declare function InputGroupTextarea({ className, disabled, ...props }: InputGroupTextareaProps): React$1.JSX.Element;
4946
4945
 
4947
4946
  /**
4948
4947
  * InputOTP size variants
@@ -5008,10 +5007,10 @@ interface InputOTPSeparatorProps extends ComponentProps<"div"> {
5008
5007
  children?: React.ReactNode;
5009
5008
  }
5010
5009
 
5011
- declare function InputOTP({ className, containerClassName, slotSize, defaultValue, onChange, value, ...props }: InputOTPProps): react_jsx_runtime.JSX.Element;
5012
- declare function InputOTPGroup({ className, ...props }: InputOTPGroupProps): react_jsx_runtime.JSX.Element;
5013
- declare function InputOTPSlot({ index, size, placeholder, className, ...props }: InputOTPSlotProps): react_jsx_runtime.JSX.Element;
5014
- declare function InputOTPSeparator({ children, ...props }: InputOTPSeparatorProps): react_jsx_runtime.JSX.Element;
5010
+ declare function InputOTP({ className, containerClassName, slotSize, defaultValue, onChange, value, ...props }: InputOTPProps): React$1.JSX.Element;
5011
+ declare function InputOTPGroup({ className, ...props }: InputOTPGroupProps): React$1.JSX.Element;
5012
+ declare function InputOTPSlot({ index, size, placeholder, className, ...props }: InputOTPSlotProps): React$1.JSX.Element;
5013
+ declare function InputOTPSeparator({ children, ...props }: InputOTPSeparatorProps): React$1.JSX.Element;
5015
5014
 
5016
5015
  /**
5017
5016
  * InputOTP slot variant styles using CVA
@@ -5139,7 +5138,7 @@ interface InputOTPFieldProps extends InputOTPExtraProps {
5139
5138
  * />
5140
5139
  * ```
5141
5140
  */
5142
- declare function InputOTPField({ label, description, errorMessage, required, digits, placeholder, size, slotSize, onChange, onComplete, value, defaultValue, disabled, pattern, className, containerClassName, }: InputOTPFieldProps): react_jsx_runtime.JSX.Element;
5141
+ declare function InputOTPField({ label, description, errorMessage, required, digits, placeholder, size, slotSize, onChange, onComplete, value, defaultValue, disabled, pattern, className, containerClassName, }: InputOTPFieldProps): React$1.JSX.Element;
5143
5142
 
5144
5143
  /**
5145
5144
  * InputOTPField container variant styles using CVA
@@ -5312,7 +5311,7 @@ interface MultiSelectProps extends Omit<ComponentProps<"div">, "onChange"> {
5312
5311
  * />
5313
5312
  * ```
5314
5313
  */
5315
- declare function MultiSelect({ options, value: controlledValue, defaultValue, placeholder, searchPlaceholder, emptyMessage, disabled, error, errorMessage: _errorMessage, icon, maxSelected, name, open: controlledOpen, defaultOpen, onOpenChange, onChange, onSearch, required, size, variant, className, ...props }: MultiSelectProps): react_jsx_runtime.JSX.Element;
5314
+ declare function MultiSelect({ options, value: controlledValue, defaultValue, placeholder, searchPlaceholder, emptyMessage, disabled, error, errorMessage: _errorMessage, icon, maxSelected, name, open: controlledOpen, defaultOpen, onOpenChange, onChange, onSearch, required, size, variant, className, ...props }: MultiSelectProps): React$1.JSX.Element;
5316
5315
 
5317
5316
  type NativeSelectSize$1 = "lg" | "md" | "sm" | "xl" | "xs";
5318
5317
  type NativeSelectVariant = "default" | "filled" | "flushed";
@@ -5329,9 +5328,9 @@ interface NativeSelectOptionProps extends ComponentProps<"option"> {
5329
5328
  interface NativeSelectOptGroupProps extends ComponentProps<"optgroup"> {
5330
5329
  }
5331
5330
 
5332
- declare function NativeSelect({ className, size, variant, leftIcon, ...props }: NativeSelectProps): react_jsx_runtime.JSX.Element;
5333
- declare function NativeSelectOption({ ...props }: NativeSelectOptionProps): react_jsx_runtime.JSX.Element;
5334
- declare function NativeSelectOptGroup({ className, ...props }: NativeSelectOptGroupProps): react_jsx_runtime.JSX.Element;
5331
+ declare function NativeSelect({ className, size, variant, leftIcon, ...props }: NativeSelectProps): React$1.JSX.Element;
5332
+ declare function NativeSelectOption({ ...props }: NativeSelectOptionProps): React$1.JSX.Element;
5333
+ declare function NativeSelectOptGroup({ className, ...props }: NativeSelectOptGroupProps): React$1.JSX.Element;
5335
5334
 
5336
5335
  /**
5337
5336
  * NativeSelect variant styles using CVA
@@ -5426,7 +5425,7 @@ interface NumberInputProps extends Omit<ComponentProps<"input">, "size" | "type"
5426
5425
  * />
5427
5426
  * ```
5428
5427
  */
5429
- declare function NumberInput({ className, size, variant, showStepper, incrementIcon, decrementIcon, onIncrement, onDecrement, disabled, min, max, step, ...props }: NumberInputProps): react_jsx_runtime.JSX.Element;
5428
+ declare function NumberInput({ className, size, variant, showStepper, incrementIcon, decrementIcon, onIncrement, onDecrement, disabled, min, max, step, ...props }: NumberInputProps): React$1.JSX.Element;
5430
5429
 
5431
5430
  /**
5432
5431
  * Number stepper container variant styles using CVA
@@ -5491,7 +5490,7 @@ interface PasswordInputProps extends Omit<ComponentProps<"input">, "size" | "typ
5491
5490
  * <PasswordInput placeholder="Enter password" />
5492
5491
  * ```
5493
5492
  */
5494
- declare function PasswordInput({ className, size, variant, showToggle, showIcon, hideIcon, disabled, ...props }: PasswordInputProps): react_jsx_runtime.JSX.Element;
5493
+ declare function PasswordInput({ className, size, variant, showToggle, showIcon, hideIcon, disabled, ...props }: PasswordInputProps): React$1.JSX.Element;
5495
5494
 
5496
5495
  /**
5497
5496
  * Password toggle button variant styles using CVA
@@ -5624,7 +5623,7 @@ interface PaymentInputProps extends Omit<ComponentProps<"input">, "defaultValue"
5624
5623
  * />
5625
5624
  * ```
5626
5625
  */
5627
- declare function PaymentInput({ value: controlledValue, defaultValue, onChange, onCardTypeChange, disabled, size, variant, invalid, showCardIcon, placeholder, className, ...props }: PaymentInputProps): react_jsx_runtime.JSX.Element;
5626
+ declare function PaymentInput({ value: controlledValue, defaultValue, onChange, onCardTypeChange, disabled, size, variant, invalid, showCardIcon, placeholder, className, ...props }: PaymentInputProps): React$1.JSX.Element;
5628
5627
 
5629
5628
  /**
5630
5629
  * PaymentInput container variant styles using CVA
@@ -5766,7 +5765,7 @@ interface PhoneInputProps extends Omit<ComponentProps<"input">, "defaultValue" |
5766
5765
  * />
5767
5766
  * ```
5768
5767
  */
5769
- declare function PhoneInput({ value: controlledValue, defaultValue, onChange, onCountryChange, defaultCountry, countries, disabled, size, variant, invalid, placeholder, className, ...props }: PhoneInputProps): react_jsx_runtime.JSX.Element;
5768
+ declare function PhoneInput({ value: controlledValue, defaultValue, onChange, onCountryChange, defaultCountry, countries, disabled, size, variant, invalid, placeholder, className, ...props }: PhoneInputProps): React$1.JSX.Element;
5770
5769
 
5771
5770
  /**
5772
5771
  * PhoneInput container variant styles using CVA
@@ -5831,7 +5830,7 @@ interface RadioButtonProps extends Omit<ComponentProps<"input">, "size" | "type"
5831
5830
  * <RadioButton name="option" value="2" label="Option 2" />
5832
5831
  * ```
5833
5832
  */
5834
- declare function RadioButton({ className, size, label, description, id, ref, "aria-describedby": ariaDescribedBy, ...props }: RadioButtonProps): react_jsx_runtime.JSX.Element;
5833
+ declare function RadioButton({ className, size, label, description, id, ref, "aria-describedby": ariaDescribedBy, ...props }: RadioButtonProps): React$1.JSX.Element;
5835
5834
 
5836
5835
  declare const radioButtonVariants: (props?: ({
5837
5836
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -5927,11 +5926,11 @@ interface RadioCardGroupItemProps extends Omit<ComponentPropsWithoutRef<typeof R
5927
5926
  * </RadioCardGroup>
5928
5927
  * ```
5929
5928
  */
5930
- declare function RadioCardGroup({ children, className, columns, size, ...props }: RadioCardGroupProps): react_jsx_runtime.JSX.Element;
5929
+ declare function RadioCardGroup({ children, className, columns, size, ...props }: RadioCardGroupProps): React$1.JSX.Element;
5931
5930
  /**
5932
5931
  * RadioCardGroupItem - Individual card option
5933
5932
  */
5934
- declare function RadioCardGroupItem({ className, description, icon, size: sizeProp, title, ...props }: RadioCardGroupItemProps): react_jsx_runtime.JSX.Element;
5933
+ declare function RadioCardGroupItem({ className, description, icon, size: sizeProp, title, ...props }: RadioCardGroupItemProps): React$1.JSX.Element;
5935
5934
 
5936
5935
  declare const radioCardGroupVariants: (props?: ({
5937
5936
  columns?: 1 | 4 | 3 | 2 | null | undefined;
@@ -5997,8 +5996,8 @@ type RadioGroupItemProps = ComponentProps<typeof RadioGroupPrimitive.Item> & Rad
5997
5996
  label?: string;
5998
5997
  };
5999
5998
 
6000
- declare function RadioGroup({ className, orientation, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
6001
- declare function RadioGroupItem({ className, size, label, id, ...props }: RadioGroupItemProps): react_jsx_runtime.JSX.Element;
5999
+ declare function RadioGroup({ className, orientation, ...props }: RadioGroupProps): React$1.JSX.Element;
6000
+ declare function RadioGroupItem({ className, size, label, id, ...props }: RadioGroupItemProps): React$1.JSX.Element;
6002
6001
 
6003
6002
  /**
6004
6003
  * Rating size variants
@@ -6086,7 +6085,7 @@ interface RatingItemProps {
6086
6085
  tabIndex: number;
6087
6086
  }
6088
6087
 
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;
6088
+ declare function Rating({ className, value: controlledValue, defaultValue, max, size, allowHalf, readOnly, disabled, emptyIcon, filledIcon, halfIcon, onChange, onHover, name, ...props }: RatingProps): React$1.JSX.Element;
6090
6089
 
6091
6090
  declare const ratingVariants: (props?: ({
6092
6091
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -6141,7 +6140,7 @@ interface SearchInputProps$1 extends Omit<ComponentProps<"input">, "size" | "typ
6141
6140
  * <SearchInput placeholder="Search..." />
6142
6141
  * ```
6143
6142
  */
6144
- declare function SearchInput({ className, size, variant, showClearButton, onClear, searchIcon, clearIcon, disabled, value, defaultValue, onChange, ...props }: SearchInputProps$1): react_jsx_runtime.JSX.Element;
6143
+ declare function SearchInput({ className, size, variant, showClearButton, onClear, searchIcon, clearIcon, disabled, value, defaultValue, onChange, ...props }: SearchInputProps$1): React$1.JSX.Element;
6145
6144
 
6146
6145
  /**
6147
6146
  * Search icon visual variants
@@ -6228,16 +6227,16 @@ interface SelectScrollUpButtonProps extends ComponentProps<typeof SelectPrimitiv
6228
6227
  interface SelectScrollDownButtonProps extends ComponentProps<typeof SelectPrimitive.ScrollDownButton> {
6229
6228
  }
6230
6229
 
6231
- declare function Select({ ...props }: SelectProps): react_jsx_runtime.JSX.Element;
6232
- declare function SelectGroup({ ...props }: SelectGroupProps): react_jsx_runtime.JSX.Element;
6233
- declare function SelectValue({ ...props }: SelectValueProps): react_jsx_runtime.JSX.Element;
6234
- declare function SelectTrigger({ className, size, variant, children, ...props }: SelectTriggerProps): react_jsx_runtime.JSX.Element;
6235
- declare function SelectContent({ className, children, position, align, ...props }: SelectContentProps): react_jsx_runtime.JSX.Element;
6236
- declare function SelectLabel({ className, ...props }: SelectLabelProps): react_jsx_runtime.JSX.Element;
6237
- declare function SelectItem({ className, children, ...props }: SelectItemProps): react_jsx_runtime.JSX.Element;
6238
- declare function SelectSeparator({ className, ...props }: SelectSeparatorProps): react_jsx_runtime.JSX.Element;
6239
- declare function SelectScrollUpButton({ className, ...props }: SelectScrollUpButtonProps): react_jsx_runtime.JSX.Element;
6240
- declare function SelectScrollDownButton({ className, ...props }: SelectScrollDownButtonProps): react_jsx_runtime.JSX.Element;
6230
+ declare function Select({ ...props }: SelectProps): React$1.JSX.Element;
6231
+ declare function SelectGroup({ ...props }: SelectGroupProps): React$1.JSX.Element;
6232
+ declare function SelectValue({ ...props }: SelectValueProps): React$1.JSX.Element;
6233
+ declare function SelectTrigger({ className, size, variant, children, ...props }: SelectTriggerProps): React$1.JSX.Element;
6234
+ declare function SelectContent({ className, children, position, align, ...props }: SelectContentProps): React$1.JSX.Element;
6235
+ declare function SelectLabel({ className, ...props }: SelectLabelProps): React$1.JSX.Element;
6236
+ declare function SelectItem({ className, children, ...props }: SelectItemProps): React$1.JSX.Element;
6237
+ declare function SelectSeparator({ className, ...props }: SelectSeparatorProps): React$1.JSX.Element;
6238
+ declare function SelectScrollUpButton({ className, ...props }: SelectScrollUpButtonProps): React$1.JSX.Element;
6239
+ declare function SelectScrollDownButton({ className, ...props }: SelectScrollDownButtonProps): React$1.JSX.Element;
6241
6240
 
6242
6241
  /**
6243
6242
  * SelectTrigger variant styles using CVA
@@ -6396,7 +6395,7 @@ type SliderValue = number[];
6396
6395
  * />
6397
6396
  * ```
6398
6397
  */
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;
6398
+ declare function Slider({ className, defaultValue, value, min, max, step, size, labelType, color, formatValue, marks, getAriaValueText, onValueChange, orientation, ...props }: SliderProps): React$1.JSX.Element;
6400
6399
 
6401
6400
  declare const sliderRootVariants: (props?: ({
6402
6401
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -6467,7 +6466,7 @@ interface SuccessMessageProps extends ComponentProps<"span"> {
6467
6466
  * <SuccessMessage icon={<CheckIcon />}>Email verified successfully</SuccessMessage>
6468
6467
  * ```
6469
6468
  */
6470
- declare function SuccessMessage({ className, icon, children, ...props }: SuccessMessageProps): react_jsx_runtime.JSX.Element;
6469
+ declare function SuccessMessage({ className, icon, children, ...props }: SuccessMessageProps): React$1.JSX.Element;
6471
6470
 
6472
6471
  /**
6473
6472
  * SuccessMessage variant styles using CVA
@@ -6519,7 +6518,7 @@ interface SwitchProps extends Omit<ComponentProps<typeof SwitchPrimitive.Root>,
6519
6518
  */
6520
6519
  type SwitchState = boolean;
6521
6520
 
6522
- declare function Switch({ className, size, type, switchText, descriptionText, showText, showDescription, id, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
6521
+ declare function Switch({ className, size, type, switchText, descriptionText, showText, showDescription, id, ...props }: SwitchProps): React$1.JSX.Element;
6523
6522
 
6524
6523
  declare const switchVariants: (props?: ({
6525
6524
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -6620,7 +6619,7 @@ interface TagsInputProps extends Omit<ComponentProps<"div">, "defaultValue" | "o
6620
6619
  * />
6621
6620
  * ```
6622
6621
  */
6623
- declare function TagsInput({ value: controlledValue, defaultValue, onChange, onTagAdd, onTagRemove, placeholder, maxTags, allowDuplicates, disabled, size, variant, invalid, delimiters, className, ...props }: TagsInputProps): react_jsx_runtime.JSX.Element;
6622
+ declare function TagsInput({ value: controlledValue, defaultValue, onChange, onTagAdd, onTagRemove, placeholder, maxTags, allowDuplicates, disabled, size, variant, invalid, delimiters, className, ...props }: TagsInputProps): React$1.JSX.Element;
6624
6623
 
6625
6624
  /**
6626
6625
  * TagsInput container variant styles using CVA
@@ -6671,7 +6670,7 @@ interface TextareaProps extends ComponentProps<"textarea"> {
6671
6670
  variant?: TextareaVariant;
6672
6671
  }
6673
6672
 
6674
- declare function Textarea({ className, size, variant, resize, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
6673
+ declare function Textarea({ className, size, variant, resize, ...props }: TextareaProps): React$1.JSX.Element;
6675
6674
 
6676
6675
  /**
6677
6676
  * Textarea variant styles using CVA
@@ -6732,7 +6731,7 @@ interface TextareaFieldProps extends TextareaProps {
6732
6731
  * />
6733
6732
  * ```
6734
6733
  */
6735
- declare function TextareaField({ label, description, errorMessage, required, id: providedId, ...textareaProps }: TextareaFieldProps): react_jsx_runtime.JSX.Element;
6734
+ declare function TextareaField({ label, description, errorMessage, required, id: providedId, ...textareaProps }: TextareaFieldProps): React$1.JSX.Element;
6736
6735
 
6737
6736
  /**
6738
6737
  * TextareaField container variant styles using CVA
@@ -6842,7 +6841,7 @@ interface TimePickerProps extends Omit<ComponentProps<"div">, "defaultValue" | "
6842
6841
  variant?: TimePickerVariant;
6843
6842
  }
6844
6843
 
6845
- declare function TimePicker({ className, value, defaultValue, placeholder, disabled, use12Hour, minuteStep, onChange, onOpenChange, size, variant, required, invalid, id, name, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, ...props }: TimePickerProps): react_jsx_runtime.JSX.Element;
6844
+ declare function TimePicker({ className, value, defaultValue, placeholder, disabled, use12Hour, minuteStep, onChange, onOpenChange, size, variant, required, invalid, id, name, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, ...props }: TimePickerProps): React$1.JSX.Element;
6846
6845
 
6847
6846
  /**
6848
6847
  * TimePicker trigger variant styles using CVA
@@ -6867,17 +6866,6 @@ type TimePickerTriggerVariantProps = VariantProps<typeof timePickerTriggerVarian
6867
6866
  type TimeScrollListVariantProps = VariantProps<typeof timeScrollListVariants>;
6868
6867
  type TimeItemVariantProps = VariantProps<typeof timeItemVariants>;
6869
6868
 
6870
- /**
6871
- * ToggleGroupItem variants - matches primitives/Toggle
6872
- * Re-exported for forms/ToggleGroup compatibility
6873
- */
6874
- declare const toggleGroupItemVariants: (props?: ({
6875
- variant?: "default" | "outline" | null | undefined;
6876
- size?: "sm" | "md" | "lg" | "default" | null | undefined;
6877
- connected?: boolean | null | undefined;
6878
- } & class_variance_authority_types.ClassProp) | undefined) => string;
6879
- type ToggleGroupItemVariantProps = VariantProps<typeof toggleGroupItemVariants>;
6880
-
6881
6869
  /**
6882
6870
  * URL validation state
6883
6871
  */
@@ -6929,7 +6917,7 @@ interface URLInputProps extends Omit<ComponentProps<"input">, "size" | "type"> {
6929
6917
  * <URLInput placeholder="Enter URL" />
6930
6918
  * ```
6931
6919
  */
6932
- declare function URLInput({ className, size, variant, validationState, showValidationIcon, linkIcon, validIcon, invalidIcon, disabled, ...props }: URLInputProps): react_jsx_runtime.JSX.Element;
6920
+ declare function URLInput({ className, size, variant, validationState, showValidationIcon, linkIcon, validIcon, invalidIcon, disabled, ...props }: URLInputProps): React$1.JSX.Element;
6933
6921
 
6934
6922
  /**
6935
6923
  * URL link icon visual variants
@@ -7074,14 +7062,14 @@ type CardVariant = NonNullable<VariantProps<typeof cardVariants>["variant"]>;
7074
7062
 
7075
7063
  declare function Card({ className, variant, selected, pinned, onToggleSelect, onTogglePin, selectableProps, "data-id": dataId, children, ...props }: CardProps & {
7076
7064
  "data-id"?: string;
7077
- }): react_jsx_runtime.JSX.Element;
7078
- declare function CardMedia({ className, aspect, ...props }: CardMediaProps): react_jsx_runtime.JSX.Element;
7079
- declare function CardHeader({ className, ...props }: CardHeaderProps): react_jsx_runtime.JSX.Element;
7080
- declare function CardTitle({ className, ...props }: CardTitleProps): react_jsx_runtime.JSX.Element;
7081
- declare function CardDescription({ className, ...props }: CardDescriptionProps): react_jsx_runtime.JSX.Element;
7082
- declare function CardAction({ className, ...props }: CardActionProps): react_jsx_runtime.JSX.Element;
7083
- declare function CardContent({ className, ...props }: CardContentProps): react_jsx_runtime.JSX.Element;
7084
- declare function CardFooter({ className, ...props }: CardFooterProps): react_jsx_runtime.JSX.Element;
7065
+ }): React$1.JSX.Element;
7066
+ declare function CardMedia({ className, aspect, ...props }: CardMediaProps): React$1.JSX.Element;
7067
+ declare function CardHeader({ className, ...props }: CardHeaderProps): React$1.JSX.Element;
7068
+ declare function CardTitle({ className, ...props }: CardTitleProps): React$1.JSX.Element;
7069
+ declare function CardDescription({ className, ...props }: CardDescriptionProps): React$1.JSX.Element;
7070
+ declare function CardAction({ className, ...props }: CardActionProps): React$1.JSX.Element;
7071
+ declare function CardContent({ className, ...props }: CardContentProps): React$1.JSX.Element;
7072
+ declare function CardFooter({ className, ...props }: CardFooterProps): React$1.JSX.Element;
7085
7073
 
7086
7074
  /**
7087
7075
  * Collapsible root variant styles
@@ -7123,9 +7111,9 @@ interface CollapsibleTriggerProps extends ComponentProps<typeof CollapsiblePrimi
7123
7111
  interface CollapsibleContentProps extends ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>, VariantProps<typeof collapsibleContentVariants> {
7124
7112
  }
7125
7113
 
7126
- declare function Collapsible({ className, ...props }: CollapsibleProps): react_jsx_runtime.JSX.Element;
7127
- declare function CollapsibleTrigger({ className, ...props }: CollapsibleTriggerProps): react_jsx_runtime.JSX.Element;
7128
- declare function CollapsibleContent({ className, animation, ...props }: CollapsibleContentProps): react_jsx_runtime.JSX.Element;
7114
+ declare function Collapsible({ className, ...props }: CollapsibleProps): React$1.JSX.Element;
7115
+ declare function CollapsibleTrigger({ className, ...props }: CollapsibleTriggerProps): React$1.JSX.Element;
7116
+ declare function CollapsibleContent({ className, animation, ...props }: CollapsibleContentProps): React$1.JSX.Element;
7129
7117
 
7130
7118
  /**
7131
7119
  * Container variant styles
@@ -7162,7 +7150,7 @@ type ContainerMaxWidth = NonNullable<VariantProps<typeof containerVariants>["max
7162
7150
  */
7163
7151
  type ContainerPadding = NonNullable<VariantProps<typeof containerVariants>["padding"]>;
7164
7152
 
7165
- declare function Container({ as: Component, maxWidth, padding, centered, className, ...props }: ContainerProps): react_jsx_runtime.JSX.Element;
7153
+ declare function Container({ as: Component, maxWidth, padding, centered, className, ...props }: ContainerProps): React$1.JSX.Element;
7166
7154
 
7167
7155
  /**
7168
7156
  * Flex variant styles
@@ -7227,7 +7215,7 @@ type FlexGap = NonNullable<VariantProps<typeof flexVariants>["gap"]>;
7227
7215
  * </Flex>
7228
7216
  * ```
7229
7217
  */
7230
- declare function Flex({ as: Component, inline, direction, justify, align, wrap, gap, className, ...props }: FlexProps): react_jsx_runtime.JSX.Element;
7218
+ declare function Flex({ as: Component, inline, direction, justify, align, wrap, gap, className, ...props }: FlexProps): React$1.JSX.Element;
7231
7219
 
7232
7220
  /**
7233
7221
  * Grid component variant styles
@@ -7296,7 +7284,7 @@ type GridFlow = NonNullable<VariantProps<typeof gridVariants>["flow"]>;
7296
7284
  * </Grid>
7297
7285
  * ```
7298
7286
  */
7299
- declare function Grid({ as, cols, rows, gap, gapX, gapY, items, justify, flow, className, ...props }: GridProps): react_jsx_runtime.JSX.Element;
7287
+ declare function Grid({ as, cols, rows, gap, gapX, gapY, items, justify, flow, className, ...props }: GridProps): React$1.JSX.Element;
7300
7288
 
7301
7289
  /**
7302
7290
  * Panel variant styles
@@ -7372,10 +7360,10 @@ type PanelSize = NonNullable<VariantProps<typeof panelVariants>["size"]>;
7372
7360
  */
7373
7361
  type PanelPosition = NonNullable<VariantProps<typeof panelVariants>["position"]>;
7374
7362
 
7375
- declare function Panel({ as: Component, variant, size, position, className, ...props }: PanelProps): react_jsx_runtime.JSX.Element;
7376
- declare function PanelHeader({ className, ...props }: PanelHeaderProps): react_jsx_runtime.JSX.Element;
7377
- declare function PanelContent({ scrollable, className, children, ...props }: PanelContentProps): react_jsx_runtime.JSX.Element;
7378
- declare function PanelFooter({ className, ...props }: PanelFooterProps): react_jsx_runtime.JSX.Element;
7363
+ declare function Panel({ as: Component, variant, size, position, className, ...props }: PanelProps): React$1.JSX.Element;
7364
+ declare function PanelHeader({ className, ...props }: PanelHeaderProps): React$1.JSX.Element;
7365
+ declare function PanelContent({ scrollable, className, children, ...props }: PanelContentProps): React$1.JSX.Element;
7366
+ declare function PanelFooter({ className, ...props }: PanelFooterProps): React$1.JSX.Element;
7379
7367
 
7380
7368
  /**
7381
7369
  * ResizablePanelGroup variant styles
@@ -7432,9 +7420,9 @@ interface ResizableHandleProps extends ComponentProps<typeof ResizablePrimitive.
7432
7420
  */
7433
7421
  type ResizableHandleVariant = NonNullable<VariantProps<typeof resizableHandleVariants>["variant"]>;
7434
7422
 
7435
- declare function ResizablePanelGroup({ className, ...props }: ResizablePanelGroupProps): react_jsx_runtime.JSX.Element;
7436
- declare function ResizablePanel({ className, ...props }: ResizablePanelProps): react_jsx_runtime.JSX.Element;
7437
- declare function ResizableHandle({ withHandle, variant, className, ...props }: ResizableHandleProps): react_jsx_runtime.JSX.Element;
7423
+ declare function ResizablePanelGroup({ className, ...props }: ResizablePanelGroupProps): React$1.JSX.Element;
7424
+ declare function ResizablePanel({ className, ...props }: ResizablePanelProps): React$1.JSX.Element;
7425
+ declare function ResizableHandle({ withHandle, variant, className, ...props }: ResizableHandleProps): React$1.JSX.Element;
7438
7426
 
7439
7427
  /**
7440
7428
  * ResponsiveContainer variant styles
@@ -7501,7 +7489,7 @@ type ResponsiveContainerBreakpoint = NonNullable<VariantProps<typeof responsiveC
7501
7489
  * </ResponsiveContainer>
7502
7490
  * ```
7503
7491
  */
7504
- declare function ResponsiveContainer({ as: Component, variant, maxWidth, padding, breakpoint, className, ...props }: ResponsiveContainerProps): react_jsx_runtime.JSX.Element;
7492
+ declare function ResponsiveContainer({ as: Component, variant, maxWidth, padding, breakpoint, className, ...props }: ResponsiveContainerProps): React$1.JSX.Element;
7505
7493
 
7506
7494
  /**
7507
7495
  * ScrollArea root variant styles
@@ -7557,8 +7545,8 @@ type ScrollBarOrientation = NonNullable<VariantProps<typeof scrollBarVariants>["
7557
7545
  */
7558
7546
  type ScrollBarSize = NonNullable<VariantProps<typeof scrollBarVariants>["size"]>;
7559
7547
 
7560
- declare function ScrollArea({ className, children, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
7561
- declare function ScrollBar({ className, orientation, size, ...props }: ScrollBarProps): react_jsx_runtime.JSX.Element;
7548
+ declare function ScrollArea({ className, children, ...props }: ScrollAreaProps): React$1.JSX.Element;
7549
+ declare function ScrollBar({ className, orientation, size, ...props }: ScrollBarProps): React$1.JSX.Element;
7562
7550
 
7563
7551
  /**
7564
7552
  * Section variant styles
@@ -7597,7 +7585,7 @@ type SectionVariant = NonNullable<VariantProps<typeof sectionVariants>["variant"
7597
7585
  */
7598
7586
  type SectionSize = NonNullable<VariantProps<typeof sectionVariants>["size"]>;
7599
7587
 
7600
- declare function Section({ variant, size, title, description, footer, className, children, ...props }: SectionProps): react_jsx_runtime.JSX.Element;
7588
+ declare function Section({ variant, size, title, description, footer, className, children, ...props }: SectionProps): React$1.JSX.Element;
7601
7589
 
7602
7590
  /**
7603
7591
  * Sheet overlay variant styles
@@ -7686,17 +7674,17 @@ type SheetSize = NonNullable<VariantProps<typeof sheetContentVariants>["size"]>;
7686
7674
  */
7687
7675
  type SheetOverlayVariant = NonNullable<VariantProps<typeof sheetOverlayVariants>["variant"]>;
7688
7676
 
7689
- declare function Sheet({ ...props }: SheetProps): react_jsx_runtime.JSX.Element;
7690
- declare function SheetTrigger({ ...props }: SheetTriggerProps): react_jsx_runtime.JSX.Element;
7691
- declare function SheetClose({ ...props }: SheetCloseProps): react_jsx_runtime.JSX.Element;
7692
- declare function SheetPortal({ ...props }: SheetPortalProps): react_jsx_runtime.JSX.Element;
7693
- declare function SheetOverlay({ className, variant, ...props }: SheetOverlayProps): react_jsx_runtime.JSX.Element;
7694
- declare function SheetContent({ className, children, side, size, showCloseButton, overlayVariant, ...props }: SheetContentProps): react_jsx_runtime.JSX.Element;
7695
- declare function SheetHeader({ className, ...props }: SheetHeaderProps): react_jsx_runtime.JSX.Element;
7696
- declare function SheetBody({ className, ...props }: SheetBodyProps): react_jsx_runtime.JSX.Element;
7697
- declare function SheetFooter({ className, ...props }: SheetFooterProps): react_jsx_runtime.JSX.Element;
7698
- declare function SheetTitle({ className, ...props }: SheetTitleProps): react_jsx_runtime.JSX.Element;
7699
- declare function SheetDescription({ className, ...props }: SheetDescriptionProps): react_jsx_runtime.JSX.Element;
7677
+ declare function Sheet({ ...props }: SheetProps): React$1.JSX.Element;
7678
+ declare function SheetTrigger({ ...props }: SheetTriggerProps): React$1.JSX.Element;
7679
+ declare function SheetClose({ ...props }: SheetCloseProps): React$1.JSX.Element;
7680
+ declare function SheetPortal({ ...props }: SheetPortalProps): React$1.JSX.Element;
7681
+ declare function SheetOverlay({ className, variant, ...props }: SheetOverlayProps): React$1.JSX.Element;
7682
+ declare function SheetContent({ className, children, side, size, showCloseButton, overlayVariant, ...props }: SheetContentProps): React$1.JSX.Element;
7683
+ declare function SheetHeader({ className, ...props }: SheetHeaderProps): React$1.JSX.Element;
7684
+ declare function SheetBody({ className, ...props }: SheetBodyProps): React$1.JSX.Element;
7685
+ declare function SheetFooter({ className, ...props }: SheetFooterProps): React$1.JSX.Element;
7686
+ declare function SheetTitle({ className, ...props }: SheetTitleProps): React$1.JSX.Element;
7687
+ declare function SheetDescription({ className, ...props }: SheetDescriptionProps): React$1.JSX.Element;
7700
7688
 
7701
7689
  /**
7702
7690
  * Stack variant styles
@@ -7762,11 +7750,13 @@ type StackJustify = NonNullable<VariantProps<typeof stackVariants>["justify"]>;
7762
7750
  * </Stack>
7763
7751
  * ```
7764
7752
  */
7765
- declare function Stack({ as: Component, direction, spacing, align, justify, grow, className, ...props }: StackProps): react_jsx_runtime.JSX.Element;
7753
+ declare function Stack({ as: Component, direction, spacing, align, justify, grow, className, ...props }: StackProps): React$1.JSX.Element;
7766
7754
 
7767
7755
  interface AccountSwitchAccount {
7768
7756
  avatarFallback?: string;
7769
7757
  avatarSrc?: string;
7758
+ children?: AccountSwitchAccount[];
7759
+ disabled?: boolean;
7770
7760
  email?: string;
7771
7761
  id: string;
7772
7762
  isCurrent?: boolean;
@@ -7790,6 +7780,12 @@ interface AccountSwitchProps extends Omit<ComponentProps<"button">, "onSelect">
7790
7780
  * Called when a different account is selected.
7791
7781
  */
7792
7782
  onSelect?: (account: AccountSwitchAccount) => void;
7783
+ /**
7784
+ * Canonical placement in the app shell. Sidebar is the default Seven DS anchor;
7785
+ * header is available for Topbar/header compositions.
7786
+ * @default "sidebar"
7787
+ */
7788
+ placement?: "header" | "sidebar";
7793
7789
  /**
7794
7790
  * Trigger shape — pill (default, Figma node 1138:3077) or rect (variant).
7795
7791
  * @default "pill"
@@ -7797,7 +7793,7 @@ interface AccountSwitchProps extends Omit<ComponentProps<"button">, "onSelect">
7797
7793
  triggerShape?: "pill" | "rect";
7798
7794
  }
7799
7795
 
7800
- declare function AccountSwitch({ className, accounts, triggerShape, header, footer, onSelect, ...props }: AccountSwitchProps): react_jsx_runtime.JSX.Element;
7796
+ declare function AccountSwitch({ className, accounts, triggerShape, placement, header, footer, onSelect, ...props }: AccountSwitchProps): React$1.JSX.Element;
7801
7797
 
7802
7798
  /**
7803
7799
  * Breadcrumb container props
@@ -7864,15 +7860,15 @@ interface BreadcrumbEllipsisProps extends ComponentProps<"span"> {
7864
7860
  * </BreadcrumbList>
7865
7861
  * </Breadcrumb>
7866
7862
  */
7867
- declare function Breadcrumb({ ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
7863
+ declare function Breadcrumb({ ...props }: BreadcrumbProps): React$1.JSX.Element;
7868
7864
  /**
7869
7865
  * BreadcrumbList - Ordered list container for breadcrumb items.
7870
7866
  */
7871
- declare function BreadcrumbList({ className, ...props }: BreadcrumbListProps): react_jsx_runtime.JSX.Element;
7867
+ declare function BreadcrumbList({ className, ...props }: BreadcrumbListProps): React$1.JSX.Element;
7872
7868
  /**
7873
7869
  * BreadcrumbItem - Individual breadcrumb list item.
7874
7870
  */
7875
- declare function BreadcrumbItem({ className, ...props }: BreadcrumbItemProps): react_jsx_runtime.JSX.Element;
7871
+ declare function BreadcrumbItem({ className, ...props }: BreadcrumbItemProps): React$1.JSX.Element;
7876
7872
  /**
7877
7873
  * BreadcrumbLink - Clickable link within a breadcrumb item.
7878
7874
  *
@@ -7886,13 +7882,13 @@ declare function BreadcrumbItem({ className, ...props }: BreadcrumbItemProps): r
7886
7882
  * <Link to="/products">Products</Link>
7887
7883
  * </BreadcrumbLink>
7888
7884
  */
7889
- declare function BreadcrumbLink({ asChild, className, ...props }: BreadcrumbLinkProps): react_jsx_runtime.JSX.Element;
7885
+ declare function BreadcrumbLink({ asChild, className, ...props }: BreadcrumbLinkProps): React$1.JSX.Element;
7890
7886
  /**
7891
7887
  * BreadcrumbPage - Current page indicator (non-clickable).
7892
7888
  *
7893
7889
  * Includes proper ARIA attributes for accessibility.
7894
7890
  */
7895
- declare function BreadcrumbPage({ className, ...props }: BreadcrumbPageProps): react_jsx_runtime.JSX.Element;
7891
+ declare function BreadcrumbPage({ className, ...props }: BreadcrumbPageProps): React$1.JSX.Element;
7896
7892
  /**
7897
7893
  * BreadcrumbSeparator - Visual separator between breadcrumb items.
7898
7894
  *
@@ -7908,13 +7904,13 @@ declare function BreadcrumbPage({ className, ...props }: BreadcrumbPageProps): r
7908
7904
  * <Slash className="size-4" />
7909
7905
  * </BreadcrumbSeparator>
7910
7906
  */
7911
- declare function BreadcrumbSeparator({ children, className, ...props }: BreadcrumbSeparatorProps): react_jsx_runtime.JSX.Element;
7907
+ declare function BreadcrumbSeparator({ children, className, ...props }: BreadcrumbSeparatorProps): React$1.JSX.Element;
7912
7908
  /**
7913
7909
  * BreadcrumbEllipsis - Indicator for hidden items in long paths.
7914
7910
  *
7915
7911
  * Can be combined with DropdownMenu to show hidden items.
7916
7912
  */
7917
- declare function BreadcrumbEllipsis({ className, ...props }: BreadcrumbEllipsisProps): react_jsx_runtime.JSX.Element;
7913
+ declare function BreadcrumbEllipsis({ className, ...props }: BreadcrumbEllipsisProps): React$1.JSX.Element;
7918
7914
 
7919
7915
  /**
7920
7916
  * BreadcrumbList variant styles
@@ -8067,41 +8063,41 @@ interface ContextMenuShortcutProps extends ComponentProps<"span"> {
8067
8063
  * </ContextMenuContent>
8068
8064
  * </ContextMenu>
8069
8065
  */
8070
- declare function ContextMenu({ ...props }: ContextMenuProps): react_jsx_runtime.JSX.Element;
8066
+ declare function ContextMenu({ ...props }: ContextMenuProps): React$1.JSX.Element;
8071
8067
  /**
8072
8068
  * ContextMenuTrigger - Element that triggers the context menu on right-click.
8073
8069
  */
8074
- declare function ContextMenuTrigger({ ...props }: ContextMenuTriggerProps): react_jsx_runtime.JSX.Element;
8070
+ declare function ContextMenuTrigger({ ...props }: ContextMenuTriggerProps): React$1.JSX.Element;
8075
8071
  /**
8076
8072
  * ContextMenuGroup - Groups related menu items.
8077
8073
  */
8078
- declare function ContextMenuGroup({ ...props }: ContextMenuGroupProps): react_jsx_runtime.JSX.Element;
8074
+ declare function ContextMenuGroup({ ...props }: ContextMenuGroupProps): React$1.JSX.Element;
8079
8075
  /**
8080
8076
  * ContextMenuPortal - Renders content in a portal.
8081
8077
  */
8082
- declare function ContextMenuPortal({ ...props }: ContextMenuPortalProps): react_jsx_runtime.JSX.Element;
8078
+ declare function ContextMenuPortal({ ...props }: ContextMenuPortalProps): React$1.JSX.Element;
8083
8079
  /**
8084
8080
  * ContextMenuSub - Container for nested submenus.
8085
8081
  */
8086
- declare function ContextMenuSub({ ...props }: ContextMenuSubProps): react_jsx_runtime.JSX.Element;
8082
+ declare function ContextMenuSub({ ...props }: ContextMenuSubProps): React$1.JSX.Element;
8087
8083
  /**
8088
8084
  * ContextMenuRadioGroup - Groups radio items for single selection.
8089
8085
  */
8090
- declare function ContextMenuRadioGroup({ ...props }: ContextMenuRadioGroupProps): react_jsx_runtime.JSX.Element;
8086
+ declare function ContextMenuRadioGroup({ ...props }: ContextMenuRadioGroupProps): React$1.JSX.Element;
8091
8087
  /**
8092
8088
  * ContextMenuSubTrigger - Triggers a nested submenu.
8093
8089
  */
8094
- declare function ContextMenuSubTrigger({ className, inset, children, ...props }: ContextMenuSubTriggerProps): react_jsx_runtime.JSX.Element;
8090
+ declare function ContextMenuSubTrigger({ className, inset, children, ...props }: ContextMenuSubTriggerProps): React$1.JSX.Element;
8095
8091
  /**
8096
8092
  * ContextMenuSubContent - Content container for submenus.
8097
8093
  */
8098
- declare function ContextMenuSubContent({ className, ...props }: ContextMenuSubContentProps): react_jsx_runtime.JSX.Element;
8094
+ declare function ContextMenuSubContent({ className, ...props }: ContextMenuSubContentProps): React$1.JSX.Element;
8099
8095
  /**
8100
8096
  * ContextMenuContent - Main content container for the menu.
8101
8097
  *
8102
8098
  * Automatically wraps content in a Portal.
8103
8099
  */
8104
- declare function ContextMenuContent({ className, ...props }: ContextMenuContentProps): react_jsx_runtime.JSX.Element;
8100
+ declare function ContextMenuContent({ className, ...props }: ContextMenuContentProps): React$1.JSX.Element;
8105
8101
  /**
8106
8102
  * ContextMenuItem - Individual menu item.
8107
8103
  *
@@ -8113,27 +8109,27 @@ declare function ContextMenuContent({ className, ...props }: ContextMenuContentP
8113
8109
  * // Destructive variant
8114
8110
  * <ContextMenuItem variant="destructive">Delete</ContextMenuItem>
8115
8111
  */
8116
- declare function ContextMenuItem({ className, inset, variant, ...props }: ContextMenuItemProps): react_jsx_runtime.JSX.Element;
8112
+ declare function ContextMenuItem({ className, inset, variant, ...props }: ContextMenuItemProps): React$1.JSX.Element;
8117
8113
  /**
8118
8114
  * ContextMenuCheckboxItem - Menu item with a checkbox.
8119
8115
  */
8120
- declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: ContextMenuCheckboxItemProps): react_jsx_runtime.JSX.Element;
8116
+ declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: ContextMenuCheckboxItemProps): React$1.JSX.Element;
8121
8117
  /**
8122
8118
  * ContextMenuRadioItem - Menu item for radio selection.
8123
8119
  */
8124
- declare function ContextMenuRadioItem({ className, children, ...props }: ContextMenuRadioItemProps): react_jsx_runtime.JSX.Element;
8120
+ declare function ContextMenuRadioItem({ className, children, ...props }: ContextMenuRadioItemProps): React$1.JSX.Element;
8125
8121
  /**
8126
8122
  * ContextMenuLabel - Non-interactive label for grouping items.
8127
8123
  */
8128
- declare function ContextMenuLabel({ className, inset, ...props }: ContextMenuLabelProps): react_jsx_runtime.JSX.Element;
8124
+ declare function ContextMenuLabel({ className, inset, ...props }: ContextMenuLabelProps): React$1.JSX.Element;
8129
8125
  /**
8130
8126
  * ContextMenuSeparator - Visual separator between menu sections.
8131
8127
  */
8132
- declare function ContextMenuSeparator({ className, ...props }: ContextMenuSeparatorProps): react_jsx_runtime.JSX.Element;
8128
+ declare function ContextMenuSeparator({ className, ...props }: ContextMenuSeparatorProps): React$1.JSX.Element;
8133
8129
  /**
8134
8130
  * ContextMenuShortcut - Displays keyboard shortcut hint.
8135
8131
  */
8136
- declare function ContextMenuShortcut({ className, ...props }: ContextMenuShortcutProps): react_jsx_runtime.JSX.Element;
8132
+ declare function ContextMenuShortcut({ className, ...props }: ContextMenuShortcutProps): React$1.JSX.Element;
8137
8133
 
8138
8134
  /**
8139
8135
  * ContextMenuSubTrigger variant styles
@@ -8247,50 +8243,50 @@ type DrawerDescriptionProps = ComponentPropsWithoutRef<typeof Drawer$1.Descripti
8247
8243
  * </DrawerContent>
8248
8244
  * </Drawer>
8249
8245
  */
8250
- declare function Drawer({ ...props }: DrawerProps): react_jsx_runtime.JSX.Element;
8246
+ declare function Drawer({ ...props }: DrawerProps): React$1.JSX.Element;
8251
8247
  /**
8252
8248
  * DrawerTrigger - Button that opens the drawer.
8253
8249
  */
8254
- declare function DrawerTrigger({ ...props }: DrawerTriggerProps): react_jsx_runtime.JSX.Element;
8250
+ declare function DrawerTrigger({ ...props }: DrawerTriggerProps): React$1.JSX.Element;
8255
8251
  /**
8256
8252
  * DrawerPortal - Renders drawer content in a portal.
8257
8253
  */
8258
- declare function DrawerPortal({ ...props }: DrawerPortalProps): react_jsx_runtime.JSX.Element;
8254
+ declare function DrawerPortal({ ...props }: DrawerPortalProps): React$1.JSX.Element;
8259
8255
  /**
8260
8256
  * DrawerClose - Button that closes the drawer.
8261
8257
  */
8262
- declare function DrawerClose({ ...props }: DrawerCloseProps): react_jsx_runtime.JSX.Element;
8258
+ declare function DrawerClose({ ...props }: DrawerCloseProps): React$1.JSX.Element;
8263
8259
  /**
8264
8260
  * DrawerOverlay - Semi-transparent backdrop behind the drawer.
8265
8261
  */
8266
- declare function DrawerOverlay({ className, ...props }: DrawerOverlayProps): react_jsx_runtime.JSX.Element;
8262
+ declare function DrawerOverlay({ className, ...props }: DrawerOverlayProps): React$1.JSX.Element;
8267
8263
  /**
8268
8264
  * DrawerContent - Main content container for the drawer.
8269
8265
  *
8270
8266
  * Automatically includes overlay and handles positioning based on direction.
8271
8267
  * Includes a drag handle for bottom drawers.
8272
8268
  */
8273
- declare function DrawerContent({ className, children, ...props }: DrawerContentProps): react_jsx_runtime.JSX.Element;
8269
+ declare function DrawerContent({ className, children, ...props }: DrawerContentProps): React$1.JSX.Element;
8274
8270
  /**
8275
8271
  * DrawerHeader - Container for drawer title and description.
8276
8272
  *
8277
8273
  * Centered text for top/bottom drawers, left-aligned for side drawers on desktop.
8278
8274
  */
8279
- declare function DrawerHeader({ className, ...props }: DrawerHeaderProps): react_jsx_runtime.JSX.Element;
8275
+ declare function DrawerHeader({ className, ...props }: DrawerHeaderProps): React$1.JSX.Element;
8280
8276
  /**
8281
8277
  * DrawerFooter - Footer container for drawer actions.
8282
8278
  *
8283
8279
  * Positioned at the bottom with auto margin-top.
8284
8280
  */
8285
- declare function DrawerFooter({ className, ...props }: DrawerFooterProps): react_jsx_runtime.JSX.Element;
8281
+ declare function DrawerFooter({ className, ...props }: DrawerFooterProps): React$1.JSX.Element;
8286
8282
  /**
8287
8283
  * DrawerTitle - Title text for the drawer.
8288
8284
  */
8289
- declare function DrawerTitle({ className, ...props }: DrawerTitleProps): react_jsx_runtime.JSX.Element;
8285
+ declare function DrawerTitle({ className, ...props }: DrawerTitleProps): React$1.JSX.Element;
8290
8286
  /**
8291
8287
  * DrawerDescription - Description text for the drawer.
8292
8288
  */
8293
- declare function DrawerDescription({ className, ...props }: DrawerDescriptionProps): react_jsx_runtime.JSX.Element;
8289
+ declare function DrawerDescription({ className, ...props }: DrawerDescriptionProps): React$1.JSX.Element;
8294
8290
 
8295
8291
  /**
8296
8292
  * DrawerOverlay variant styles
@@ -8417,67 +8413,67 @@ interface DropdownMenuSubContentProps extends ComponentProps<typeof DropdownMenu
8417
8413
  * </DropdownMenuContent>
8418
8414
  * </DropdownMenu>
8419
8415
  */
8420
- declare function DropdownMenu({ ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
8416
+ declare function DropdownMenu({ ...props }: DropdownMenuProps): React$1.JSX.Element;
8421
8417
  /**
8422
8418
  * DropdownMenuPortal - Renders dropdown menu content in a portal.
8423
8419
  */
8424
- declare function DropdownMenuPortal({ ...props }: DropdownMenuPortalProps): react_jsx_runtime.JSX.Element;
8420
+ declare function DropdownMenuPortal({ ...props }: DropdownMenuPortalProps): React$1.JSX.Element;
8425
8421
  /**
8426
8422
  * DropdownMenuTrigger - Button that opens the dropdown menu.
8427
8423
  */
8428
- declare function DropdownMenuTrigger({ ...props }: DropdownMenuTriggerProps): react_jsx_runtime.JSX.Element;
8424
+ declare function DropdownMenuTrigger({ ...props }: DropdownMenuTriggerProps): React$1.JSX.Element;
8429
8425
  /**
8430
8426
  * DropdownMenuContent - Main content container for the dropdown menu.
8431
8427
  */
8432
- declare function DropdownMenuContent({ className, sideOffset, ...props }: DropdownMenuContentProps): react_jsx_runtime.JSX.Element;
8428
+ declare function DropdownMenuContent({ className, sideOffset, ...props }: DropdownMenuContentProps): React$1.JSX.Element;
8433
8429
  /**
8434
8430
  * DropdownMenuGroup - Groups related menu items together.
8435
8431
  */
8436
- declare function DropdownMenuGroup({ ...props }: DropdownMenuGroupProps): react_jsx_runtime.JSX.Element;
8432
+ declare function DropdownMenuGroup({ ...props }: DropdownMenuGroupProps): React$1.JSX.Element;
8437
8433
  /**
8438
8434
  * DropdownMenuItem - An interactive menu item.
8439
8435
  *
8440
8436
  * Supports inset layout and destructive variant.
8441
8437
  */
8442
- declare function DropdownMenuItem({ className, inset, variant, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
8438
+ declare function DropdownMenuItem({ className, inset, variant, ...props }: DropdownMenuItemProps): React$1.JSX.Element;
8443
8439
  /**
8444
8440
  * DropdownMenuCheckboxItem - A menu item that can be checked/unchecked.
8445
8441
  */
8446
- declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: DropdownMenuCheckboxItemProps): react_jsx_runtime.JSX.Element;
8442
+ declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: DropdownMenuCheckboxItemProps): React$1.JSX.Element;
8447
8443
  /**
8448
8444
  * DropdownMenuRadioGroup - Groups radio items together.
8449
8445
  */
8450
- declare function DropdownMenuRadioGroup({ ...props }: DropdownMenuRadioGroupProps): react_jsx_runtime.JSX.Element;
8446
+ declare function DropdownMenuRadioGroup({ ...props }: DropdownMenuRadioGroupProps): React$1.JSX.Element;
8451
8447
  /**
8452
8448
  * DropdownMenuRadioItem - A radio menu item within a radio group.
8453
8449
  */
8454
- declare function DropdownMenuRadioItem({ className, children, ...props }: DropdownMenuRadioItemProps): react_jsx_runtime.JSX.Element;
8450
+ declare function DropdownMenuRadioItem({ className, children, ...props }: DropdownMenuRadioItemProps): React$1.JSX.Element;
8455
8451
  /**
8456
8452
  * DropdownMenuLabel - A non-interactive label for menu sections.
8457
8453
  */
8458
- declare function DropdownMenuLabel({ className, inset, ...props }: DropdownMenuLabelProps): react_jsx_runtime.JSX.Element;
8454
+ declare function DropdownMenuLabel({ className, inset, ...props }: DropdownMenuLabelProps): React$1.JSX.Element;
8459
8455
  /**
8460
8456
  * DropdownMenuSeparator - A visual separator between menu sections.
8461
8457
  */
8462
- declare function DropdownMenuSeparator({ className, ...props }: DropdownMenuSeparatorProps): react_jsx_runtime.JSX.Element;
8458
+ declare function DropdownMenuSeparator({ className, ...props }: DropdownMenuSeparatorProps): React$1.JSX.Element;
8463
8459
  /**
8464
8460
  * DropdownMenuShortcut - Displays keyboard shortcut hints.
8465
8461
  */
8466
- declare function DropdownMenuShortcut({ className, ...props }: DropdownMenuShortcutProps): react_jsx_runtime.JSX.Element;
8462
+ declare function DropdownMenuShortcut({ className, ...props }: DropdownMenuShortcutProps): React$1.JSX.Element;
8467
8463
  /**
8468
8464
  * DropdownMenuSub - Container for nested submenus.
8469
8465
  */
8470
- declare function DropdownMenuSub({ ...props }: DropdownMenuSubProps): react_jsx_runtime.JSX.Element;
8466
+ declare function DropdownMenuSub({ ...props }: DropdownMenuSubProps): React$1.JSX.Element;
8471
8467
  /**
8472
8468
  * DropdownMenuSubTrigger - Trigger for opening a submenu.
8473
8469
  *
8474
8470
  * Includes a chevron icon indicator.
8475
8471
  */
8476
- declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: DropdownMenuSubTriggerProps): react_jsx_runtime.JSX.Element;
8472
+ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: DropdownMenuSubTriggerProps): React$1.JSX.Element;
8477
8473
  /**
8478
8474
  * DropdownMenuSubContent - Content container for submenus.
8479
8475
  */
8480
- declare function DropdownMenuSubContent({ className, ...props }: DropdownMenuSubContentProps): react_jsx_runtime.JSX.Element;
8476
+ declare function DropdownMenuSubContent({ className, ...props }: DropdownMenuSubContentProps): React$1.JSX.Element;
8481
8477
 
8482
8478
  /**
8483
8479
  * DropdownMenuContent variant styles
@@ -8618,29 +8614,29 @@ declare const fileTreeRowVariants: (props?: ({
8618
8614
  variant?: "outline" | "ide" | "notion" | null | undefined;
8619
8615
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8620
8616
 
8621
- declare function FileTreeHeader({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
8622
- declare function FileTreeProjectBadge({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
8617
+ declare function FileTreeHeader({ className, children, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element | null;
8618
+ declare function FileTreeProjectBadge({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
8623
8619
  declare function FileTreeProjectMeta({ name, sub }: {
8624
8620
  name: string;
8625
8621
  sub?: string;
8626
- }): react_jsx_runtime.JSX.Element;
8627
- declare function FileTreeToolbar({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
8622
+ }): React$1.JSX.Element;
8623
+ declare function FileTreeToolbar({ className, children, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element | null;
8628
8624
  declare function FileTreeSearch({ shortcut, placeholder, value, onChange, }: {
8629
8625
  onChange?: (value: string) => void;
8630
8626
  placeholder?: string;
8631
8627
  shortcut?: string;
8632
8628
  value?: string;
8633
- }): react_jsx_runtime.JSX.Element;
8629
+ }): React$1.JSX.Element;
8634
8630
  declare function FileTreeAction({ icon, className, children, ...props }: React$1.ComponentProps<"button"> & {
8635
8631
  icon?: React$1.ReactNode;
8636
- }): react_jsx_runtime.JSX.Element;
8637
- declare function FileTreeBody({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
8632
+ }): React$1.JSX.Element;
8633
+ declare function FileTreeBody({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
8638
8634
  declare function FileTreeFooter({ branch, indicator, children, }: {
8639
8635
  branch?: string;
8640
8636
  children?: React$1.ReactNode;
8641
8637
  indicator?: "dot" | "none";
8642
- }): react_jsx_runtime.JSX.Element | null;
8643
- declare function FileTree({ data, variant, size, expanded: expandedProp, defaultExpanded, selectedPath: selectedPathProp, defaultSelectedPath, onToggle, onSelect, renderRow, renderLeading, renderTrailing, getNodeProps, searchValue: searchValueProp, onSearchChange, searchPlaceholder, keyboardNav, className, children, ...props }: FileTreeProps): react_jsx_runtime.JSX.Element;
8638
+ }): React$1.JSX.Element | null;
8639
+ declare function FileTree({ data, variant, size, expanded: expandedProp, defaultExpanded, selectedPath: selectedPathProp, defaultSelectedPath, onToggle, onSelect, renderRow, renderLeading, renderTrailing, getNodeProps, searchValue: searchValueProp, onSearchChange, searchPlaceholder, keyboardNav, className, children, ...props }: FileTreeProps): React$1.JSX.Element;
8644
8640
  declare namespace FileTree {
8645
8641
  var Header: typeof FileTreeHeader;
8646
8642
  var ProjectBadge: typeof FileTreeProjectBadge;
@@ -8718,21 +8714,21 @@ interface HeaderActionsProps extends ComponentProps<"div"> {
8718
8714
  * </HeaderActions>
8719
8715
  * </Header>
8720
8716
  */
8721
- declare function Header({ className, variant, sticky, contained, layout, containerClassName, children, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
8717
+ declare function Header({ className, variant, sticky, contained, layout, containerClassName, children, ...props }: HeaderProps): React$1.JSX.Element;
8722
8718
  /**
8723
8719
  * HeaderBrand - Logo/brand area of the header.
8724
8720
  *
8725
8721
  * Can optionally render as a link when asLink is true.
8726
8722
  */
8727
- declare function HeaderBrand({ className, asLink, href, children, ...props }: HeaderBrandProps): react_jsx_runtime.JSX.Element;
8723
+ declare function HeaderBrand({ className, asLink, href, children, ...props }: HeaderBrandProps): React$1.JSX.Element;
8728
8724
  /**
8729
8725
  * HeaderNav - Navigation container for header links.
8730
8726
  */
8731
- declare function HeaderNav({ className, children, ...props }: HeaderNavProps): react_jsx_runtime.JSX.Element;
8727
+ declare function HeaderNav({ className, children, ...props }: HeaderNavProps): React$1.JSX.Element;
8732
8728
  /**
8733
8729
  * HeaderActions - Actions container for buttons/controls.
8734
8730
  */
8735
- declare function HeaderActions({ className, align, children, ...props }: HeaderActionsProps): react_jsx_runtime.JSX.Element;
8731
+ declare function HeaderActions({ className, align, children, ...props }: HeaderActionsProps): React$1.JSX.Element;
8736
8732
 
8737
8733
  /**
8738
8734
  * Header root variant styles
@@ -8838,7 +8834,7 @@ type LogoContaTone = NonNullable<VariantProps<typeof logoContaVariants>["tone"]>
8838
8834
  * // Image logo
8839
8835
  * <LogoConta alt="Brius" src="/logos/brius.svg" tone="blue" />
8840
8836
  */
8841
- declare function LogoConta({ className, tone, src, alt, children, ...props }: LogoContaProps): react_jsx_runtime.JSX.Element;
8837
+ declare function LogoConta({ className, tone, src, alt, children, ...props }: LogoContaProps): React$1.JSX.Element;
8842
8838
 
8843
8839
  /**
8844
8840
  * Menu root props
@@ -8906,27 +8902,27 @@ interface MenuShortcutProps extends ComponentProps<"span"> {
8906
8902
  * <MenuItem variant="destructive">Delete</MenuItem>
8907
8903
  * </Menu>
8908
8904
  */
8909
- declare function Menu({ className, orientation, maxHeight, children, ...props }: MenuProps): react_jsx_runtime.JSX.Element;
8905
+ declare function Menu({ className, orientation, maxHeight, children, ...props }: MenuProps): React$1.JSX.Element;
8910
8906
  /**
8911
8907
  * MenuItem - Individual menu item with optional variants.
8912
8908
  */
8913
- declare function MenuItem({ className, variant, inset, selected, onSelect, disabled, children, onClick, onKeyDown, ...props }: MenuItemProps): react_jsx_runtime.JSX.Element;
8909
+ declare function MenuItem({ className, variant, inset, selected, onSelect, disabled, children, onClick, onKeyDown, ...props }: MenuItemProps): React$1.JSX.Element;
8914
8910
  /**
8915
8911
  * MenuGroup - Groups related menu items together.
8916
8912
  */
8917
- declare function MenuGroup({ className, label, children, ...props }: MenuGroupProps): react_jsx_runtime.JSX.Element;
8913
+ declare function MenuGroup({ className, label, children, ...props }: MenuGroupProps): React$1.JSX.Element;
8918
8914
  /**
8919
8915
  * MenuLabel - Label for a group of menu items.
8920
8916
  */
8921
- declare function MenuLabel({ className, inset, children, ...props }: MenuLabelProps): react_jsx_runtime.JSX.Element;
8917
+ declare function MenuLabel({ className, inset, children, ...props }: MenuLabelProps): React$1.JSX.Element;
8922
8918
  /**
8923
8919
  * MenuSeparator - Visual divider between menu items.
8924
8920
  */
8925
- declare function MenuSeparator({ className, ...props }: MenuSeparatorProps): react_jsx_runtime.JSX.Element;
8921
+ declare function MenuSeparator({ className, ...props }: MenuSeparatorProps): React$1.JSX.Element;
8926
8922
  /**
8927
8923
  * MenuShortcut - Displays keyboard shortcut hint.
8928
8924
  */
8929
- declare function MenuShortcut({ className, children, ...props }: MenuShortcutProps): react_jsx_runtime.JSX.Element;
8925
+ declare function MenuShortcut({ className, children, ...props }: MenuShortcutProps): React$1.JSX.Element;
8930
8926
 
8931
8927
  /**
8932
8928
  * Menu root variant styles
@@ -9063,71 +9059,71 @@ interface MenubarSubContentProps extends ComponentProps<typeof MenubarPrimitive.
9063
9059
  * </MenubarMenu>
9064
9060
  * </Menubar>
9065
9061
  */
9066
- declare function Menubar({ className, ...props }: MenubarProps): react_jsx_runtime.JSX.Element;
9062
+ declare function Menubar({ className, ...props }: MenubarProps): React$1.JSX.Element;
9067
9063
  /**
9068
9064
  * MenubarMenu - Container for a single menu within the menubar.
9069
9065
  */
9070
- declare function MenubarMenu({ ...props }: MenubarMenuProps): react_jsx_runtime.JSX.Element;
9066
+ declare function MenubarMenu({ ...props }: MenubarMenuProps): React$1.JSX.Element;
9071
9067
  /**
9072
9068
  * MenubarGroup - Groups related menu items together.
9073
9069
  */
9074
- declare function MenubarGroup({ ...props }: MenubarGroupProps): react_jsx_runtime.JSX.Element;
9070
+ declare function MenubarGroup({ ...props }: MenubarGroupProps): React$1.JSX.Element;
9075
9071
  /**
9076
9072
  * MenubarPortal - Renders menubar content in a portal.
9077
9073
  */
9078
- declare function MenubarPortal({ ...props }: MenubarPortalProps): react_jsx_runtime.JSX.Element;
9074
+ declare function MenubarPortal({ ...props }: MenubarPortalProps): React$1.JSX.Element;
9079
9075
  /**
9080
9076
  * MenubarRadioGroup - Groups radio items together.
9081
9077
  */
9082
- declare function MenubarRadioGroup({ ...props }: MenubarRadioGroupProps): react_jsx_runtime.JSX.Element;
9078
+ declare function MenubarRadioGroup({ ...props }: MenubarRadioGroupProps): React$1.JSX.Element;
9083
9079
  /**
9084
9080
  * MenubarTrigger - Button that opens a menu in the menubar.
9085
9081
  */
9086
- declare function MenubarTrigger({ className, ...props }: MenubarTriggerProps): react_jsx_runtime.JSX.Element;
9082
+ declare function MenubarTrigger({ className, ...props }: MenubarTriggerProps): React$1.JSX.Element;
9087
9083
  /**
9088
9084
  * MenubarContent - Main content container for a menu.
9089
9085
  */
9090
- declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: MenubarContentProps): react_jsx_runtime.JSX.Element;
9086
+ declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: MenubarContentProps): React$1.JSX.Element;
9091
9087
  /**
9092
9088
  * MenubarItem - An interactive menu item.
9093
9089
  *
9094
9090
  * Supports inset layout and destructive variant.
9095
9091
  */
9096
- declare function MenubarItem({ className, inset, variant, ...props }: MenubarItemProps): react_jsx_runtime.JSX.Element;
9092
+ declare function MenubarItem({ className, inset, variant, ...props }: MenubarItemProps): React$1.JSX.Element;
9097
9093
  /**
9098
9094
  * MenubarCheckboxItem - A menu item that can be checked/unchecked.
9099
9095
  */
9100
- declare function MenubarCheckboxItem({ className, children, checked, ...props }: MenubarCheckboxItemProps): react_jsx_runtime.JSX.Element;
9096
+ declare function MenubarCheckboxItem({ className, children, checked, ...props }: MenubarCheckboxItemProps): React$1.JSX.Element;
9101
9097
  /**
9102
9098
  * MenubarRadioItem - A radio menu item within a radio group.
9103
9099
  */
9104
- declare function MenubarRadioItem({ className, children, ...props }: MenubarRadioItemProps): react_jsx_runtime.JSX.Element;
9100
+ declare function MenubarRadioItem({ className, children, ...props }: MenubarRadioItemProps): React$1.JSX.Element;
9105
9101
  /**
9106
9102
  * MenubarLabel - A non-interactive label for menu sections.
9107
9103
  */
9108
- declare function MenubarLabel({ className, inset, ...props }: MenubarLabelProps): react_jsx_runtime.JSX.Element;
9104
+ declare function MenubarLabel({ className, inset, ...props }: MenubarLabelProps): React$1.JSX.Element;
9109
9105
  /**
9110
9106
  * MenubarSeparator - A visual separator between menu sections.
9111
9107
  */
9112
- declare function MenubarSeparator({ className, ...props }: MenubarSeparatorProps): react_jsx_runtime.JSX.Element;
9108
+ declare function MenubarSeparator({ className, ...props }: MenubarSeparatorProps): React$1.JSX.Element;
9113
9109
  /**
9114
9110
  * MenubarShortcut - Displays keyboard shortcut hints.
9115
9111
  */
9116
- declare function MenubarShortcut({ className, ...props }: MenubarShortcutProps): react_jsx_runtime.JSX.Element;
9112
+ declare function MenubarShortcut({ className, ...props }: MenubarShortcutProps): React$1.JSX.Element;
9117
9113
  /**
9118
9114
  * MenubarSub - Container for nested submenus.
9119
9115
  */
9120
- declare function MenubarSub({ ...props }: MenubarSubProps): react_jsx_runtime.JSX.Element;
9116
+ declare function MenubarSub({ ...props }: MenubarSubProps): React$1.JSX.Element;
9121
9117
  /**
9122
9118
  * MenubarSubTrigger - Trigger for opening a submenu.
9123
9119
  *
9124
9120
  * Includes a chevron icon indicator.
9125
9121
  */
9126
- declare function MenubarSubTrigger({ className, inset, children, ...props }: MenubarSubTriggerProps): react_jsx_runtime.JSX.Element;
9122
+ declare function MenubarSubTrigger({ className, inset, children, ...props }: MenubarSubTriggerProps): React$1.JSX.Element;
9127
9123
  /**
9128
9124
  * MenubarSubContent - Content container for submenus.
9129
9125
  */
9130
- declare function MenubarSubContent({ className, ...props }: MenubarSubContentProps): react_jsx_runtime.JSX.Element;
9126
+ declare function MenubarSubContent({ className, ...props }: MenubarSubContentProps): React$1.JSX.Element;
9131
9127
 
9132
9128
  /**
9133
9129
  * Menubar root variant styles
@@ -9264,33 +9260,33 @@ interface NavbarMenuProps extends ComponentProps<"div"> {
9264
9260
  * </NavbarContent>
9265
9261
  * </Navbar>
9266
9262
  */
9267
- declare function Navbar({ className, variant, size, sticky, contained, containerClassName, children, ...props }: NavbarProps): react_jsx_runtime.JSX.Element;
9263
+ declare function Navbar({ className, variant, size, sticky, contained, containerClassName, children, ...props }: NavbarProps): React$1.JSX.Element;
9268
9264
  /**
9269
9265
  * NavbarBrand - Logo/brand area of the navbar.
9270
9266
  *
9271
9267
  * Renders as a link when href is provided.
9272
9268
  */
9273
- declare function NavbarBrand({ className, href, children, ...props }: NavbarBrandProps): react_jsx_runtime.JSX.Element;
9269
+ declare function NavbarBrand({ className, href, children, ...props }: NavbarBrandProps): React$1.JSX.Element;
9274
9270
  /**
9275
9271
  * NavbarContent - Container for navbar content groups.
9276
9272
  */
9277
- declare function NavbarContent({ className, justify, children, ...props }: NavbarContentProps): react_jsx_runtime.JSX.Element;
9273
+ declare function NavbarContent({ className, justify, children, ...props }: NavbarContentProps): React$1.JSX.Element;
9278
9274
  /**
9279
9275
  * NavbarItem - Wrapper for individual navbar items.
9280
9276
  */
9281
- declare function NavbarItem({ className, isActive, children, ...props }: NavbarItemProps): react_jsx_runtime.JSX.Element;
9277
+ declare function NavbarItem({ className, isActive, children, ...props }: NavbarItemProps): React$1.JSX.Element;
9282
9278
  /**
9283
9279
  * NavbarLink - Navigation link for the navbar.
9284
9280
  */
9285
- declare function NavbarLink({ className, isActive, children, ...props }: NavbarLinkProps): react_jsx_runtime.JSX.Element;
9281
+ declare function NavbarLink({ className, isActive, children, ...props }: NavbarLinkProps): React$1.JSX.Element;
9286
9282
  /**
9287
9283
  * NavbarMenuToggle - Toggle button for mobile menu.
9288
9284
  */
9289
- declare function NavbarMenuToggle({ className, isOpen, srLabel, children, ...props }: NavbarMenuToggleProps): react_jsx_runtime.JSX.Element;
9285
+ declare function NavbarMenuToggle({ className, isOpen, srLabel, children, ...props }: NavbarMenuToggleProps): React$1.JSX.Element;
9290
9286
  /**
9291
9287
  * NavbarMenu - Mobile menu container.
9292
9288
  */
9293
- declare function NavbarMenu({ className, isOpen, children, ...props }: NavbarMenuProps): react_jsx_runtime.JSX.Element;
9289
+ declare function NavbarMenu({ className, isOpen, children, ...props }: NavbarMenuProps): React$1.JSX.Element;
9294
9290
 
9295
9291
  /**
9296
9292
  * Navbar root variant styles
@@ -9443,45 +9439,45 @@ declare const navigationMenuIndicatorArrowVariants: (props?: class_variance_auth
9443
9439
  * </NavigationMenuList>
9444
9440
  * </NavigationMenu>
9445
9441
  */
9446
- declare function NavigationMenu({ className, children, viewport, ...props }: NavigationMenuProps): react_jsx_runtime.JSX.Element;
9442
+ declare function NavigationMenu({ className, children, viewport, ...props }: NavigationMenuProps): React$1.JSX.Element;
9447
9443
  /**
9448
9444
  * NavigationMenuList - Container for navigation menu items.
9449
9445
  */
9450
- declare function NavigationMenuList({ className, ...props }: NavigationMenuListProps): react_jsx_runtime.JSX.Element;
9446
+ declare function NavigationMenuList({ className, ...props }: NavigationMenuListProps): React$1.JSX.Element;
9451
9447
  /**
9452
9448
  * NavigationMenuItem - An individual navigation item.
9453
9449
  */
9454
- declare function NavigationMenuItem({ className, ...props }: NavigationMenuItemProps): react_jsx_runtime.JSX.Element;
9450
+ declare function NavigationMenuItem({ className, ...props }: NavigationMenuItemProps): React$1.JSX.Element;
9455
9451
  /**
9456
9452
  * NavigationMenuTrigger - Button that opens a navigation menu content panel.
9457
9453
  *
9458
9454
  * Includes a chevron icon that rotates when open.
9459
9455
  */
9460
- declare function NavigationMenuTrigger({ className, children, ...props }: NavigationMenuTriggerProps): react_jsx_runtime.JSX.Element;
9456
+ declare function NavigationMenuTrigger({ className, children, ...props }: NavigationMenuTriggerProps): React$1.JSX.Element;
9461
9457
  /**
9462
9458
  * NavigationMenuContent - Content panel for navigation menu items.
9463
9459
  *
9464
9460
  * Supports animated transitions for entering and leaving states.
9465
9461
  */
9466
- declare function NavigationMenuContent({ className, ...props }: NavigationMenuContentProps): react_jsx_runtime.JSX.Element;
9462
+ declare function NavigationMenuContent({ className, ...props }: NavigationMenuContentProps): React$1.JSX.Element;
9467
9463
  /**
9468
9464
  * NavigationMenuViewport - Viewport container for navigation menu content.
9469
9465
  *
9470
9466
  * Positioned below the navigation menu with proper sizing.
9471
9467
  */
9472
- declare function NavigationMenuViewport({ className, ...props }: NavigationMenuViewportProps): react_jsx_runtime.JSX.Element;
9468
+ declare function NavigationMenuViewport({ className, ...props }: NavigationMenuViewportProps): React$1.JSX.Element;
9473
9469
  /**
9474
9470
  * NavigationMenuLink - A navigation link within the menu.
9475
9471
  *
9476
9472
  * Use for both internal and external navigation links.
9477
9473
  */
9478
- declare function NavigationMenuLink({ className, ...props }: NavigationMenuLinkProps): react_jsx_runtime.JSX.Element;
9474
+ declare function NavigationMenuLink({ className, ...props }: NavigationMenuLinkProps): React$1.JSX.Element;
9479
9475
  /**
9480
9476
  * NavigationMenuIndicator - Visual indicator showing the active menu item.
9481
9477
  *
9482
9478
  * Animates between items as the user navigates.
9483
9479
  */
9484
- declare function NavigationMenuIndicator({ className, ...props }: NavigationMenuIndicatorProps): react_jsx_runtime.JSX.Element;
9480
+ declare function NavigationMenuIndicator({ className, ...props }: NavigationMenuIndicatorProps): React$1.JSX.Element;
9485
9481
 
9486
9482
  /**
9487
9483
  * Pagination root props
@@ -9544,37 +9540,37 @@ interface PaginationEllipsisProps extends ComponentProps<"span"> {
9544
9540
  * </PaginationContent>
9545
9541
  * </Pagination>
9546
9542
  */
9547
- declare function Pagination({ className, ...props }: PaginationProps): react_jsx_runtime.JSX.Element;
9543
+ declare function Pagination({ className, ...props }: PaginationProps): React$1.JSX.Element;
9548
9544
  /**
9549
9545
  * PaginationContent - Container for pagination items.
9550
9546
  */
9551
- declare function PaginationContent({ className, ...props }: PaginationContentProps): react_jsx_runtime.JSX.Element;
9547
+ declare function PaginationContent({ className, ...props }: PaginationContentProps): React$1.JSX.Element;
9552
9548
  /**
9553
9549
  * PaginationItem - Wrapper for individual pagination elements.
9554
9550
  */
9555
- declare function PaginationItem({ ...props }: PaginationItemProps): react_jsx_runtime.JSX.Element;
9551
+ declare function PaginationItem({ ...props }: PaginationItemProps): React$1.JSX.Element;
9556
9552
  /**
9557
9553
  * PaginationLink - A link to a specific page.
9558
9554
  *
9559
9555
  * Use isActive to indicate the current page.
9560
9556
  */
9561
- declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
9557
+ declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): React$1.JSX.Element;
9562
9558
  /**
9563
9559
  * PaginationPrevious - Link to the previous page.
9564
9560
  *
9565
9561
  * Includes a chevron icon and "Previous" text on larger screens.
9566
9562
  */
9567
- declare function PaginationPrevious({ className, ...props }: PaginationPreviousProps): react_jsx_runtime.JSX.Element;
9563
+ declare function PaginationPrevious({ className, ...props }: PaginationPreviousProps): React$1.JSX.Element;
9568
9564
  /**
9569
9565
  * PaginationNext - Link to the next page.
9570
9566
  *
9571
9567
  * Includes a chevron icon and "Next" text on larger screens.
9572
9568
  */
9573
- declare function PaginationNext({ className, ...props }: PaginationNextProps): react_jsx_runtime.JSX.Element;
9569
+ declare function PaginationNext({ className, ...props }: PaginationNextProps): React$1.JSX.Element;
9574
9570
  /**
9575
9571
  * PaginationEllipsis - Indicates more pages between visible page links.
9576
9572
  */
9577
- declare function PaginationEllipsis({ className, ...props }: PaginationEllipsisProps): react_jsx_runtime.JSX.Element;
9573
+ declare function PaginationEllipsis({ className, ...props }: PaginationEllipsisProps): React$1.JSX.Element;
9578
9574
 
9579
9575
  /**
9580
9576
  * Pagination root variant styles
@@ -9726,26 +9722,26 @@ interface TooltipArrowProps extends ComponentPropsWithoutRef<typeof TooltipPrimi
9726
9722
  * TooltipProvider wraps your app to enable tooltips.
9727
9723
  * Provides shared configuration for delay and behavior.
9728
9724
  */
9729
- declare function TooltipProvider({ delayDuration, children, ...props }: TooltipProviderProps): react_jsx_runtime.JSX.Element;
9725
+ declare function TooltipProvider({ delayDuration, children, ...props }: TooltipProviderProps): React$1.JSX.Element;
9730
9726
  /**
9731
9727
  * Tooltip displays contextual information on hover or focus.
9732
9728
  * Wraps content in its own TooltipProvider for convenience.
9733
9729
  */
9734
- declare function Tooltip({ children, ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
9730
+ declare function Tooltip({ children, ...props }: TooltipProps): React$1.JSX.Element;
9735
9731
  /**
9736
9732
  * TooltipTrigger is the element that triggers the tooltip.
9737
9733
  * Use asChild to wrap your own element instead of adding a wrapper.
9738
9734
  */
9739
- declare function TooltipTrigger({ children, ...props }: TooltipTriggerProps): react_jsx_runtime.JSX.Element;
9735
+ declare function TooltipTrigger({ children, ...props }: TooltipTriggerProps): React$1.JSX.Element;
9740
9736
  /**
9741
9737
  * TooltipArrow renders the arrow pointing to the trigger.
9742
9738
  */
9743
- declare function TooltipArrow({ className, ...props }: TooltipArrowProps): react_jsx_runtime.JSX.Element;
9739
+ declare function TooltipArrow({ className, ...props }: TooltipArrowProps): React$1.JSX.Element;
9744
9740
  /**
9745
9741
  * TooltipContent contains the tooltip message.
9746
9742
  * Automatically positioned and animated based on available space.
9747
9743
  */
9748
- declare function TooltipContent({ className, sideOffset, showArrow, children, ...props }: TooltipContentProps): react_jsx_runtime.JSX.Element;
9744
+ declare function TooltipContent({ className, sideOffset, showArrow, children, ...props }: TooltipContentProps): React$1.JSX.Element;
9749
9745
 
9750
9746
  /**
9751
9747
  * Tooltip content variant styles using CVA
@@ -10127,114 +10123,114 @@ declare function useSidebar(): SidebarContextProps;
10127
10123
  * <SidebarInset>...</SidebarInset>
10128
10124
  * </SidebarProvider>
10129
10125
  */
10130
- declare function SidebarProvider({ defaultOpen, mode, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: SidebarProviderProps): react_jsx_runtime.JSX.Element;
10126
+ declare function SidebarProvider({ defaultOpen, mode, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: SidebarProviderProps): React$1.JSX.Element;
10131
10127
  /**
10132
10128
  * Sidebar - The main sidebar component.
10133
10129
  *
10134
10130
  * Supports multiple variants and collapsible modes.
10135
10131
  * When `mode="dual"` is set on SidebarProvider, delegates to SidebarDualMode.
10136
10132
  */
10137
- declare function Sidebar({ side, variant, collapsible, className, children, ...props }: SidebarProps): react_jsx_runtime.JSX.Element;
10133
+ declare function Sidebar({ side, variant, collapsible, className, children, ...props }: SidebarProps): React$1.JSX.Element;
10138
10134
  /**
10139
10135
  * SidebarTrigger - Button to toggle the sidebar.
10140
10136
  */
10141
- declare function SidebarTrigger({ className, onClick, ...props }: SidebarTriggerProps): react_jsx_runtime.JSX.Element;
10137
+ declare function SidebarTrigger({ className, onClick, ...props }: SidebarTriggerProps): React$1.JSX.Element;
10142
10138
  /**
10143
10139
  * SidebarRail - Clickable edge to toggle sidebar.
10144
10140
  */
10145
- declare function SidebarRail({ className, ...props }: SidebarRailProps): react_jsx_runtime.JSX.Element;
10141
+ declare function SidebarRail({ className, ...props }: SidebarRailProps): React$1.JSX.Element;
10146
10142
  /**
10147
10143
  * SidebarInset - Main content area adjacent to sidebar.
10148
10144
  */
10149
- declare function SidebarInset({ className, ...props }: SidebarInsetProps): react_jsx_runtime.JSX.Element;
10145
+ declare function SidebarInset({ className, ...props }: SidebarInsetProps): React$1.JSX.Element;
10150
10146
  /**
10151
10147
  * SidebarInput - Input field styled for sidebar.
10152
10148
  */
10153
- declare function SidebarInput({ className, ...props }: SidebarInputProps): react_jsx_runtime.JSX.Element;
10149
+ declare function SidebarInput({ className, ...props }: SidebarInputProps): React$1.JSX.Element;
10154
10150
  /**
10155
10151
  * SidebarHeader - Header section of the sidebar.
10156
10152
  */
10157
- declare function SidebarHeader({ className, ...props }: SidebarHeaderProps): react_jsx_runtime.JSX.Element;
10153
+ declare function SidebarHeader({ className, ...props }: SidebarHeaderProps): React$1.JSX.Element;
10158
10154
  /**
10159
10155
  * SidebarFooter - Footer section of the sidebar.
10160
10156
  */
10161
- declare function SidebarFooter({ className, ...props }: SidebarFooterProps): react_jsx_runtime.JSX.Element;
10157
+ declare function SidebarFooter({ className, ...props }: SidebarFooterProps): React$1.JSX.Element;
10162
10158
  /**
10163
10159
  * SidebarSeparator - Divider for sidebar sections.
10164
10160
  */
10165
- declare function SidebarSeparator({ className, ...props }: SidebarSeparatorProps): react_jsx_runtime.JSX.Element;
10161
+ declare function SidebarSeparator({ className, ...props }: SidebarSeparatorProps): React$1.JSX.Element;
10166
10162
  /**
10167
10163
  * SidebarContent - Main scrollable content area.
10168
10164
  */
10169
- declare function SidebarContent({ className, ...props }: SidebarContentProps): react_jsx_runtime.JSX.Element;
10165
+ declare function SidebarContent({ className, ...props }: SidebarContentProps): React$1.JSX.Element;
10170
10166
  /**
10171
10167
  * SidebarGroup - Group container for sidebar items.
10172
10168
  */
10173
- declare function SidebarGroup({ className, ...props }: SidebarGroupProps): react_jsx_runtime.JSX.Element;
10169
+ declare function SidebarGroup({ className, ...props }: SidebarGroupProps): React$1.JSX.Element;
10174
10170
  /**
10175
10171
  * SidebarGroupLabel - Label for a sidebar group.
10176
10172
  */
10177
- declare function SidebarGroupLabel({ className, asChild, ...props }: SidebarGroupLabelProps): react_jsx_runtime.JSX.Element;
10173
+ declare function SidebarGroupLabel({ className, asChild, ...props }: SidebarGroupLabelProps): React$1.JSX.Element;
10178
10174
  /**
10179
10175
  * SidebarGroupAction - Action button for a sidebar group.
10180
10176
  */
10181
- declare function SidebarGroupAction({ className, asChild, ...props }: SidebarGroupActionProps): react_jsx_runtime.JSX.Element;
10177
+ declare function SidebarGroupAction({ className, asChild, ...props }: SidebarGroupActionProps): React$1.JSX.Element;
10182
10178
  /**
10183
10179
  * SidebarGroupContent - Content container for a sidebar group.
10184
10180
  */
10185
- declare function SidebarGroupContent({ className, ...props }: SidebarGroupContentProps): react_jsx_runtime.JSX.Element;
10181
+ declare function SidebarGroupContent({ className, ...props }: SidebarGroupContentProps): React$1.JSX.Element;
10186
10182
  /**
10187
10183
  * SidebarMenu - Menu list container.
10188
10184
  */
10189
- declare function SidebarMenu({ className, ...props }: SidebarMenuProps): react_jsx_runtime.JSX.Element;
10185
+ declare function SidebarMenu({ className, ...props }: SidebarMenuProps): React$1.JSX.Element;
10190
10186
  /**
10191
10187
  * SidebarMenuItem - Individual menu item.
10192
10188
  */
10193
- declare function SidebarMenuItem({ className, ...props }: SidebarMenuItemProps): react_jsx_runtime.JSX.Element;
10189
+ declare function SidebarMenuItem({ className, ...props }: SidebarMenuItemProps): React$1.JSX.Element;
10194
10190
  /**
10195
10191
  * SidebarMenuButton - Interactive menu button with variants.
10196
10192
  */
10197
- declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: SidebarMenuButtonProps): react_jsx_runtime.JSX.Element;
10193
+ declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: SidebarMenuButtonProps): React$1.JSX.Element;
10198
10194
  /**
10199
10195
  * SidebarMenuAction - Action button within a menu item.
10200
10196
  */
10201
- declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: SidebarMenuActionProps): react_jsx_runtime.JSX.Element;
10197
+ declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: SidebarMenuActionProps): React$1.JSX.Element;
10202
10198
  /**
10203
10199
  * SidebarMenuBadge - Badge displayed in a menu item.
10204
10200
  */
10205
- declare function SidebarMenuBadge({ className, ...props }: SidebarMenuBadgeProps): react_jsx_runtime.JSX.Element;
10201
+ declare function SidebarMenuBadge({ className, ...props }: SidebarMenuBadgeProps): React$1.JSX.Element;
10206
10202
  /**
10207
10203
  * SidebarMenuSkeleton - Loading skeleton for menu items.
10208
10204
  */
10209
- declare function SidebarMenuSkeleton({ className, showIcon, ...props }: SidebarMenuSkeletonProps): react_jsx_runtime.JSX.Element;
10205
+ declare function SidebarMenuSkeleton({ className, showIcon, ...props }: SidebarMenuSkeletonProps): React$1.JSX.Element;
10210
10206
  /**
10211
10207
  * SidebarMenuSub - Submenu container.
10212
10208
  */
10213
- declare function SidebarMenuSub({ className, ...props }: SidebarMenuSubProps): react_jsx_runtime.JSX.Element;
10209
+ declare function SidebarMenuSub({ className, ...props }: SidebarMenuSubProps): React$1.JSX.Element;
10214
10210
  /**
10215
10211
  * SidebarMenuSubItem - Individual submenu item.
10216
10212
  */
10217
- declare function SidebarMenuSubItem({ className, ...props }: SidebarMenuSubItemProps): react_jsx_runtime.JSX.Element;
10213
+ declare function SidebarMenuSubItem({ className, ...props }: SidebarMenuSubItemProps): React$1.JSX.Element;
10218
10214
  /**
10219
10215
  * SidebarMenuSubButton - Interactive button within a submenu.
10220
10216
  */
10221
- declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: SidebarMenuSubButtonProps): react_jsx_runtime.JSX.Element;
10217
+ declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: SidebarMenuSubButtonProps): React$1.JSX.Element;
10222
10218
  /**
10223
10219
  * SidebarRailContent - Icon rail zone in dual mode (always visible, 3rem wide).
10224
10220
  */
10225
- declare function SidebarRailContent({ className, ...props }: SidebarRailContentProps): react_jsx_runtime.JSX.Element | null;
10221
+ declare function SidebarRailContent({ className, ...props }: SidebarRailContentProps): React$1.JSX.Element | null;
10226
10222
  /**
10227
10223
  * SidebarRailButton - Icon button for the sidebar rail (32×32).
10228
10224
  *
10229
10225
  * Supports active/inactive states with Figma-aligned sizing.
10230
10226
  */
10231
- declare function SidebarRailButton({ isActive, tooltip, className, ...props }: SidebarRailButtonProps): react_jsx_runtime.JSX.Element;
10227
+ declare function SidebarRailButton({ isActive, tooltip, className, ...props }: SidebarRailButtonProps): React$1.JSX.Element;
10232
10228
  /**
10233
10229
  * SidebarPanelContent - Text panel zone in dual mode (toggleable, 13.5rem wide).
10234
10230
  *
10235
10231
  * Collapses to width 0 when sidebar state is "collapsed".
10236
10232
  */
10237
- declare function SidebarPanelContent({ className, ...props }: SidebarPanelContentProps): react_jsx_runtime.JSX.Element;
10233
+ declare function SidebarPanelContent({ className, ...props }: SidebarPanelContentProps): React$1.JSX.Element;
10238
10234
  interface SidebarLogoProps extends Omit<React$1.ComponentProps<"div">, "onClick"> {
10239
10235
  brand?: string;
10240
10236
  collapseLabel?: string;
@@ -10256,7 +10252,7 @@ interface SidebarLogoProps extends Omit<React$1.ComponentProps<"div">, "onClick"
10256
10252
  * <SidebarLogo brand="ETUS · DAM" showCollapse />
10257
10253
  * </SidebarHeader>
10258
10254
  */
10259
- declare function SidebarLogo({ mark, brand, sub, showCollapse, collapseLabel, onClick, className, ...props }: SidebarLogoProps): react_jsx_runtime.JSX.Element;
10255
+ declare function SidebarLogo({ mark, brand, sub, showCollapse, collapseLabel, onClick, className, ...props }: SidebarLogoProps): React$1.JSX.Element;
10260
10256
  interface SidebarAvatarProps {
10261
10257
  "aria-label"?: string;
10262
10258
  avatar?: React$1.ComponentProps<typeof Avatar>;
@@ -10284,7 +10280,7 @@ interface SidebarAvatarProps {
10284
10280
  * <SidebarThemeToggle />
10285
10281
  * </SidebarFooter>
10286
10282
  */
10287
- declare function SidebarAvatar({ avatar, name, email, showChevron, compact, onClick, className, "aria-label": ariaLabel, }: SidebarAvatarProps): react_jsx_runtime.JSX.Element;
10283
+ declare function SidebarAvatar({ avatar, name, email, showChevron, compact, onClick, className, "aria-label": ariaLabel, }: SidebarAvatarProps): React$1.JSX.Element;
10288
10284
  interface SidebarThemeToggleProps {
10289
10285
  className?: string;
10290
10286
  darkIcon?: React$1.ReactNode;
@@ -10308,7 +10304,7 @@ interface SidebarThemeToggleProps {
10308
10304
  * // Controlled
10309
10305
  * <SidebarThemeToggle mode={themeStore.mode} onToggle={themeStore.set} />
10310
10306
  */
10311
- declare function SidebarThemeToggle({ mode: controlledMode, onToggle, lightIcon, darkIcon, label, size, className, }: SidebarThemeToggleProps): react_jsx_runtime.JSX.Element;
10307
+ declare function SidebarThemeToggle({ mode: controlledMode, onToggle, lightIcon, darkIcon, label, size, className, }: SidebarThemeToggleProps): React$1.JSX.Element;
10312
10308
 
10313
10309
  /**
10314
10310
  * SkipLink item definition
@@ -10361,7 +10357,7 @@ interface SkipLinksListProps extends ComponentProps<"nav"> {
10361
10357
  * Content here
10362
10358
  * </main>
10363
10359
  */
10364
- declare function SkipLink({ className, targetId, children, alwaysVisible, position, variant, ...props }: SkipLinkProps): react_jsx_runtime.JSX.Element;
10360
+ declare function SkipLink({ className, targetId, children, alwaysVisible, position, variant, ...props }: SkipLinkProps): React$1.JSX.Element;
10365
10361
  /**
10366
10362
  * SkipLinksList - Multiple skip links for complex layouts.
10367
10363
  *
@@ -10377,7 +10373,7 @@ declare function SkipLink({ className, targetId, children, alwaysVisible, positi
10377
10373
  * ]}
10378
10374
  * />
10379
10375
  */
10380
- declare function SkipLinksList({ className, links, position, variant, ...props }: SkipLinksListProps): react_jsx_runtime.JSX.Element;
10376
+ declare function SkipLinksList({ className, links, position, variant, ...props }: SkipLinksListProps): React$1.JSX.Element;
10381
10377
 
10382
10378
  /**
10383
10379
  * SkipLink variant styles
@@ -10502,7 +10498,7 @@ interface SpeedDialProps extends Omit<ComponentProps<"div">, "children"> {
10502
10498
  * />
10503
10499
  * ```
10504
10500
  */
10505
- declare function SpeedDial({ actions, direction, icon, openIcon, open: controlledOpen, onOpenChange, disabled, size, tooltip, showLabels, mask, className, "aria-label": ariaLabel, ...props }: SpeedDialProps): react_jsx_runtime.JSX.Element;
10501
+ declare function SpeedDial({ actions, direction, icon, openIcon, open: controlledOpen, onOpenChange, disabled, size, tooltip, showLabels, mask, className, "aria-label": ariaLabel, ...props }: SpeedDialProps): React$1.JSX.Element;
10506
10502
 
10507
10503
  /**
10508
10504
  * TabNavigation variant styles
@@ -10625,7 +10621,7 @@ interface TabNavigationLinkProps extends Omit<React$1.AnchorHTMLAttributes<HTMLA
10625
10621
  * </TabNavigation>
10626
10622
  * ```
10627
10623
  */
10628
- declare function TabNavigation({ children, className, defaultValue, onValueChange, value: controlledValue, variant, ...props }: TabNavigationProps): react_jsx_runtime.JSX.Element;
10624
+ declare function TabNavigation({ children, className, defaultValue, onValueChange, value: controlledValue, variant, ...props }: TabNavigationProps): React$1.JSX.Element;
10629
10625
  declare namespace TabNavigation {
10630
10626
  var displayName: string;
10631
10627
  }
@@ -10635,7 +10631,7 @@ declare namespace TabNavigation {
10635
10631
  * Renders as an anchor tag for navigation. Can be used with or without href
10636
10632
  * for SPA frameworks that handle navigation differently.
10637
10633
  */
10638
- declare function TabNavigationLink({ active: activeProp, children, className, disabled, href, icon, onClick, value, ...props }: TabNavigationLinkProps): react_jsx_runtime.JSX.Element;
10634
+ declare function TabNavigationLink({ active: activeProp, children, className, disabled, href, icon, onClick, value, ...props }: TabNavigationLinkProps): React$1.JSX.Element;
10639
10635
  declare namespace TabNavigationLink {
10640
10636
  var displayName: string;
10641
10637
  }
@@ -10690,15 +10686,15 @@ interface TabPanelTriggerProps extends ComponentProps<typeof TabsPrimitive.Trigg
10690
10686
  * <TabPanel value="tab1">Content 1</TabPanel>
10691
10687
  * </TabPanelRoot>
10692
10688
  */
10693
- declare function TabPanelRoot({ className, ...props }: TabPanelRootProps): react_jsx_runtime.JSX.Element;
10689
+ declare function TabPanelRoot({ className, ...props }: TabPanelRootProps): React$1.JSX.Element;
10694
10690
  /**
10695
10691
  * TabPanelList - Container for tab triggers.
10696
10692
  */
10697
- declare function TabPanelList({ className, ...props }: TabPanelListProps): react_jsx_runtime.JSX.Element;
10693
+ declare function TabPanelList({ className, ...props }: TabPanelListProps): React$1.JSX.Element;
10698
10694
  /**
10699
10695
  * TabPanelTrigger - Button that activates its associated tab panel.
10700
10696
  */
10701
- declare function TabPanelTrigger({ className, ...props }: TabPanelTriggerProps): react_jsx_runtime.JSX.Element;
10697
+ declare function TabPanelTrigger({ className, ...props }: TabPanelTriggerProps): React$1.JSX.Element;
10702
10698
  /**
10703
10699
  * TabPanel - Content panel associated with a tab.
10704
10700
  *
@@ -10711,7 +10707,7 @@ declare function TabPanelTrigger({ className, ...props }: TabPanelTriggerProps):
10711
10707
  * <p>Manage your account here.</p>
10712
10708
  * </TabPanel>
10713
10709
  */
10714
- declare function TabPanel({ className, variant, ...props }: TabPanelProps): react_jsx_runtime.JSX.Element;
10710
+ declare function TabPanel({ className, variant, ...props }: TabPanelProps): React$1.JSX.Element;
10715
10711
 
10716
10712
  /**
10717
10713
  * TabPanelRoot variant styles
@@ -10802,11 +10798,11 @@ interface TabsContentProps extends ComponentProps<typeof TabsPrimitive.Content>
10802
10798
  * </Tabs>
10803
10799
  * ```
10804
10800
  */
10805
- declare function Tabs({ className, variant, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
10801
+ declare function Tabs({ className, variant, ...props }: TabsProps): React$1.JSX.Element;
10806
10802
  /**
10807
10803
  * TabsList - Container for tab triggers.
10808
10804
  */
10809
- declare function TabsList({ className, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
10805
+ declare function TabsList({ className, ...props }: TabsListProps): React$1.JSX.Element;
10810
10806
  /**
10811
10807
  * TabsTrigger - Button that activates its associated tab content.
10812
10808
  *
@@ -10814,11 +10810,11 @@ declare function TabsList({ className, ...props }: TabsListProps): react_jsx_run
10814
10810
  * matching the Figma `Tabs / Trigger` anatomy. When neither slot is provided,
10815
10811
  * `children` is rendered directly so existing call sites keep working.
10816
10812
  */
10817
- declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
10813
+ declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): React$1.JSX.Element;
10818
10814
  /**
10819
10815
  * TabsContent - Contains the content associated with each tab.
10820
10816
  */
10821
- declare function TabsContent({ className, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
10817
+ declare function TabsContent({ className, ...props }: TabsContentProps): React$1.JSX.Element;
10822
10818
 
10823
10819
  /**
10824
10820
  * Tabs root variant styles
@@ -10931,13 +10927,13 @@ interface ToolbarLinkProps extends ComponentProps<typeof ToolbarPrimitive.Link>
10931
10927
  * <ToolbarButton>Action</ToolbarButton>
10932
10928
  * </Toolbar>
10933
10929
  */
10934
- declare function Toolbar({ className, variant, ...props }: ToolbarProps): react_jsx_runtime.JSX.Element;
10930
+ declare function Toolbar({ className, variant, ...props }: ToolbarProps): React$1.JSX.Element;
10935
10931
  /**
10936
10932
  * ToolbarButton - Button for toolbar actions.
10937
10933
  *
10938
10934
  * Used for non-toggle actions within the toolbar.
10939
10935
  */
10940
- declare function ToolbarButton({ className, ...props }: ToolbarButtonProps): react_jsx_runtime.JSX.Element;
10936
+ declare function ToolbarButton({ className, ...props }: ToolbarButtonProps): React$1.JSX.Element;
10941
10937
  /**
10942
10938
  * ToolbarGroup - Generic grouping wrapper for related toolbar items.
10943
10939
  *
@@ -10945,31 +10941,31 @@ declare function ToolbarButton({ className, ...props }: ToolbarButtonProps): rea
10945
10941
  * single unit. Unlike ToolbarToggleGroup it carries no selection semantics —
10946
10942
  * it is a plain `role="group"` container for composition.
10947
10943
  */
10948
- declare function ToolbarGroup({ className, ...props }: ToolbarGroupProps): react_jsx_runtime.JSX.Element;
10944
+ declare function ToolbarGroup({ className, ...props }: ToolbarGroupProps): React$1.JSX.Element;
10949
10945
  /**
10950
10946
  * ToolbarToggleGroup - Container for toggle items.
10951
10947
  *
10952
10948
  * Groups toggle items for single or multiple selection.
10953
10949
  */
10954
- declare function ToolbarToggleGroup({ className, ...props }: ToolbarToggleGroupProps): react_jsx_runtime.JSX.Element;
10950
+ declare function ToolbarToggleGroup({ className, ...props }: ToolbarToggleGroupProps): React$1.JSX.Element;
10955
10951
  /**
10956
10952
  * ToolbarToggleItem - Individual toggle item within a toggle group.
10957
10953
  *
10958
10954
  * Represents a selectable option that can be toggled on/off.
10959
10955
  */
10960
- declare function ToolbarToggleItem({ className, ...props }: ToolbarToggleItemProps): react_jsx_runtime.JSX.Element;
10956
+ declare function ToolbarToggleItem({ className, ...props }: ToolbarToggleItemProps): React$1.JSX.Element;
10961
10957
  /**
10962
10958
  * ToolbarSeparator - Visual separator between toolbar groups.
10963
10959
  *
10964
10960
  * Provides visual division between groups of related actions.
10965
10961
  */
10966
- declare function ToolbarSeparator({ className, ...props }: ToolbarSeparatorProps): react_jsx_runtime.JSX.Element;
10962
+ declare function ToolbarSeparator({ className, ...props }: ToolbarSeparatorProps): React$1.JSX.Element;
10967
10963
  /**
10968
10964
  * ToolbarLink - Link element within the toolbar.
10969
10965
  *
10970
10966
  * Renders an accessible link styled to match toolbar items.
10971
10967
  */
10972
- declare function ToolbarLink({ className, ...props }: ToolbarLinkProps): react_jsx_runtime.JSX.Element;
10968
+ declare function ToolbarLink({ className, ...props }: ToolbarLinkProps): React$1.JSX.Element;
10973
10969
 
10974
10970
  /**
10975
10971
  * Topbar root props
@@ -11006,15 +11002,15 @@ type TopbarTrailingProps = ComponentProps<"div">;
11006
11002
  * </TopbarTrailing>
11007
11003
  * </Topbar>
11008
11004
  */
11009
- declare function Topbar({ className, variant, children, ...props }: TopbarProps): react_jsx_runtime.JSX.Element;
11005
+ declare function Topbar({ className, variant, children, ...props }: TopbarProps): React$1.JSX.Element;
11010
11006
  /**
11011
11007
  * TopbarLeading — left-aligned slot inside a Topbar.
11012
11008
  */
11013
- declare function TopbarLeading({ className, children, ...props }: TopbarLeadingProps): react_jsx_runtime.JSX.Element;
11009
+ declare function TopbarLeading({ className, children, ...props }: TopbarLeadingProps): React$1.JSX.Element;
11014
11010
  /**
11015
11011
  * TopbarTrailing — right-aligned slot inside a Topbar.
11016
11012
  */
11017
- declare function TopbarTrailing({ className, children, ...props }: TopbarTrailingProps): react_jsx_runtime.JSX.Element;
11013
+ declare function TopbarTrailing({ className, children, ...props }: TopbarTrailingProps): React$1.JSX.Element;
11018
11014
 
11019
11015
  /**
11020
11016
  * Topbar root variant styles.
@@ -11090,12 +11086,12 @@ type AccordionProps = React$1.ComponentProps<typeof AccordionPrimitive.Root> & A
11090
11086
  * </Accordion>
11091
11087
  * ```
11092
11088
  */
11093
- declare function Accordion({ variant, size, className, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
11089
+ declare function Accordion({ variant, size, className, ...props }: AccordionProps): React$1.JSX.Element;
11094
11090
  declare namespace Accordion {
11095
11091
  var displayName: string;
11096
11092
  }
11097
11093
  type AccordionItemProps = React$1.ComponentProps<typeof AccordionPrimitive.Item>;
11098
- declare function AccordionItem({ className, ...props }: AccordionItemProps): react_jsx_runtime.JSX.Element;
11094
+ declare function AccordionItem({ className, ...props }: AccordionItemProps): React$1.JSX.Element;
11099
11095
  declare namespace AccordionItem {
11100
11096
  var displayName: string;
11101
11097
  }
@@ -11110,12 +11106,12 @@ type AccordionTriggerProps = React$1.ComponentProps<typeof AccordionPrimitive.Tr
11110
11106
  */
11111
11107
  chevron?: React$1.ReactNode;
11112
11108
  };
11113
- declare function AccordionTrigger({ className, children, chevron, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
11109
+ declare function AccordionTrigger({ className, children, chevron, ...props }: AccordionTriggerProps): React$1.JSX.Element;
11114
11110
  declare namespace AccordionTrigger {
11115
11111
  var displayName: string;
11116
11112
  }
11117
11113
  type AccordionContentProps = React$1.ComponentProps<typeof AccordionPrimitive.Content>;
11118
- declare function AccordionContent({ className, children, ...props }: AccordionContentProps): react_jsx_runtime.JSX.Element;
11114
+ declare function AccordionContent({ className, children, ...props }: AccordionContentProps): React$1.JSX.Element;
11119
11115
  declare namespace AccordionContent {
11120
11116
  var displayName: string;
11121
11117
  }
@@ -11159,11 +11155,11 @@ type ChartConfig = Record<string, {
11159
11155
  declare function ChartContainer({ id, className, children, config, ...props }: React$1.ComponentProps<"div"> & {
11160
11156
  children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
11161
11157
  config: ChartConfig;
11162
- }): react_jsx_runtime.JSX.Element;
11158
+ }): React$1.JSX.Element;
11163
11159
  declare const ChartStyle: ({ id, config }: {
11164
11160
  config: ChartConfig;
11165
11161
  id: string;
11166
- }) => react_jsx_runtime.JSX.Element | null;
11162
+ }) => React$1.JSX.Element | null;
11167
11163
  declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
11168
11164
  interface ChartTooltipContentProps extends React$1.ComponentProps<"div"> {
11169
11165
  active?: boolean;
@@ -11179,7 +11175,7 @@ interface ChartTooltipContentProps extends React$1.ComponentProps<"div"> {
11179
11175
  nameKey?: string;
11180
11176
  payload?: Payload<ValueType, NameType>[];
11181
11177
  }
11182
- declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: ChartTooltipContentProps): react_jsx_runtime.JSX.Element | null;
11178
+ declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: ChartTooltipContentProps): React$1.JSX.Element | null;
11183
11179
  declare const ChartLegend: typeof RechartsPrimitive.Legend;
11184
11180
  interface LegendPayloadItem$1 {
11185
11181
  color?: string;
@@ -11203,7 +11199,7 @@ interface ChartLegendContentProps$1 extends React$1.ComponentProps<"div"> {
11203
11199
  /** Vertical alignment of the legend */
11204
11200
  verticalAlign?: "bottom" | "middle" | "top";
11205
11201
  }
11206
- declare function ChartLegendContent({ activeLegend, className, enableSlider, hideIcon, nameKey, onLegendClick, payload, verticalAlign, }: ChartLegendContentProps$1): react_jsx_runtime.JSX.Element | null;
11202
+ declare function ChartLegendContent({ activeLegend, className, enableSlider, hideIcon, nameKey, onLegendClick, payload, verticalAlign, }: ChartLegendContentProps$1): React$1.JSX.Element | null;
11207
11203
 
11208
11204
  /**
11209
11205
  * Curve type for the area chart line
@@ -11376,7 +11372,7 @@ interface AreaChartProps extends Omit<ComponentPropsWithoutRef<"div">, "children
11376
11372
  * />
11377
11373
  * ```
11378
11374
  */
11379
- declare function AreaChart({ allowDecimals, ariaLabel, autoMinValue, className, config, connectNulls, customTooltip, enableLegendSlider, curveType, data, fill, fillOpacity, gradientIdPrefix, gridDashArray, intervalType, legendPosition, maxValue, minValue, onValueChange, series, showGrid, showLegend, showTooltip, showXAxis, showYAxis, startEndOnly, tickGap, tooltipCallback, tooltipIndicator, variant, xAxisLabel, xAxisKey, xAxisTickFormatter, yAxisLabel, yAxisTickFormatter, yAxisWidth, ...props }: AreaChartProps): react_jsx_runtime.JSX.Element;
11375
+ declare function AreaChart({ allowDecimals, ariaLabel, autoMinValue, className, config, connectNulls, customTooltip, enableLegendSlider, curveType, data, fill, fillOpacity, gradientIdPrefix, gridDashArray, intervalType, legendPosition, maxValue, minValue, onValueChange, series, showGrid, showLegend, showTooltip, showXAxis, showYAxis, startEndOnly, tickGap, tooltipCallback, tooltipIndicator, variant, xAxisLabel, xAxisKey, xAxisTickFormatter, yAxisLabel, yAxisTickFormatter, yAxisWidth, ...props }: AreaChartProps): React$1.JSX.Element;
11380
11376
  declare namespace AreaChart {
11381
11377
  var displayName: string;
11382
11378
  }
@@ -11403,7 +11399,7 @@ interface BannerProps$1 extends React.ComponentProps<"div">, VariantProps<typeof
11403
11399
  /** Whether the banner should be sticky during scroll @default false */
11404
11400
  sticky?: boolean;
11405
11401
  }
11406
- declare function Banner({ className, variant, position, icon, action, dismissible, onDismiss, sticky, children, role, ...props }: BannerProps$1): react_jsx_runtime.JSX.Element;
11402
+ declare function Banner({ className, variant, position, icon, action, dismissible, onDismiss, sticky, children, role, ...props }: BannerProps$1): React$1.JSX.Element;
11407
11403
 
11408
11404
  /**
11409
11405
  * Available banner variants
@@ -11554,6 +11550,10 @@ interface BarChartProps extends Omit<ComponentPropsWithoutRef<"div">, "children"
11554
11550
  showLegend?: boolean;
11555
11551
  /** Show tooltip on hover */
11556
11552
  showTooltip?: boolean;
11553
+ /** Value label rendered at the end of each bar (sign and layout aware); pass an object to format the value */
11554
+ showValueLabels?: boolean | {
11555
+ formatter?: (value: number) => string;
11556
+ };
11557
11557
  /** Show X-axis */
11558
11558
  showXAxis?: boolean;
11559
11559
  /** Show Y-axis */
@@ -11582,34 +11582,7 @@ interface BarChartProps extends Omit<ComponentPropsWithoutRef<"div">, "children"
11582
11582
  yAxisWidth?: number;
11583
11583
  }
11584
11584
 
11585
- /**
11586
- * BarChart - Data visualization component for categorical comparisons
11587
- *
11588
- * Displays quantitative values as rectangular bars. The height or width
11589
- * of bars is proportional to the values they represent. Ideal for
11590
- * comparing values between categories.
11591
- *
11592
- * @example
11593
- * ```tsx
11594
- * const data = [
11595
- * { month: "Jan", desktop: 186, mobile: 80 },
11596
- * { month: "Feb", desktop: 305, mobile: 200 },
11597
- * ]
11598
- *
11599
- * const config = {
11600
- * desktop: { label: "Desktop", color: "hsl(var(--chart-1))" },
11601
- * mobile: { label: "Mobile", color: "hsl(var(--chart-2))" },
11602
- * }
11603
- *
11604
- * <BarChart
11605
- * data={data}
11606
- * config={config}
11607
- * xAxisKey="month"
11608
- * series={["desktop", "mobile"]}
11609
- * />
11610
- * ```
11611
- */
11612
- declare function BarChart({ allowDecimals, ariaLabel, autoMinValue, barCategoryGap, barGap, className, config, customTooltip, data, enableLegendSlider, gridDashArray, intervalType, layout, legendPosition, maxValue, minValue, onValueChange, radius, series, showGrid, showLegend, showTooltip, showXAxis, showYAxis, startEndOnly, tickGap, tooltipCallback, tooltipIndicator, variant, xAxisKey, xAxisLabel, xAxisTickFormatter, yAxisLabel, yAxisTickFormatter, yAxisWidth, ...props }: BarChartProps): react_jsx_runtime.JSX.Element;
11585
+ declare function BarChart({ allowDecimals, ariaLabel, autoMinValue, barCategoryGap, barGap, className, config, customTooltip, data, enableLegendSlider, gridDashArray, intervalType, layout, legendPosition, maxValue, minValue, onValueChange, radius, series, showGrid, showLegend, showValueLabels, showTooltip, showXAxis, showYAxis, startEndOnly, tickGap, tooltipCallback, tooltipIndicator, variant, xAxisKey, xAxisLabel, xAxisTickFormatter, yAxisLabel, yAxisTickFormatter, yAxisWidth, ...props }: BarChartProps): React$1.JSX.Element;
11613
11586
  declare namespace BarChart {
11614
11587
  var displayName: string;
11615
11588
  }
@@ -11706,7 +11679,7 @@ interface BarListProps extends Omit<ComponentPropsWithoutRef<"div">, "children"
11706
11679
  * />
11707
11680
  * ```
11708
11681
  */
11709
- declare function BarList({ className, color, data, onClick, showAnimation, sortOrder, valueFormatter, ...props }: BarListProps): react_jsx_runtime.JSX.Element;
11682
+ declare function BarList({ className, color, data, onClick, showAnimation, sortOrder, valueFormatter, ...props }: BarListProps): React$1.JSX.Element;
11710
11683
  declare namespace BarList {
11711
11684
  var displayName: string;
11712
11685
  }
@@ -11727,7 +11700,7 @@ interface CalloutProps$1 extends React.ComponentProps<"div">, VariantProps<typeo
11727
11700
  /** Title of the callout */
11728
11701
  title?: string;
11729
11702
  }
11730
- declare function Callout({ children, className, icon, size, title, variant, role, ...props }: CalloutProps$1): react_jsx_runtime.JSX.Element;
11703
+ declare function Callout({ children, className, icon, size, title, variant, role, ...props }: CalloutProps$1): React$1.JSX.Element;
11731
11704
 
11732
11705
  /**
11733
11706
  * Available callout variants
@@ -11765,11 +11738,11 @@ interface CarouselProps {
11765
11738
  plugins?: CarouselPlugin;
11766
11739
  setApi?: (api: CarouselApi) => void;
11767
11740
  }
11768
- declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
11769
- declare function CarouselContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
11770
- declare function CarouselItem({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
11771
- declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
11772
- declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
11741
+ declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): React$1.JSX.Element;
11742
+ declare function CarouselContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
11743
+ declare function CarouselItem({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
11744
+ declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): React$1.JSX.Element;
11745
+ declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): React$1.JSX.Element;
11773
11746
 
11774
11747
  /**
11775
11748
  * Category bar size variant
@@ -11868,7 +11841,7 @@ interface CategoryBarProps extends Omit<ComponentPropsWithoutRef<"div">, "childr
11868
11841
  * />
11869
11842
  * ```
11870
11843
  */
11871
- declare function CategoryBar({ className, colors, data, markerValue, onClick, showAnimation, showLabels, showTooltip, size, valueFormatter, ...props }: CategoryBarProps): react_jsx_runtime.JSX.Element;
11844
+ declare function CategoryBar({ className, colors, data, markerValue, onClick, showAnimation, showLabels, showTooltip, size, valueFormatter, ...props }: CategoryBarProps): React$1.JSX.Element;
11872
11845
  declare namespace CategoryBar {
11873
11846
  var displayName: string;
11874
11847
  }
@@ -12010,7 +11983,7 @@ interface ChartCardProps extends Omit<ComponentPropsWithoutRef<"div">, "title">,
12010
11983
  * />
12011
11984
  * ```
12012
11985
  */
12013
- declare function ChartCard({ badge, chart, chartHeight, className, comparisonPeriod, data, emptyMessage, featuredIcon, footer, headerAction, isThumbnail, loading, tabs, title, valueFormatter, variant, ...props }: ChartCardProps): react_jsx_runtime.JSX.Element;
11986
+ declare function ChartCard({ badge, chart, chartHeight, className, comparisonPeriod, data, emptyMessage, featuredIcon, footer, headerAction, isThumbnail, loading, tabs, title, valueFormatter, variant, ...props }: ChartCardProps): React$1.JSX.Element;
12014
11987
  declare namespace ChartCard {
12015
11988
  var displayName: string;
12016
11989
  }
@@ -12252,7 +12225,7 @@ interface ComboChartProps extends Omit<ComponentPropsWithoutRef<"div">, "childre
12252
12225
  * />
12253
12226
  * ```
12254
12227
  */
12255
- declare function ComboChart({ barGap, barRadius, barSeries, className, config, data, enableBiaxial, enableLegendSlider, gridDashArray, intervalType, legendPosition, lineSeries, onValueChange, showGrid, showLegend, showTooltip, showXAxis, startEndOnly, tickGap, tooltipCallback, tooltipIndicator, xAxisKey, xAxisLabel, xAxisTickFormatter, ...props }: ComboChartProps): react_jsx_runtime.JSX.Element;
12228
+ declare function ComboChart({ barGap, barRadius, barSeries, className, config, data, enableBiaxial, enableLegendSlider, gridDashArray, intervalType, legendPosition, lineSeries, onValueChange, showGrid, showLegend, showTooltip, showXAxis, startEndOnly, tickGap, tooltipCallback, tooltipIndicator, xAxisKey, xAxisLabel, xAxisTickFormatter, ...props }: ComboChartProps): React$1.JSX.Element;
12256
12229
  declare namespace ComboChart {
12257
12230
  var displayName: string;
12258
12231
  }
@@ -12415,23 +12388,23 @@ interface DashboardCardFooterProps extends React.ComponentProps<"div"> {
12415
12388
  /**
12416
12389
  * DashboardCardHeader - Header section with title and optional badge/icon
12417
12390
  */
12418
- declare function DashboardCardHeader({ className, children, ...props }: DashboardCardHeaderProps): react_jsx_runtime.JSX.Element;
12391
+ declare function DashboardCardHeader({ className, children, ...props }: DashboardCardHeaderProps): React$1.JSX.Element;
12419
12392
  /**
12420
12393
  * DashboardCardTitle - Title text for the card
12421
12394
  */
12422
- declare function DashboardCardTitle({ className, children, ...props }: DashboardCardTitleProps): react_jsx_runtime.JSX.Element;
12395
+ declare function DashboardCardTitle({ className, children, ...props }: DashboardCardTitleProps): React$1.JSX.Element;
12423
12396
  /**
12424
12397
  * DashboardCardValue - Main value display area
12425
12398
  */
12426
- declare function DashboardCardValue({ className, children, ...props }: DashboardCardValueProps): react_jsx_runtime.JSX.Element;
12399
+ declare function DashboardCardValue({ className, children, ...props }: DashboardCardValueProps): React$1.JSX.Element;
12427
12400
  /**
12428
12401
  * DashboardCardContent - Content area for charts, progress bars, etc.
12429
12402
  */
12430
- declare function DashboardCardContent({ className, children, ...props }: DashboardCardContentProps): react_jsx_runtime.JSX.Element;
12403
+ declare function DashboardCardContent({ className, children, ...props }: DashboardCardContentProps): React$1.JSX.Element;
12431
12404
  /**
12432
12405
  * DashboardCardFooter - Footer with optional CTA
12433
12406
  */
12434
- declare function DashboardCardFooter({ className, children, ...props }: DashboardCardFooterProps): react_jsx_runtime.JSX.Element;
12407
+ declare function DashboardCardFooter({ className, children, ...props }: DashboardCardFooterProps): React$1.JSX.Element;
12435
12408
  /**
12436
12409
  * DashboardCard - Card wrapper for dashboard widgets
12437
12410
  *
@@ -12465,7 +12438,7 @@ declare function DashboardCardFooter({ className, children, ...props }: Dashboar
12465
12438
  * </DashboardCard>
12466
12439
  * ```
12467
12440
  */
12468
- declare function DashboardCard({ title, badge, value, valueDescription, icon, ctaText, ctaLink, ctaDescription, loading, variant, size, className, children, ...props }: DashboardCardProps): react_jsx_runtime.JSX.Element;
12441
+ declare function DashboardCard({ title, badge, value, valueDescription, icon, ctaText, ctaLink, ctaDescription, loading, variant, size, className, children, ...props }: DashboardCardProps): React$1.JSX.Element;
12469
12442
  declare namespace DashboardCard {
12470
12443
  var Header: typeof DashboardCardHeader;
12471
12444
  var Title: typeof DashboardCardTitle;
@@ -13302,7 +13275,7 @@ interface DataTableColumnMeta {
13302
13275
  * }
13303
13276
  * ```
13304
13277
  */
13305
- declare function DataTable<TData>(props: DataTableProps<TData>): react_jsx_runtime.JSX.Element;
13278
+ declare function DataTable<TData>(props: DataTableProps<TData>): React$1.JSX.Element;
13306
13279
 
13307
13280
  /**
13308
13281
  * Convert table data to CSV string
@@ -13347,25 +13320,25 @@ interface DataTableProgressCellProps {
13347
13320
  max?: number;
13348
13321
  value: number;
13349
13322
  }
13350
- declare function DataTableProgressCell({ className, max, value, }: DataTableProgressCellProps): react_jsx_runtime.JSX.Element;
13323
+ declare function DataTableProgressCell({ className, max, value, }: DataTableProgressCellProps): React$1.JSX.Element;
13351
13324
  interface DataTableRatingCellProps {
13352
13325
  className?: string;
13353
13326
  max?: number;
13354
13327
  value: number;
13355
13328
  }
13356
- declare function DataTableRatingCell({ className, max, value, }: DataTableRatingCellProps): react_jsx_runtime.JSX.Element;
13329
+ declare function DataTableRatingCell({ className, max, value, }: DataTableRatingCellProps): React$1.JSX.Element;
13357
13330
  interface DataTableCurrencyCellProps {
13358
13331
  className?: string;
13359
13332
  currency?: string;
13360
13333
  locale?: string;
13361
13334
  value: number;
13362
13335
  }
13363
- declare function DataTableCurrencyCell({ className, currency, locale, value, }: DataTableCurrencyCellProps): react_jsx_runtime.JSX.Element;
13336
+ declare function DataTableCurrencyCell({ className, currency, locale, value, }: DataTableCurrencyCellProps): React$1.JSX.Element;
13364
13337
  interface DataTableBooleanCellProps {
13365
13338
  className?: string;
13366
13339
  value: boolean;
13367
13340
  }
13368
- declare function DataTableBooleanCell({ className, value, }: DataTableBooleanCellProps): react_jsx_runtime.JSX.Element;
13341
+ declare function DataTableBooleanCell({ className, value, }: DataTableBooleanCellProps): React$1.JSX.Element;
13369
13342
  interface DataTableDateCellProps {
13370
13343
  className?: string;
13371
13344
  format?: "date" | "datetime" | "relative" | "time";
@@ -13373,7 +13346,7 @@ interface DataTableDateCellProps {
13373
13346
  now?: number;
13374
13347
  value: Date | string;
13375
13348
  }
13376
- declare function DataTableDateCell({ className, format, now, value, }: DataTableDateCellProps): react_jsx_runtime.JSX.Element;
13349
+ declare function DataTableDateCell({ className, format, now, value, }: DataTableDateCellProps): React$1.JSX.Element;
13377
13350
 
13378
13351
  /**
13379
13352
  * Size variants for delta bar
@@ -13447,7 +13420,7 @@ interface DeltaBarProps extends Omit<ComponentPropsWithoutRef<"div">, "children"
13447
13420
  * />
13448
13421
  * ```
13449
13422
  */
13450
- declare function DeltaBar({ className, decreaseColor, increaseColor, isIncreasePositive, showAnimation, size, tooltip, value, ...props }: DeltaBarProps): react_jsx_runtime.JSX.Element;
13423
+ declare function DeltaBar({ className, decreaseColor, increaseColor, isIncreasePositive, showAnimation, size, tooltip, value, ...props }: DeltaBarProps): React$1.JSX.Element;
13451
13424
  declare namespace DeltaBar {
13452
13425
  var displayName: string;
13453
13426
  }
@@ -13463,12 +13436,12 @@ declare const emptyMediaVariants: (props?: ({
13463
13436
  variant?: "default" | "icon" | null | undefined;
13464
13437
  } & class_variance_authority_types.ClassProp) | undefined) => string;
13465
13438
 
13466
- declare function Empty({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
13467
- declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
13468
- declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime.JSX.Element;
13469
- declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
13470
- declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
13471
- declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
13439
+ declare function Empty({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
13440
+ declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
13441
+ declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): React$1.JSX.Element;
13442
+ declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
13443
+ declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): React$1.JSX.Element;
13444
+ declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
13472
13445
 
13473
13446
  /**
13474
13447
  * FeatureItem root layout. The leading visual (FeaturedIcon / Badge) is stacked
@@ -13519,7 +13492,7 @@ type FeatureItemVariant = NonNullable<VariantProps<typeof featureItemVariants>["
13519
13492
  *
13520
13493
  * All spacing, color and type come from `--feature-item-*` design tokens.
13521
13494
  */
13522
- declare function FeatureItem({ badge, className, description, icon, iconTone, title, variant, ...props }: FeatureItemProps): react_jsx_runtime.JSX.Element;
13495
+ declare function FeatureItem({ badge, className, description, icon, iconTone, title, variant, ...props }: FeatureItemProps): React$1.JSX.Element;
13523
13496
 
13524
13497
  declare const feedVariants: (props?: ({
13525
13498
  variant?: "default" | "compact" | "highlighted" | null | undefined;
@@ -13575,13 +13548,13 @@ interface FeedItemProps$1 extends React.ComponentProps<"article">, VariantProps<
13575
13548
  /**
13576
13549
  * FeedItem component renders a single feed entry
13577
13550
  */
13578
- declare function FeedItemComponent({ className, item, size, isActive, isHighlighted, isLast, showDivider, children, ...props }: FeedItemProps$1): react_jsx_runtime.JSX.Element;
13551
+ declare function FeedItemComponent({ className, item, size, isActive, isHighlighted, isLast, showDivider, children, ...props }: FeedItemProps$1): React$1.JSX.Element;
13579
13552
  /**
13580
13553
  * Feed loading skeleton component
13581
13554
  */
13582
13555
  declare function FeedSkeleton({ count }: {
13583
13556
  count?: number;
13584
- }): react_jsx_runtime.JSX.Element;
13557
+ }): React$1.JSX.Element;
13585
13558
  /**
13586
13559
  * Feed component displays a series of events or activities in chronological order.
13587
13560
  *
@@ -13593,7 +13566,7 @@ declare function FeedSkeleton({ count }: {
13593
13566
  * <Feed items={items} />
13594
13567
  * ```
13595
13568
  */
13596
- declare function Feed({ className, variant, size, items, reverse, divider, loading, children, ...props }: FeedProps$1): react_jsx_runtime.JSX.Element;
13569
+ declare function Feed({ className, variant, size, items, reverse, divider, loading, children, ...props }: FeedProps$1): React$1.JSX.Element;
13597
13570
 
13598
13571
  /**
13599
13572
  * Available feed variants
@@ -13834,7 +13807,7 @@ interface FunnelChartProps extends Omit<ComponentPropsWithoutRef<"div">, "childr
13834
13807
  * <FunnelChart data={data} config={config} />
13835
13808
  * ```
13836
13809
  */
13837
- declare function FunnelChart({ animationDuration, className, config, data, enableLegendSlider, isReversed, labelPosition, legendPosition, nameKey, onClick, showLabels, showLegend, showTooltip, tooltipCallback, tooltipIndicator, valueFormatter, valueKey, ...props }: FunnelChartProps): react_jsx_runtime.JSX.Element;
13810
+ declare function FunnelChart({ animationDuration, className, config, data, enableLegendSlider, isReversed, labelPosition, legendPosition, nameKey, onClick, showLabels, showLegend, showTooltip, tooltipCallback, tooltipIndicator, valueFormatter, valueKey, ...props }: FunnelChartProps): React$1.JSX.Element;
13838
13811
  declare namespace FunnelChart {
13839
13812
  var displayName: string;
13840
13813
  }
@@ -13909,7 +13882,7 @@ declare const gaugeChartVariants: (props?: ({
13909
13882
  * ]}
13910
13883
  * />
13911
13884
  */
13912
- declare function GaugeChart({ animated, className, label, max, min, showLabels, showValue, size, unit, value, variant, zones, }: GaugeChartProps): react_jsx_runtime.JSX.Element;
13885
+ declare function GaugeChart({ animated, className, label, max, min, showLabels, showValue, size, unit, value, variant, zones, }: GaugeChartProps): React$1.JSX.Element;
13913
13886
 
13914
13887
  /**
13915
13888
  * Single data point for the heatmap
@@ -14022,7 +13995,7 @@ interface HeatmapCellProps {
14022
13995
  declare const heatmapVariants: (props?: ({
14023
13996
  variant?: "grid" | "calendar" | "triangular" | null | undefined;
14024
13997
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14025
- declare function HeatmapCell({ color, data, isHighlighted, isSelected, onClick, renderTooltip, showTooltip, size, }: HeatmapCellProps): react_jsx_runtime.JSX.Element;
13998
+ declare function HeatmapCell({ color, data, isHighlighted, isSelected, onClick, renderTooltip, showTooltip, size, }: HeatmapCellProps): React$1.JSX.Element;
14026
13999
  interface HeatmapLegendProps {
14027
14000
  colorScale: "diverging" | "sequential";
14028
14001
  max: number;
@@ -14032,12 +14005,12 @@ interface HeatmapLegendProps {
14032
14005
  minColor: string;
14033
14006
  position: "bottom" | "left" | "right" | "top";
14034
14007
  }
14035
- declare function HeatmapLegend({ colorScale, max, maxColor, midColor, min, minColor, position, }: HeatmapLegendProps): react_jsx_runtime.JSX.Element;
14036
- declare function Heatmap({ ariaLabel, cellGap, cellSize, className, colorScale, data, highlightedRow, legendPosition, maxColor, midColor, minColor, onCellClick, onRowHover, renderTooltip, selectedCell, showLegend, showTooltip, valueKey, variant, xKey, xLabels, yKey, yLabels, ...props }: HeatmapProps): react_jsx_runtime.JSX.Element;
14008
+ declare function HeatmapLegend({ colorScale, max, maxColor, midColor, min, minColor, position, }: HeatmapLegendProps): React$1.JSX.Element;
14009
+ declare function Heatmap({ ariaLabel, cellGap, cellSize, className, colorScale, data, highlightedRow, legendPosition, maxColor, midColor, minColor, onCellClick, onRowHover, renderTooltip, selectedCell, showLegend, showTooltip, valueKey, variant, xKey, xLabels, yKey, yLabels, ...props }: HeatmapProps): React$1.JSX.Element;
14037
14010
 
14038
- declare function HoverCard({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
14039
- declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
14040
- declare function HoverCardContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime.JSX.Element;
14011
+ declare function HoverCard({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): React$1.JSX.Element;
14012
+ declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): React$1.JSX.Element;
14013
+ declare function HoverCardContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Content>): React$1.JSX.Element;
14041
14014
 
14042
14015
  /**
14043
14016
  * Individual image item in the gallery
@@ -14155,7 +14128,7 @@ interface ImageGalleryItemProps extends React$1.ComponentProps<"button"> {
14155
14128
  /**
14156
14129
  * Individual gallery item component
14157
14130
  */
14158
- declare function ImageGalleryItem({ aspectRatio, className, interactive, enableSelection, image, index: _index, isSelected, onClick, onImageError, onImageLoad, ...props }: ImageGalleryItemProps): react_jsx_runtime.JSX.Element;
14131
+ declare function ImageGalleryItem({ aspectRatio, className, interactive, enableSelection, image, index: _index, isSelected, onClick, onImageError, onImageLoad, ...props }: ImageGalleryItemProps): React$1.JSX.Element;
14159
14132
  /**
14160
14133
  * ImageGallery - A component for displaying collections of images in various layouts
14161
14134
  *
@@ -14176,10 +14149,10 @@ declare function ImageGalleryItem({ aspectRatio, className, interactive, enableS
14176
14149
  * />
14177
14150
  * ```
14178
14151
  */
14179
- declare function ImageGallery({ aspectRatio, className, columns, enableLightbox, enableSelection, gap, images, layout, loading, maxSelection, onImageClick, onImageError, onImageLoad, onLoadMore, onSelectionChange, ref, selectedIds: controlledSelectedIds, ...props }: ImageGalleryProps): react_jsx_runtime.JSX.Element;
14152
+ declare function ImageGallery({ aspectRatio, className, columns, enableLightbox, enableSelection, gap, images, layout, loading, maxSelection, onImageClick, onImageError, onImageLoad, onLoadMore, onSelectionChange, ref, selectedIds: controlledSelectedIds, ...props }: ImageGalleryProps): React$1.JSX.Element;
14180
14153
 
14181
- declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
14182
- declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Divider>): react_jsx_runtime.JSX.Element;
14154
+ declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
14155
+ declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Divider>): React$1.JSX.Element;
14183
14156
  declare const itemVariants: (props?: ({
14184
14157
  variant?: "default" | "muted" | "outline" | "active" | null | undefined;
14185
14158
  size?: "sm" | "lg" | "default" | null | undefined;
@@ -14204,17 +14177,17 @@ interface ItemProps extends Omit<React$1.ComponentProps<"div">, "onClick" | "onF
14204
14177
  onFocus?: (event: React$1.FocusEvent<HTMLButtonElement | HTMLDivElement>, payload: ItemEventPayload) => void;
14205
14178
  onKeyDown?: (event: React$1.KeyboardEvent<HTMLButtonElement | HTMLDivElement>, payload: ItemEventPayload) => void;
14206
14179
  }
14207
- declare function Item({ className, variant, active, interactive, size, asChild, "data-id": dataId, onClick, onFocus, onKeyDown, ...props }: ItemProps): react_jsx_runtime.JSX.Element;
14180
+ declare function Item({ className, variant, active, interactive, size, asChild, "data-id": dataId, onClick, onFocus, onKeyDown, ...props }: ItemProps): React$1.JSX.Element;
14208
14181
  declare const itemMediaVariants: (props?: ({
14209
14182
  variant?: "image" | "default" | "icon" | null | undefined;
14210
14183
  } & class_variance_authority_types.ClassProp) | undefined) => string;
14211
- declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime.JSX.Element;
14212
- declare function ItemContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
14213
- declare function ItemTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
14214
- declare function ItemDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
14215
- declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
14216
- declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
14217
- declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
14184
+ declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): React$1.JSX.Element;
14185
+ declare function ItemContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
14186
+ declare function ItemTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
14187
+ declare function ItemDescription({ className, ...props }: React$1.ComponentProps<"p">): React$1.JSX.Element;
14188
+ declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
14189
+ declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
14190
+ declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
14218
14191
 
14219
14192
  type KPICardVariant = "default" | "ghost" | "highlight";
14220
14193
  type KPICardSize = "lg" | "md" | "sm";
@@ -14280,7 +14253,7 @@ interface KPICardGroupProps extends HTMLAttributes<HTMLDivElement> {
14280
14253
  * />
14281
14254
  * ```
14282
14255
  */
14283
- declare function KPICard({ title, value, delta, deltaLabel, trend, sparkline, icon, featuredIcon, dropdownIcon, helpText, progressBar, swap, showBadge, action, variant, size, loading, className, ...props }: KPICardProps): react_jsx_runtime.JSX.Element;
14256
+ declare function KPICard({ title, value, delta, deltaLabel, trend, sparkline, icon, featuredIcon, dropdownIcon, helpText, progressBar, swap, showBadge, action, variant, size, loading, className, ...props }: KPICardProps): React$1.JSX.Element;
14284
14257
  /**
14285
14258
  * KPICardGroup — Multiple KPIs composition (Figma Type=Multiple KPIs)
14286
14259
  *
@@ -14295,7 +14268,7 @@ declare function KPICard({ title, value, delta, deltaLabel, trend, sparkline, ic
14295
14268
  * </KPICardGroup>
14296
14269
  * ```
14297
14270
  */
14298
- declare function KPICardGroup({ children, orientation, gap, className, ...props }: KPICardGroupProps): react_jsx_runtime.JSX.Element;
14271
+ declare function KPICardGroup({ children, orientation, gap, className, ...props }: KPICardGroupProps): React$1.JSX.Element;
14299
14272
 
14300
14273
  /**
14301
14274
  * Represents an individual image in the lightbox
@@ -14368,7 +14341,7 @@ interface LightboxProps {
14368
14341
  * />
14369
14342
  * ```
14370
14343
  */
14371
- declare function Lightbox({ className, enableDownload, enableZoom, images, initialIndex, loop, onClose, onIndexChange, onOpenChange, open, showCaption, showCounter, showThumbnails, }: LightboxProps): react_jsx_runtime.JSX.Element | null;
14344
+ declare function Lightbox({ className, enableDownload, enableZoom, images, initialIndex, loop, onClose, onIndexChange, onOpenChange, open, showCaption, showCounter, showThumbnails, }: LightboxProps): React$1.JSX.Element | null;
14372
14345
 
14373
14346
  /**
14374
14347
  * Curve type for the line chart
@@ -14434,6 +14407,8 @@ interface LineChartSeriesConfig {
14434
14407
  fill?: string;
14435
14408
  r?: number;
14436
14409
  };
14410
+ /** Per-point dot colors, cycled by data index (Figma line com dots coloridos) */
14411
+ dotColors?: string[];
14437
14412
  /** Optional custom stroke color (defaults to config color) */
14438
14413
  stroke?: string;
14439
14414
  /** Stroke dash array for dashed lines (e.g., "5 5") */
@@ -14495,6 +14470,10 @@ interface LineChartProps extends Omit<ComponentPropsWithoutRef<"div">, "children
14495
14470
  showGrid?: boolean;
14496
14471
  /** Show legend */
14497
14472
  showLegend?: boolean;
14473
+ /** Value label rendered above each point; pass an object to format the value */
14474
+ showPointLabels?: boolean | {
14475
+ formatter?: (value: number) => string;
14476
+ };
14498
14477
  /** Show tooltip on hover */
14499
14478
  showTooltip?: boolean;
14500
14479
  /** Show X-axis */
@@ -14554,7 +14533,7 @@ interface LineChartProps extends Omit<ComponentPropsWithoutRef<"div">, "children
14554
14533
  * />
14555
14534
  * ```
14556
14535
  */
14557
- declare function LineChart({ activeDot, allowDecimals, ariaLabel, autoMinValue, className, config, connectNulls, customTooltip, curveType, data, dot, enableLegendSlider, gridDashArray, intervalType, legendPosition, maxValue, minValue, onValueChange, series, showGrid, showLegend, showTooltip, showXAxis, showYAxis, startEndOnly, strokeWidth, tickGap, tooltipCallback, tooltipIndicator, variant, xAxisLabel, xAxisKey, xAxisTickFormatter, yAxisLabel, yAxisTickFormatter, yAxisWidth, ...props }: LineChartProps): react_jsx_runtime.JSX.Element;
14536
+ declare function LineChart({ activeDot, allowDecimals, ariaLabel, autoMinValue, className, config, connectNulls, customTooltip, curveType, data, dot, enableLegendSlider, gridDashArray, intervalType, legendPosition, maxValue, minValue, onValueChange, series, showGrid, showLegend, showPointLabels, showTooltip, showXAxis, showYAxis, startEndOnly, strokeWidth, tickGap, tooltipCallback, tooltipIndicator, variant, xAxisLabel, xAxisKey, xAxisTickFormatter, yAxisLabel, yAxisTickFormatter, yAxisWidth, ...props }: LineChartProps): React$1.JSX.Element;
14558
14537
  declare namespace LineChart {
14559
14538
  var displayName: string;
14560
14539
  }
@@ -14576,7 +14555,7 @@ type ListProps = React$1.ComponentProps<"ul"> & VariantProps<typeof listVariants
14576
14555
  onSelect?: (item: ListItem) => void;
14577
14556
  selectable?: boolean;
14578
14557
  };
14579
- declare function List({ className, variant, items, selectable, multiple, loading, onSelect, children, ref, ...props }: ListProps): react_jsx_runtime.JSX.Element;
14558
+ declare function List({ className, variant, items, selectable, multiple, loading, onSelect, children, ref, ...props }: ListProps): React$1.JSX.Element;
14580
14559
  interface ListItemProps extends Omit<React$1.ComponentProps<"li">, "disabled"> {
14581
14560
  disabled?: boolean;
14582
14561
  selectable?: boolean;
@@ -14593,9 +14572,9 @@ interface ListItem {
14593
14572
  label: string;
14594
14573
  onClick?: () => void;
14595
14574
  }
14596
- declare function ListItem({ className, variant, size, selectable, selected, disabled, ref, ...restProps }: ListItemProps): react_jsx_runtime.JSX.Element;
14597
- declare function ListItemContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
14598
- declare function ListItemActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
14575
+ declare function ListItem({ className, variant, size, selectable, selected, disabled, ref, ...restProps }: ListItemProps): React$1.JSX.Element;
14576
+ declare function ListItemContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
14577
+ declare function ListItemActions({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
14599
14578
 
14600
14579
  /**
14601
14580
  * Size variants for MarkerBar
@@ -14682,7 +14661,7 @@ interface MarkerBarProps extends HTMLAttributes<HTMLDivElement> {
14682
14661
  * />
14683
14662
  * ```
14684
14663
  */
14685
- declare function MarkerBar({ className, color, markerTooltip, maxValue, minValue, rangeColor, rangeTooltip, showAnimation, size, value, ...props }: MarkerBarProps): react_jsx_runtime.JSX.Element;
14664
+ declare function MarkerBar({ className, color, markerTooltip, maxValue, minValue, rangeColor, rangeTooltip, showAnimation, size, value, ...props }: MarkerBarProps): React$1.JSX.Element;
14686
14665
  declare namespace MarkerBar {
14687
14666
  var displayName: string;
14688
14667
  }
@@ -14852,7 +14831,7 @@ interface PieChartProps extends Omit<ComponentPropsWithoutRef<"div">, "children"
14852
14831
  * />
14853
14832
  * ```
14854
14833
  */
14855
- declare function PieChart({ activeIndex, activeShape, animationDuration, centerLabel, className, config, cornerRadius, customTooltip, data, dataKey, enableLegendSlider, endAngle: endAngleProp, innerRadius: innerRadiusProp, label, nameKey, onClick, onMouseEnter, onMouseLeave, outerRadius: outerRadiusProp, paddingAngle, showLegend, showTooltip, startAngle: startAngleProp, tooltipCallback, tooltipIndicator, variant, ...props }: PieChartProps): react_jsx_runtime.JSX.Element;
14834
+ declare function PieChart({ activeIndex, activeShape, animationDuration, centerLabel, className, config, cornerRadius, customTooltip, data, dataKey, enableLegendSlider, endAngle: endAngleProp, innerRadius: innerRadiusProp, label, nameKey, onClick, onMouseEnter, onMouseLeave, outerRadius: outerRadiusProp, paddingAngle, showLegend, showTooltip, startAngle: startAngleProp, tooltipCallback, tooltipIndicator, variant, ...props }: PieChartProps): React$1.JSX.Element;
14856
14835
  declare namespace PieChart {
14857
14836
  var displayName: string;
14858
14837
  }
@@ -14891,7 +14870,7 @@ interface RadarChartProps extends Omit<ComponentPropsWithoutRef<"div">, "data">
14891
14870
  showGrid?: boolean;
14892
14871
  }
14893
14872
 
14894
- declare function RadarChart({ className, config, data, dataKeys, angleKey, showGrid, showDots, fillOpacity, ...props }: RadarChartProps): react_jsx_runtime.JSX.Element;
14873
+ declare function RadarChart({ className, config, data, dataKeys, angleKey, showGrid, showDots, fillOpacity, ...props }: RadarChartProps): React$1.JSX.Element;
14895
14874
 
14896
14875
  interface RadialChartProps extends Omit<ComponentPropsWithoutRef<"div">, "data"> {
14897
14876
  /**
@@ -14933,7 +14912,7 @@ interface RadialChartProps extends Omit<ComponentPropsWithoutRef<"div">, "data">
14933
14912
  startAngle?: number;
14934
14913
  }
14935
14914
 
14936
- declare function RadialChart({ className, config, data, dataKey, innerRadius, outerRadius, startAngle, endAngle, showBackground, ...props }: RadialChartProps): react_jsx_runtime.JSX.Element;
14915
+ declare function RadialChart({ className, config, data, dataKey, innerRadius, outerRadius, startAngle, endAngle, showBackground, ...props }: RadialChartProps): React$1.JSX.Element;
14937
14916
 
14938
14917
  /**
14939
14918
  * Shape types for scatter points
@@ -15189,7 +15168,7 @@ interface ScatterChartProps extends Omit<ComponentPropsWithoutRef<"div">, "child
15189
15168
  * />
15190
15169
  * ```
15191
15170
  */
15192
- declare function ScatterChart({ autoMinValue, className, config, enableLegendSlider, gridDashArray, intervalType, legendPosition, maxXValue, maxYValue, minXValue, minYValue, onClick, rotateLabelX, series, shape, showGrid, showLegend, showOpacity, showTooltip, showXAxis, showYAxis, size, sizeRange, startEndOnly, tickGap, tooltipCallback, tooltipIndicator, valueFormatter, xAxisKey, xAxisLabel, xAxisTickFormatter, yAxisKey, yAxisLabel, yAxisTickFormatter, yAxisWidth, zAxisKey, ...props }: ScatterChartProps): react_jsx_runtime.JSX.Element;
15171
+ declare function ScatterChart({ autoMinValue, className, config, enableLegendSlider, gridDashArray, intervalType, legendPosition, maxXValue, maxYValue, minXValue, minYValue, onClick, rotateLabelX, series, shape, showGrid, showLegend, showOpacity, showTooltip, showXAxis, showYAxis, size, sizeRange, startEndOnly, tickGap, tooltipCallback, tooltipIndicator, valueFormatter, xAxisKey, xAxisLabel, xAxisTickFormatter, yAxisKey, yAxisLabel, yAxisTickFormatter, yAxisWidth, zAxisKey, ...props }: ScatterChartProps): React$1.JSX.Element;
15193
15172
  declare namespace ScatterChart {
15194
15173
  var displayName: string;
15195
15174
  }
@@ -15276,7 +15255,7 @@ interface SingleStatProps extends Omit<HTMLAttributes<HTMLDivElement>, "children
15276
15255
  * />
15277
15256
  * ```
15278
15257
  */
15279
- declare function SingleStat({ value, label, variant, size, prefix, suffix, animated, animationDuration, loading, className, ...props }: SingleStatProps): react_jsx_runtime.JSX.Element;
15258
+ declare function SingleStat({ value, label, variant, size, prefix, suffix, animated, animationDuration, loading, className, ...props }: SingleStatProps): React$1.JSX.Element;
15280
15259
 
15281
15260
  /**
15282
15261
  * Sparkline size options
@@ -15434,7 +15413,7 @@ interface SparklineProps extends Omit<React$1.SVGProps<SVGSVGElement>, "ref"> {
15434
15413
  * />
15435
15414
  * ```
15436
15415
  */
15437
- declare function Sparkline({ autoMinValue, categories, className, color, colors, connectNulls, data, fill, height: heightProp, maxValue, minValue, showDots, showEndDot, showTrend, size, stack, strokeWidth, variant, width: widthProp, ...props }: SparklineProps): react_jsx_runtime.JSX.Element | null;
15416
+ declare function Sparkline({ autoMinValue, categories, className, color, colors, connectNulls, data, fill, height: heightProp, maxValue, minValue, showDots, showEndDot, showTrend, size, stack, strokeWidth, variant, width: widthProp, ...props }: SparklineProps): React$1.JSX.Element | null;
15438
15417
  declare namespace Sparkline {
15439
15418
  var displayName: string;
15440
15419
  }
@@ -15487,20 +15466,20 @@ type TableHeadVariantProps = VariantProps<typeof tableHeadVariants>;
15487
15466
  type TableCellVariantProps = VariantProps<typeof tableCellVariants>;
15488
15467
 
15489
15468
  type TableProps = React$1.ComponentProps<"table"> & TableContainerVariantProps & TableVariantProps;
15490
- declare function Table({ className, ref, bordered, density, ...props }: TableProps): react_jsx_runtime.JSX.Element;
15491
- declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): react_jsx_runtime.JSX.Element;
15492
- declare function TableBody({ className, ...props }: React$1.ComponentProps<"tbody">): react_jsx_runtime.JSX.Element;
15493
- declare function TableFooter({ className, ...props }: React$1.ComponentProps<"tfoot">): react_jsx_runtime.JSX.Element;
15469
+ declare function Table({ className, ref, bordered, density, ...props }: TableProps): React$1.JSX.Element;
15470
+ declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): React$1.JSX.Element;
15471
+ declare function TableBody({ className, ...props }: React$1.ComponentProps<"tbody">): React$1.JSX.Element;
15472
+ declare function TableFooter({ className, ...props }: React$1.ComponentProps<"tfoot">): React$1.JSX.Element;
15494
15473
  type TableRowProps = React$1.ComponentProps<"tr"> & TableRowVariantProps;
15495
- declare function TableRow({ className, hoverable, selected, striped, ...props }: TableRowProps): react_jsx_runtime.JSX.Element;
15474
+ declare function TableRow({ className, hoverable, selected, striped, ...props }: TableRowProps): React$1.JSX.Element;
15496
15475
  type TableHeadProps = React$1.ComponentProps<"th"> & TableHeadVariantProps & {
15497
15476
  /** Drives the `aria-sort` attribute when the column is sorted. */
15498
15477
  sortDirection?: TableSortDirection;
15499
15478
  };
15500
- declare function TableHead({ className, scope, sortable, sticky, sortDirection, ...props }: TableHeadProps): react_jsx_runtime.JSX.Element;
15479
+ declare function TableHead({ className, scope, sortable, sticky, sortDirection, ...props }: TableHeadProps): React$1.JSX.Element;
15501
15480
  type TableCellProps = Omit<React$1.ComponentProps<"td">, "align"> & TableCellVariantProps;
15502
- declare function TableCell({ className, align, ...props }: TableCellProps): react_jsx_runtime.JSX.Element;
15503
- declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
15481
+ declare function TableCell({ className, align, ...props }: TableCellProps): React$1.JSX.Element;
15482
+ declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): React$1.JSX.Element;
15504
15483
 
15505
15484
  /**
15506
15485
  * Timeline container variants
@@ -15583,7 +15562,7 @@ declare function TimelineMarker({ icon, isAnimated, size, status, }: {
15583
15562
  isAnimated?: boolean;
15584
15563
  size?: "default" | "lg" | "sm";
15585
15564
  status?: "complete" | "current" | "error" | "pending";
15586
- }): react_jsx_runtime.JSX.Element;
15565
+ }): React$1.JSX.Element;
15587
15566
  /**
15588
15567
  * TimelineConnector component renders the line between items
15589
15568
  */
@@ -15591,7 +15570,7 @@ declare function TimelineConnector({ size, status, variant, }: {
15591
15570
  size?: "default" | "lg" | "sm";
15592
15571
  status?: "complete" | "current" | "error" | "pending";
15593
15572
  variant?: "compact" | "default" | "detailed" | "horizontal";
15594
- }): react_jsx_runtime.JSX.Element;
15573
+ }): React$1.JSX.Element;
15595
15574
  /**
15596
15575
  * TimelineContent component renders the item's text content
15597
15576
  */
@@ -15599,11 +15578,11 @@ declare function TimelineContent({ children, className, size, }: {
15599
15578
  children: ReactNode;
15600
15579
  className?: string;
15601
15580
  size?: "default" | "lg" | "sm";
15602
- }): react_jsx_runtime.JSX.Element;
15581
+ }): React$1.JSX.Element;
15603
15582
  /**
15604
15583
  * TimelineItemComponent renders a single timeline entry
15605
15584
  */
15606
- declare function TimelineItemComponent({ children, className, isActive, isComplete, isLast, item, showConnector, size, variant, ...props }: TimelineItemProps): react_jsx_runtime.JSX.Element;
15585
+ declare function TimelineItemComponent({ children, className, isActive, isComplete, isLast, item, showConnector, size, variant, ...props }: TimelineItemProps): React$1.JSX.Element;
15607
15586
  /**
15608
15587
  * Timeline component displays a sequence of events in chronological order.
15609
15588
  *
@@ -15617,7 +15596,7 @@ declare function TimelineItemComponent({ children, className, isActive, isComple
15617
15596
  * <Timeline items={items} />
15618
15597
  * ```
15619
15598
  */
15620
- declare function Timeline({ "aria-label": ariaLabel, children, className, completed, connector, items, size, variant, activeIndex, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
15599
+ declare function Timeline({ "aria-label": ariaLabel, children, className, completed, connector, items, size, variant, activeIndex, ...props }: TimelineProps): React$1.JSX.Element;
15621
15600
 
15622
15601
  /**
15623
15602
  * Individual tracker block data
@@ -15687,7 +15666,7 @@ interface TrackerProps extends Omit<ComponentPropsWithoutRef<"div">, "children"
15687
15666
  * />
15688
15667
  * ```
15689
15668
  */
15690
- declare function Tracker({ className, data, defaultColor, gap, onClick, ...props }: TrackerProps): react_jsx_runtime.JSX.Element;
15669
+ declare function Tracker({ className, data, defaultColor, gap, onClick, ...props }: TrackerProps): React$1.JSX.Element;
15691
15670
  declare namespace Tracker {
15692
15671
  var displayName: string;
15693
15672
  }
@@ -15776,7 +15755,7 @@ interface VirtualTableProps<TData> {
15776
15755
  * }
15777
15756
  * ```
15778
15757
  */
15779
- declare function VirtualTable<TData>({ data, columns, rowHeight, overscan, estimateSize, containerHeight, enableRowSelection, onRowClick, getRowId, loading, loadingComponent, emptyState, className, rowSelection: controlledRowSelection, onRowSelectionChange, onSelectionChange, rowClassName, stickyHeader, }: VirtualTableProps<TData>): react_jsx_runtime.JSX.Element;
15758
+ declare function VirtualTable<TData>({ data, columns, rowHeight, overscan, estimateSize, containerHeight, enableRowSelection, onRowClick, getRowId, loading, loadingComponent, emptyState, className, rowSelection: controlledRowSelection, onRowSelectionChange, onSelectionChange, rowClassName, stickyHeader, }: VirtualTableProps<TData>): React$1.JSX.Element;
15780
15759
 
15781
15760
  /**
15782
15761
  * Alert variant styles using CVA
@@ -15817,23 +15796,23 @@ interface AlertDescriptionProps extends ComponentPropsWithoutRef<"div"> {
15817
15796
  children?: ReactNode;
15818
15797
  }
15819
15798
 
15820
- declare function Alert({ className, variant, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
15821
- declare function AlertTitle({ className, ...props }: AlertTitleProps): react_jsx_runtime.JSX.Element;
15822
- declare function AlertDescription({ className, ...props }: AlertDescriptionProps): react_jsx_runtime.JSX.Element;
15799
+ declare function Alert({ className, variant, ...props }: AlertProps): React$1.JSX.Element;
15800
+ declare function AlertTitle({ className, ...props }: AlertTitleProps): React$1.JSX.Element;
15801
+ declare function AlertDescription({ className, ...props }: AlertDescriptionProps): React$1.JSX.Element;
15823
15802
 
15824
- declare function AlertDialog({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
15825
- declare function AlertDialogTrigger({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
15826
- declare function AlertDialogPortal({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
15827
- declare function AlertDialogOverlay({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
15828
- declare function AlertDialogContent({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Content>): react_jsx_runtime.JSX.Element;
15829
- declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
15830
- declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
15831
- declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
15832
- declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
15803
+ declare function AlertDialog({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Root>): React$1.JSX.Element;
15804
+ declare function AlertDialogTrigger({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Trigger>): React$1.JSX.Element;
15805
+ declare function AlertDialogPortal({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Portal>): React$1.JSX.Element;
15806
+ declare function AlertDialogOverlay({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Overlay>): React$1.JSX.Element;
15807
+ declare function AlertDialogContent({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Content>): React$1.JSX.Element;
15808
+ declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
15809
+ declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
15810
+ declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Title>): React$1.JSX.Element;
15811
+ declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Description>): React$1.JSX.Element;
15833
15812
  declare function AlertDialogAction({ className, variant, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Action> & {
15834
15813
  variant?: "default" | "destructive";
15835
- }): react_jsx_runtime.JSX.Element;
15836
- declare function AlertDialogCancel({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Cancel>): react_jsx_runtime.JSX.Element;
15814
+ }): React$1.JSX.Element;
15815
+ declare function AlertDialogCancel({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Cancel>): React$1.JSX.Element;
15837
15816
 
15838
15817
  /**
15839
15818
  * AlertDialog Root component props
@@ -16079,7 +16058,7 @@ interface ConfirmModalProps {
16079
16058
  * />
16080
16059
  * ```
16081
16060
  */
16082
- declare function ConfirmModal({ open, onOpenChange, defaultOpen, title, description, icon, children, confirmLabel, cancelLabel, variant, onConfirm, onCancel, loading, disabled, trigger, className, size, }: ConfirmModalProps): react_jsx_runtime.JSX.Element;
16061
+ declare function ConfirmModal({ open, onOpenChange, defaultOpen, title, description, icon, children, confirmLabel, cancelLabel, variant, onConfirm, onCancel, loading, disabled, trigger, className, size, }: ConfirmModalProps): React$1.JSX.Element;
16083
16062
 
16084
16063
  /**
16085
16064
  * Dialog Root component props
@@ -16179,16 +16158,16 @@ interface DialogDescriptionProps extends ComponentPropsWithoutRef<typeof SheetPr
16179
16158
  className?: string;
16180
16159
  }
16181
16160
 
16182
- declare function Dialog({ ...props }: DialogProps): react_jsx_runtime.JSX.Element;
16183
- declare function DialogTrigger({ ...props }: DialogTriggerProps): react_jsx_runtime.JSX.Element;
16184
- declare function DialogPortal({ ...props }: DialogPortalProps): react_jsx_runtime.JSX.Element;
16185
- declare function DialogClose({ ...props }: DialogCloseProps): react_jsx_runtime.JSX.Element;
16186
- declare function DialogOverlay({ className, ...props }: DialogOverlayProps): react_jsx_runtime.JSX.Element;
16187
- declare function DialogContent({ className, children, showCloseButton, ...props }: DialogContentProps): react_jsx_runtime.JSX.Element;
16188
- declare function DialogHeader({ className, ...props }: DialogHeaderProps): react_jsx_runtime.JSX.Element;
16189
- declare function DialogFooter({ className, ...props }: DialogFooterProps): react_jsx_runtime.JSX.Element;
16190
- declare function DialogTitle({ className, ...props }: DialogTitleProps): react_jsx_runtime.JSX.Element;
16191
- declare function DialogDescription({ className, ...props }: DialogDescriptionProps): react_jsx_runtime.JSX.Element;
16161
+ declare function Dialog({ ...props }: DialogProps): React$1.JSX.Element;
16162
+ declare function DialogTrigger({ ...props }: DialogTriggerProps): React$1.JSX.Element;
16163
+ declare function DialogPortal({ ...props }: DialogPortalProps): React$1.JSX.Element;
16164
+ declare function DialogClose({ ...props }: DialogCloseProps): React$1.JSX.Element;
16165
+ declare function DialogOverlay({ className, ...props }: DialogOverlayProps): React$1.JSX.Element;
16166
+ declare function DialogContent({ className, children, showCloseButton, ...props }: DialogContentProps): React$1.JSX.Element;
16167
+ declare function DialogHeader({ className, ...props }: DialogHeaderProps): React$1.JSX.Element;
16168
+ declare function DialogFooter({ className, ...props }: DialogFooterProps): React$1.JSX.Element;
16169
+ declare function DialogTitle({ className, ...props }: DialogTitleProps): React$1.JSX.Element;
16170
+ declare function DialogDescription({ className, ...props }: DialogDescriptionProps): React$1.JSX.Element;
16192
16171
 
16193
16172
  /**
16194
16173
  * Error type variants for the ErrorPage component
@@ -16283,7 +16262,7 @@ declare const errorDefaults: Record<ErrorType, ErrorDefault>;
16283
16262
  * ErrorPage component displays user-friendly error pages with contextual
16284
16263
  * information, navigation options, and recovery actions.
16285
16264
  */
16286
- declare function ErrorPage({ actions, className, code, description, fullScreen, homeHref, icon, illustration, loading, onRetry, retryLabel, showBackLink, showHomeLink, title, type, ...props }: ErrorPageProps): react_jsx_runtime.JSX.Element;
16265
+ declare function ErrorPage({ actions, className, code, description, fullScreen, homeHref, icon, illustration, loading, onRetry, retryLabel, showBackLink, showHomeLink, title, type, ...props }: ErrorPageProps): React$1.JSX.Element;
16287
16266
 
16288
16267
  /**
16289
16268
  * FocusTrap component props
@@ -16401,7 +16380,7 @@ interface FocusTrapProps extends Omit<ComponentPropsWithoutRef<"div">, "children
16401
16380
  * </FocusTrap>
16402
16381
  * ```
16403
16382
  */
16404
- declare function FocusTrap({ active, allowOutsideClick, children, className, clickOutsideDeactivates, delayInitialFocus, escapeDeactivates, fallbackFocus, focusTrapOptions, initialFocus, isKeyBackward, isKeyForward, onActivate, onDeactivate, onPostActivate, onPostDeactivate, paused, preventScroll, returnFocus, setReturnFocus: _setReturnFocus, ...props }: FocusTrapProps): react_jsx_runtime.JSX.Element;
16383
+ declare function FocusTrap({ active, allowOutsideClick, children, className, clickOutsideDeactivates, delayInitialFocus, escapeDeactivates, fallbackFocus, focusTrapOptions, initialFocus, isKeyBackward, isKeyForward, onActivate, onDeactivate, onPostActivate, onPostDeactivate, paused, preventScroll, returnFocus, setReturnFocus: _setReturnFocus, ...props }: FocusTrapProps): React$1.JSX.Element;
16405
16384
 
16406
16385
  /**
16407
16386
  * Message variant styles using CVA
@@ -16457,7 +16436,7 @@ interface MessageProps extends ComponentPropsWithoutRef<"p">, VariantProps<typeo
16457
16436
  * <Message variant="success" id="email-success">Email is valid</Message>
16458
16437
  * ```
16459
16438
  */
16460
- declare function Message({ className, variant, size, icon, showIcon, animate, children, ...props }: MessageProps): react_jsx_runtime.JSX.Element;
16439
+ declare function Message({ className, variant, size, icon, showIcon, animate, children, ...props }: MessageProps): React$1.JSX.Element;
16461
16440
 
16462
16441
  /**
16463
16442
  * Modal size variants
@@ -16603,7 +16582,7 @@ interface ModalProps {
16603
16582
  * </Modal>
16604
16583
  * ```
16605
16584
  */
16606
- declare function Modal({ children, className, closeLabel, closeOnEscape, closeOnOverlayClick, defaultOpen, description, fallbackDescription, fallbackTitle, footer, icon, intent, onOpenChange, open, overlayClassName, showCloseButton, size, title, trigger, }: ModalProps): react_jsx_runtime.JSX.Element;
16585
+ declare function Modal({ children, className, closeLabel, closeOnEscape, closeOnOverlayClick, defaultOpen, description, fallbackDescription, fallbackTitle, footer, icon, intent, onOpenChange, open, overlayClassName, showCloseButton, size, title, trigger, }: ModalProps): React$1.JSX.Element;
16607
16586
 
16608
16587
  /**
16609
16588
  * Notification variant styles using CVA
@@ -16717,11 +16696,11 @@ interface NotificationItem {
16717
16696
  * />
16718
16697
  * ```
16719
16698
  */
16720
- declare function Notification({ className, variant, title, description, timestamp, read, icon, avatar, avatarSrc, avatarFallback, onClick, onMarkAsRead, onDelete, actions, ...props }: NotificationProps): react_jsx_runtime.JSX.Element;
16699
+ declare function Notification({ className, variant, title, description, timestamp, read, icon, avatar, avatarSrc, avatarFallback, onClick, onMarkAsRead, onDelete, actions, ...props }: NotificationProps): React$1.JSX.Element;
16721
16700
  /**
16722
16701
  * NotificationDismissButton for use within custom actions
16723
16702
  */
16724
- declare function NotificationDismissButton({ className, onClick, ...props }: React.ComponentPropsWithoutRef<"button">): react_jsx_runtime.JSX.Element;
16703
+ declare function NotificationDismissButton({ className, onClick, ...props }: React.ComponentPropsWithoutRef<"button">): React$1.JSX.Element;
16725
16704
 
16726
16705
  /**
16727
16706
  * Popover Root component props
@@ -16873,22 +16852,22 @@ type PopoverAlign = "center" | "end" | "start";
16873
16852
  * Popover Root component
16874
16853
  * Manages the open/closed state of the popover
16875
16854
  */
16876
- declare function Popover({ ...props }: PopoverProps): react_jsx_runtime.JSX.Element;
16855
+ declare function Popover({ ...props }: PopoverProps): React$1.JSX.Element;
16877
16856
  /**
16878
16857
  * PopoverTrigger component
16879
16858
  * Element that opens the popover when clicked
16880
16859
  */
16881
- declare function PopoverTrigger({ ...props }: PopoverTriggerProps): react_jsx_runtime.JSX.Element;
16860
+ declare function PopoverTrigger({ ...props }: PopoverTriggerProps): React$1.JSX.Element;
16882
16861
  /**
16883
16862
  * PopoverContent component
16884
16863
  * The floating content container with animations
16885
16864
  */
16886
- declare function PopoverContent({ className, align, sideOffset, ...props }: PopoverContentProps): react_jsx_runtime.JSX.Element;
16865
+ declare function PopoverContent({ className, align, sideOffset, ...props }: PopoverContentProps): React$1.JSX.Element;
16887
16866
  /**
16888
16867
  * PopoverAnchor component
16889
16868
  * Alternative anchor element for positioning
16890
16869
  */
16891
- declare function PopoverAnchor({ ...props }: PopoverAnchorProps): react_jsx_runtime.JSX.Element;
16870
+ declare function PopoverAnchor({ ...props }: PopoverAnchorProps): React$1.JSX.Element;
16892
16871
 
16893
16872
  /**
16894
16873
  * Position for toast placement on screen
@@ -17016,7 +16995,7 @@ interface ToastPromiseOptions<T> {
17016
16995
  success: ((data: T) => string) | string;
17017
16996
  }
17018
16997
 
17019
- declare const Toaster: ({ theme, ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
16998
+ declare const Toaster: ({ theme, ...props }: ToasterProps) => React$1.JSX.Element;
17020
16999
 
17021
17000
  interface UpdatesWidgetItem {
17022
17001
  icon: ReactNode;
@@ -17050,7 +17029,7 @@ interface UpdatesWidgetProps extends Omit<ComponentProps<"div">, "title"> {
17050
17029
  title?: ReactNode;
17051
17030
  }
17052
17031
 
17053
- declare function UpdatesWidget({ className, items, emptyState, menu, title, ...props }: UpdatesWidgetProps): react_jsx_runtime.JSX.Element;
17032
+ declare function UpdatesWidget({ className, items, emptyState, menu, title, ...props }: UpdatesWidgetProps): React$1.JSX.Element;
17054
17033
 
17055
17034
  /**
17056
17035
  * AssetManager root container variants
@@ -17337,56 +17316,56 @@ type AssetManagerDataSlot = "asset-manager" | "asset-manager-empty" | "asset-man
17337
17316
  * />
17338
17317
  * ```
17339
17318
  */
17340
- declare function AssetManager({ accept, assets, className, emptyMessage, loading, maxSize, multiple, onDelete, onSelect, onUpload, searchable, selectedIds: selectedIdsProp, showSidebar, showUpload, size, sortable, view: viewProp, ...props }: AssetManagerProps): react_jsx_runtime.JSX.Element;
17319
+ declare function AssetManager({ accept, assets, className, emptyMessage, loading, maxSize, multiple, onDelete, onSelect, onUpload, searchable, selectedIds: selectedIdsProp, showSidebar, showUpload, size, sortable, view: viewProp, ...props }: AssetManagerProps): React$1.JSX.Element;
17341
17320
  declare namespace AssetManager {
17342
17321
  var displayName: string;
17343
17322
  }
17344
17323
  /**
17345
17324
  * AssetManagerToolbar - Search, filter, and view controls
17346
17325
  */
17347
- declare function AssetManagerToolbar({ className, ...props }: AssetManagerToolbarProps): react_jsx_runtime.JSX.Element;
17326
+ declare function AssetManagerToolbar({ className, ...props }: AssetManagerToolbarProps): React$1.JSX.Element;
17348
17327
  declare namespace AssetManagerToolbar {
17349
17328
  var displayName: string;
17350
17329
  }
17351
17330
  /**
17352
17331
  * AssetManagerGrid - Grid/list view of assets
17353
17332
  */
17354
- declare function AssetManagerGrid({ className, ...props }: AssetManagerGridProps): react_jsx_runtime.JSX.Element;
17333
+ declare function AssetManagerGrid({ className, ...props }: AssetManagerGridProps): React$1.JSX.Element;
17355
17334
  declare namespace AssetManagerGrid {
17356
17335
  var displayName: string;
17357
17336
  }
17358
17337
  /**
17359
17338
  * AssetManagerList - Table-style list view (alias for grid with list view)
17360
17339
  */
17361
- declare function AssetManagerList({ className, ...props }: AssetManagerListProps): react_jsx_runtime.JSX.Element;
17340
+ declare function AssetManagerList({ className, ...props }: AssetManagerListProps): React$1.JSX.Element;
17362
17341
  declare namespace AssetManagerList {
17363
17342
  var displayName: string;
17364
17343
  }
17365
17344
  /**
17366
17345
  * AssetManagerItem - Individual asset card/row
17367
17346
  */
17368
- declare function AssetManagerItem({ asset, className, ...props }: AssetManagerItemProps): react_jsx_runtime.JSX.Element;
17347
+ declare function AssetManagerItem({ asset, className, ...props }: AssetManagerItemProps): React$1.JSX.Element;
17369
17348
  declare namespace AssetManagerItem {
17370
17349
  var displayName: string;
17371
17350
  }
17372
17351
  /**
17373
17352
  * AssetManagerSidebar - Details panel for selected asset(s)
17374
17353
  */
17375
- declare function AssetManagerSidebar({ className, ...props }: AssetManagerSidebarProps): react_jsx_runtime.JSX.Element | null;
17354
+ declare function AssetManagerSidebar({ className, ...props }: AssetManagerSidebarProps): React$1.JSX.Element | null;
17376
17355
  declare namespace AssetManagerSidebar {
17377
17356
  var displayName: string;
17378
17357
  }
17379
17358
  /**
17380
17359
  * AssetManagerUploader - Drag and drop upload area
17381
17360
  */
17382
- declare function AssetManagerUploader({ className, ...props }: AssetManagerUploaderProps): react_jsx_runtime.JSX.Element;
17361
+ declare function AssetManagerUploader({ className, ...props }: AssetManagerUploaderProps): React$1.JSX.Element;
17383
17362
  declare namespace AssetManagerUploader {
17384
17363
  var displayName: string;
17385
17364
  }
17386
17365
  /**
17387
17366
  * AssetManagerEmpty - Empty state when no assets are found
17388
17367
  */
17389
- declare function AssetManagerEmpty({ className, message, ...props }: AssetManagerEmptyProps): react_jsx_runtime.JSX.Element;
17368
+ declare function AssetManagerEmpty({ className, message, ...props }: AssetManagerEmptyProps): React$1.JSX.Element;
17390
17369
  declare namespace AssetManagerEmpty {
17391
17370
  var displayName: string;
17392
17371
  }
@@ -17512,31 +17491,31 @@ type CommandProps$1 = React$1.ComponentProps<typeof Command$1> & CommandCombined
17512
17491
  * </Command>
17513
17492
  * ```
17514
17493
  */
17515
- declare function Command({ size, className, ...props }: CommandProps$1): react_jsx_runtime.JSX.Element;
17494
+ declare function Command({ size, className, ...props }: CommandProps$1): React$1.JSX.Element;
17516
17495
  type CommandDialogProps$1 = React$1.ComponentProps<typeof Dialog> & CommandCombinedVariantProps & {
17517
17496
  className?: string;
17518
17497
  description?: string;
17519
17498
  showCloseButton?: boolean;
17520
17499
  title?: string;
17521
17500
  };
17522
- declare function CommandDialog({ title, description, children, className, showCloseButton, size, ...props }: CommandDialogProps$1): react_jsx_runtime.JSX.Element;
17501
+ declare function CommandDialog({ title, description, children, className, showCloseButton, size, ...props }: CommandDialogProps$1): React$1.JSX.Element;
17523
17502
  type CommandInputProps$1 = Omit<React$1.ComponentProps<typeof Command$1.Input>, "size"> & Partial<CommandCombinedVariantProps> & {
17524
17503
  clearable?: boolean;
17525
17504
  onClear?: () => void;
17526
17505
  };
17527
- declare function CommandInput({ className, size: sizeProp, clearable, onClear, value, defaultValue, onValueChange, ...props }: CommandInputProps$1): react_jsx_runtime.JSX.Element;
17506
+ declare function CommandInput({ className, size: sizeProp, clearable, onClear, value, defaultValue, onValueChange, ...props }: CommandInputProps$1): React$1.JSX.Element;
17528
17507
  type CommandListProps$1 = React$1.ComponentProps<typeof Command$1.List> & Partial<CommandCombinedVariantProps>;
17529
- declare function CommandList({ className, size: sizeProp, ...props }: CommandListProps$1): react_jsx_runtime.JSX.Element;
17508
+ declare function CommandList({ className, size: sizeProp, ...props }: CommandListProps$1): React$1.JSX.Element;
17530
17509
  type CommandEmptyProps$1 = React$1.ComponentProps<typeof Command$1.Empty> & Partial<CommandCombinedVariantProps>;
17531
- declare function CommandEmpty({ className, size: sizeProp, ...props }: CommandEmptyProps$1): react_jsx_runtime.JSX.Element;
17510
+ declare function CommandEmpty({ className, size: sizeProp, ...props }: CommandEmptyProps$1): React$1.JSX.Element;
17532
17511
  type CommandGroupProps$1 = React$1.ComponentProps<typeof Command$1.Group> & Partial<CommandCombinedVariantProps>;
17533
- declare function CommandGroup({ className, size: sizeProp, ...props }: CommandGroupProps$1): react_jsx_runtime.JSX.Element;
17512
+ declare function CommandGroup({ className, size: sizeProp, ...props }: CommandGroupProps$1): React$1.JSX.Element;
17534
17513
  type CommandSeparatorProps$1 = React$1.ComponentProps<typeof Command$1.Separator> & Partial<CommandCombinedVariantProps>;
17535
- declare function CommandSeparator({ className, size: sizeProp, ...props }: CommandSeparatorProps$1): react_jsx_runtime.JSX.Element;
17514
+ declare function CommandSeparator({ className, size: sizeProp, ...props }: CommandSeparatorProps$1): React$1.JSX.Element;
17536
17515
  type CommandItemProps$1 = React$1.ComponentProps<typeof Command$1.Item> & CommandItemCombinedVariantProps;
17537
- declare function CommandItem({ className, size: sizeProp, variant, ...props }: CommandItemProps$1): react_jsx_runtime.JSX.Element;
17516
+ declare function CommandItem({ className, size: sizeProp, variant, ...props }: CommandItemProps$1): React$1.JSX.Element;
17538
17517
  type CommandShortcutProps$1 = React$1.ComponentProps<"span"> & Partial<CommandCombinedVariantProps>;
17539
- declare function CommandShortcut({ className, size: sizeProp, ...props }: CommandShortcutProps$1): react_jsx_runtime.JSX.Element;
17518
+ declare function CommandShortcut({ className, size: sizeProp, ...props }: CommandShortcutProps$1): React$1.JSX.Element;
17540
17519
 
17541
17520
  /**
17542
17521
  * Size options for Command components
@@ -17880,7 +17859,7 @@ type DragAndDropDataSlot = "dnd-context" | "drag-handle" | "drag-overlay" | "dra
17880
17859
  * </DndContext>
17881
17860
  * ```
17882
17861
  */
17883
- declare function DndContext({ children, className, collisionDetection, modifiers, onDragCancel, onDragEnd, onDragMove, onDragOver, onDragStart, sensors: sensorsProp, }: DndContextProps): react_jsx_runtime.JSX.Element;
17862
+ declare function DndContext({ children, className, collisionDetection, modifiers, onDragCancel, onDragEnd, onDragMove, onDragOver, onDragStart, sensors: sensorsProp, }: DndContextProps): React$1.JSX.Element;
17884
17863
  /**
17885
17864
  * Draggable - Makes an element draggable
17886
17865
  *
@@ -17891,7 +17870,7 @@ declare function DndContext({ children, className, collisionDetection, modifiers
17891
17870
  * </Draggable>
17892
17871
  * ```
17893
17872
  */
17894
- declare function Draggable({ children, className, data, disabled, id, }: DraggableProps): react_jsx_runtime.JSX.Element;
17873
+ declare function Draggable({ children, className, data, disabled, id, }: DraggableProps): React$1.JSX.Element;
17895
17874
  /**
17896
17875
  * Droppable - Defines a drop zone
17897
17876
  *
@@ -17902,7 +17881,7 @@ declare function Draggable({ children, className, data, disabled, id, }: Draggab
17902
17881
  * </Droppable>
17903
17882
  * ```
17904
17883
  */
17905
- declare function Droppable({ children, className, data, disabled, id, }: DroppableProps): react_jsx_runtime.JSX.Element;
17884
+ declare function Droppable({ children, className, data, disabled, id, }: DroppableProps): React$1.JSX.Element;
17906
17885
  /**
17907
17886
  * DragOverlay - Overlay shown during drag
17908
17887
  *
@@ -17916,7 +17895,7 @@ declare function Droppable({ children, className, data, disabled, id, }: Droppab
17916
17895
  * </DndContext>
17917
17896
  * ```
17918
17897
  */
17919
- declare function DragOverlay({ children, className, dropAnimation, modifiers, zIndex, }: DragOverlayProps): react_jsx_runtime.JSX.Element;
17898
+ declare function DragOverlay({ children, className, dropAnimation, modifiers, zIndex, }: DragOverlayProps): React$1.JSX.Element;
17920
17899
  /**
17921
17900
  * SortableContext - Context for sortable lists
17922
17901
  *
@@ -17931,7 +17910,7 @@ declare function DragOverlay({ children, className, dropAnimation, modifiers, zI
17931
17910
  * </SortableContext>
17932
17911
  * ```
17933
17912
  */
17934
- declare function SortableContext({ children, disabled, items, strategy, }: SortableContextProps): react_jsx_runtime.JSX.Element;
17913
+ declare function SortableContext({ children, disabled, items, strategy, }: SortableContextProps): React$1.JSX.Element;
17935
17914
  /**
17936
17915
  * SortableItem - Sortable item within a SortableContext
17937
17916
  *
@@ -17942,7 +17921,7 @@ declare function SortableContext({ children, disabled, items, strategy, }: Sorta
17942
17921
  * </SortableItem>
17943
17922
  * ```
17944
17923
  */
17945
- declare function SortableItem({ children, className, data, disabled, id, }: SortableItemProps): react_jsx_runtime.JSX.Element;
17924
+ declare function SortableItem({ children, className, data, disabled, id, }: SortableItemProps): React$1.JSX.Element;
17946
17925
  /**
17947
17926
  * DragHandle - Handle for initiating drag within a SortableItem
17948
17927
  *
@@ -17958,7 +17937,7 @@ declare function SortableItem({ children, className, data, disabled, id, }: Sort
17958
17937
  * </SortableItem>
17959
17938
  * ```
17960
17939
  */
17961
- declare function DragHandle({ children, className, disabled, ...props }: DragHandleProps): react_jsx_runtime.JSX.Element;
17940
+ declare function DragHandle({ children, className, disabled, ...props }: DragHandleProps): React$1.JSX.Element;
17962
17941
  /**
17963
17942
  * arrayMove - Utility to reorder array items
17964
17943
  *
@@ -18065,7 +18044,7 @@ interface ErrorBoundaryState {
18065
18044
  /**
18066
18045
  * Default fallback UI shown when an error occurs and no custom fallback is provided
18067
18046
  */
18068
- declare function DefaultFallback({ error, resetErrorBoundary }: FallbackProps): react_jsx_runtime.JSX.Element;
18047
+ declare function DefaultFallback({ error, resetErrorBoundary }: FallbackProps): React$1.JSX.Element;
18069
18048
  /**
18070
18049
  * ErrorBoundary catches JavaScript errors in child component trees,
18071
18050
  * logs them, and displays a fallback UI instead of crashing the whole app.
@@ -18361,13 +18340,13 @@ interface EventCalendarAgendaProps {
18361
18340
  renderEvent?: (event: CalendarEvent) => React.ReactNode;
18362
18341
  }
18363
18342
 
18364
- declare function EventCalendarEvent({ event, isDragging, onClick, renderEvent, }: EventCalendarEventProps): react_jsx_runtime.JSX.Element;
18365
- declare function EventCalendarHeader({ date, view, onPrevious, onNext, onToday, onViewChange, locale, }: EventCalendarHeaderProps): react_jsx_runtime.JSX.Element;
18366
- declare function EventCalendarMonth({ date, events, weekStartsOn, selectable, onDayClick, onEventClick, onSlotSelect, renderEvent, locale, }: EventCalendarMonthProps): react_jsx_runtime.JSX.Element;
18367
- declare function EventCalendarWeek({ date, events, weekStartsOn, selectable, minTime, maxTime, onEventClick, onSlotSelect, renderEvent, locale, }: EventCalendarWeekProps): react_jsx_runtime.JSX.Element;
18368
- declare function EventCalendarDay({ date, events, selectable, minTime, maxTime, onEventClick, onSlotSelect, renderEvent, locale, }: EventCalendarDayProps): react_jsx_runtime.JSX.Element;
18369
- declare function EventCalendarAgenda({ date, events, daysToShow, onEventClick, renderEvent, locale, }: EventCalendarAgendaProps): react_jsx_runtime.JSX.Element;
18370
- declare function EventCalendar({ events, view: controlledView, date: controlledDate, onDateChange, onViewChange, onEventClick, onEventCreate, onEventUpdate: _onEventUpdate, onEventDelete: _onEventDelete, editable: _editable, selectable, weekStartsOn, minTime, maxTime, locale, renderEvent, loading, className, ...props }: EventCalendarProps): react_jsx_runtime.JSX.Element;
18343
+ declare function EventCalendarEvent({ event, isDragging, onClick, renderEvent, }: EventCalendarEventProps): React$1.JSX.Element;
18344
+ declare function EventCalendarHeader({ date, view, onPrevious, onNext, onToday, onViewChange, locale, }: EventCalendarHeaderProps): React$1.JSX.Element;
18345
+ declare function EventCalendarMonth({ date, events, weekStartsOn, selectable, onDayClick, onEventClick, onSlotSelect, renderEvent, locale, }: EventCalendarMonthProps): React$1.JSX.Element;
18346
+ declare function EventCalendarWeek({ date, events, weekStartsOn, selectable, minTime, maxTime, onEventClick, onSlotSelect, renderEvent, locale, }: EventCalendarWeekProps): React$1.JSX.Element;
18347
+ declare function EventCalendarDay({ date, events, selectable, minTime, maxTime, onEventClick, onSlotSelect, renderEvent, locale, }: EventCalendarDayProps): React$1.JSX.Element;
18348
+ declare function EventCalendarAgenda({ date, events, daysToShow, onEventClick, renderEvent, locale, }: EventCalendarAgendaProps): React$1.JSX.Element;
18349
+ declare function EventCalendar({ events, view: controlledView, date: controlledDate, onDateChange, onViewChange, onEventClick, onEventCreate, onEventUpdate: _onEventUpdate, onEventDelete: _onEventDelete, editable: _editable, selectable, weekStartsOn, minTime, maxTime, locale, renderEvent, loading, className, ...props }: EventCalendarProps): React$1.JSX.Element;
18371
18350
 
18372
18351
  /**
18373
18352
  * EventCalendar container variants
@@ -18507,7 +18486,7 @@ interface FileDropzoneProps extends Omit<DropzoneOptions, "onDrop" | "onDropAcce
18507
18486
  * </FileDropzone>
18508
18487
  * ```
18509
18488
  */
18510
- declare function FileDropzone({ accept, children, className, disabled, maxFiles, maxSize, minSize, multiple, noClick, noDrag, noKeyboard, onDrop, onReject, variant, ...props }: FileDropzoneProps): react_jsx_runtime.JSX.Element;
18489
+ declare function FileDropzone({ accept, children, className, disabled, maxFiles, maxSize, minSize, multiple, noClick, noDrag, noKeyboard, onDrop, onReject, variant, ...props }: FileDropzoneProps): React$1.JSX.Element;
18511
18490
  declare namespace FileDropzone {
18512
18491
  var displayName: string;
18513
18492
  }
@@ -18646,7 +18625,7 @@ type FilePreviewDataSlot = "file-preview" | "file-preview-actions" | "file-previ
18646
18625
  * />
18647
18626
  * ```
18648
18627
  */
18649
- declare function FilePreview({ alt, aspectRatio, className, file, fileInfo, onDownload, onRemove, showActions, showInfo, size, url: urlProp, variant, ...props }: FilePreviewProps): react_jsx_runtime.JSX.Element;
18628
+ declare function FilePreview({ alt, aspectRatio, className, file, fileInfo, onDownload, onRemove, showActions, showInfo, size, url: urlProp, variant, ...props }: FilePreviewProps): React$1.JSX.Element;
18650
18629
  declare namespace FilePreview {
18651
18630
  var displayName: string;
18652
18631
  }
@@ -18937,21 +18916,21 @@ type FileUploadDataSlot = "file-upload" | "file-upload-dropzone" | "file-upload-
18937
18916
  * </FileUpload>
18938
18917
  * ```
18939
18918
  */
18940
- declare function FileUpload({ accept, autoUpload, children, className, disabled, maxFiles, maxSize, multiple, onChange, onComplete, onError, onProgress, onRemove, onUpload, required, showPreview, value, variant, ...props }: FileUploadProps): react_jsx_runtime.JSX.Element;
18919
+ declare function FileUpload({ accept, autoUpload, children, className, disabled, maxFiles, maxSize, multiple, onChange, onComplete, onError, onProgress, onRemove, onUpload, required, showPreview, value, variant, ...props }: FileUploadProps): React$1.JSX.Element;
18941
18920
  declare namespace FileUpload {
18942
18921
  var displayName: string;
18943
18922
  }
18944
18923
  /**
18945
18924
  * FileUploadTrigger - Button to trigger file selection
18946
18925
  */
18947
- declare function FileUploadTrigger({ children, className, disabled: disabledProp, ...props }: FileUploadTriggerProps): react_jsx_runtime.JSX.Element;
18926
+ declare function FileUploadTrigger({ children, className, disabled: disabledProp, ...props }: FileUploadTriggerProps): React$1.JSX.Element;
18948
18927
  declare namespace FileUploadTrigger {
18949
18928
  var displayName: string;
18950
18929
  }
18951
18930
  /**
18952
18931
  * FileUploadDropzone - Drag and drop area for file selection
18953
18932
  */
18954
- declare function FileUploadDropzone({ children, className, disabled: disabledProp, ...props }: FileUploadDropzoneProps): react_jsx_runtime.JSX.Element;
18933
+ declare function FileUploadDropzone({ children, className, disabled: disabledProp, ...props }: FileUploadDropzoneProps): React$1.JSX.Element;
18955
18934
  declare namespace FileUploadDropzone {
18956
18935
  var displayName: string;
18957
18936
  }
@@ -18960,35 +18939,35 @@ declare namespace FileUploadDropzone {
18960
18939
  */
18961
18940
  declare function FileUploadAvatar({ children, className, size, ...props }: React$1.ComponentProps<"div"> & {
18962
18941
  size?: "lg" | "md" | "sm";
18963
- }): react_jsx_runtime.JSX.Element;
18942
+ }): React$1.JSX.Element;
18964
18943
  declare namespace FileUploadAvatar {
18965
18944
  var displayName: string;
18966
18945
  }
18967
18946
  /**
18968
18947
  * FileUploadList - List of selected files with previews
18969
18948
  */
18970
- declare function FileUploadList({ className, files: filesProp, onRemove: onRemoveProp, progress: progressProp, ...props }: FileUploadListProps): react_jsx_runtime.JSX.Element | null;
18949
+ declare function FileUploadList({ className, files: filesProp, onRemove: onRemoveProp, progress: progressProp, ...props }: FileUploadListProps): React$1.JSX.Element | null;
18971
18950
  declare namespace FileUploadList {
18972
18951
  var displayName: string;
18973
18952
  }
18974
18953
  /**
18975
18954
  * FileUploadPreview - Single file preview with progress and remove button
18976
18955
  */
18977
- declare function FileUploadPreview({ className, file, index, onRemove, progress, ...props }: FileUploadPreviewProps): react_jsx_runtime.JSX.Element;
18956
+ declare function FileUploadPreview({ className, file, index, onRemove, progress, ...props }: FileUploadPreviewProps): React$1.JSX.Element;
18978
18957
  declare namespace FileUploadPreview {
18979
18958
  var displayName: string;
18980
18959
  }
18981
18960
  /**
18982
18961
  * FileUploadProgressBar - Progress indicator for file upload
18983
18962
  */
18984
- declare function FileUploadProgressBar({ className, file, progress, ...props }: FileUploadProgressProps): react_jsx_runtime.JSX.Element;
18963
+ declare function FileUploadProgressBar({ className, file, progress, ...props }: FileUploadProgressProps): React$1.JSX.Element;
18985
18964
  declare namespace FileUploadProgressBar {
18986
18965
  var displayName: string;
18987
18966
  }
18988
18967
  /**
18989
18968
  * FileUploadInline - Inline variant with input and button
18990
18969
  */
18991
- declare function FileUploadInline({ children, className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
18970
+ declare function FileUploadInline({ children, className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
18992
18971
  declare namespace FileUploadInline {
18993
18972
  var displayName: string;
18994
18973
  }
@@ -19258,10 +19237,10 @@ declare function isFilterGroup(item: FilterGroup | FilterRule): item is FilterGr
19258
19237
  */
19259
19238
  declare function isFilterRule(item: FilterGroup | FilterRule): item is FilterRule;
19260
19239
 
19261
- declare function FilterRuleComponent({ fields, onChange, onRemove, rule, }: FilterRuleProps): react_jsx_runtime.JSX.Element;
19262
- declare function FilterGroupComponent({ depth, fields, group, isRoot, maxDepth, maxRules, onChange, onRemove, rulesCount, }: FilterGroupProps): react_jsx_runtime.JSX.Element;
19263
- declare function FilterToolbar({ canAddGroup, canAddRule, hasRules, onAddGroup, onAddRule, onApply, onClear, }: FilterToolbarProps): react_jsx_runtime.JSX.Element;
19264
- declare function FilterPreview({ fields, filter }: FilterPreviewProps): react_jsx_runtime.JSX.Element;
19240
+ declare function FilterRuleComponent({ fields, onChange, onRemove, rule, }: FilterRuleProps): React$1.JSX.Element;
19241
+ declare function FilterGroupComponent({ depth, fields, group, isRoot, maxDepth, maxRules, onChange, onRemove, rulesCount, }: FilterGroupProps): React$1.JSX.Element;
19242
+ declare function FilterToolbar({ canAddGroup, canAddRule, hasRules, onAddGroup, onAddRule, onApply, onClear, }: FilterToolbarProps): React$1.JSX.Element;
19243
+ declare function FilterPreview({ fields, filter }: FilterPreviewProps): React$1.JSX.Element;
19265
19244
  /**
19266
19245
  * FilterBuilder - Advanced visual query builder component
19267
19246
  *
@@ -19287,7 +19266,7 @@ declare function FilterPreview({ fields, filter }: FilterPreviewProps): react_js
19287
19266
  * />
19288
19267
  * ```
19289
19268
  */
19290
- declare function FilterBuilder({ className, fields, maxDepth, maxRules, onApply, onChange, onClear, showPreview, size, value, ...props }: FilterBuilderProps): react_jsx_runtime.JSX.Element;
19269
+ declare function FilterBuilder({ className, fields, maxDepth, maxRules, onApply, onChange, onClear, showPreview, size, value, ...props }: FilterBuilderProps): React$1.JSX.Element;
19291
19270
  declare namespace FilterBuilder {
19292
19271
  var displayName: string;
19293
19272
  }
@@ -19400,15 +19379,15 @@ interface MarkdownHelpProps {
19400
19379
  /**
19401
19380
  * MarkdownHelp - Modal with markdown syntax reference
19402
19381
  */
19403
- declare function MarkdownHelp({ open, onOpenChange }: MarkdownHelpProps): react_jsx_runtime.JSX.Element;
19382
+ declare function MarkdownHelp({ open, onOpenChange }: MarkdownHelpProps): React$1.JSX.Element;
19404
19383
  /**
19405
19384
  * MarkdownPreview - Renders markdown content as HTML
19406
19385
  */
19407
- declare function MarkdownPreview({ content, className }: MarkdownPreviewProps): react_jsx_runtime.JSX.Element;
19386
+ declare function MarkdownPreview({ content, className }: MarkdownPreviewProps): React$1.JSX.Element;
19408
19387
  /**
19409
19388
  * MarkdownToolbar - Formatting toolbar for the editor
19410
19389
  */
19411
- declare function MarkdownToolbar({ className, disabled, editorRef, showHelp, onHelpClick, }: MarkdownToolbarProps): react_jsx_runtime.JSX.Element;
19390
+ declare function MarkdownToolbar({ className, disabled, editorRef, showHelp, onHelpClick, }: MarkdownToolbarProps): React$1.JSX.Element;
19412
19391
  /**
19413
19392
  * MarkdownEditor - A markdown editor with toolbar and preview.
19414
19393
  *
@@ -19428,7 +19407,7 @@ declare function MarkdownToolbar({ className, disabled, editorRef, showHelp, onH
19428
19407
  */
19429
19408
  declare function MarkdownEditor({ "aria-describedby": ariaDescribedBy, "aria-label": ariaLabel, allowImages: _allowImages, className, defaultValue, disabled, maxHeight, minHeight, mode, onBlur, onChange, onFocus, onImageUpload: _onImageUpload, placeholder, readOnly, ref, showHelp, showToolbar, toolbar: _toolbar, value, }: MarkdownEditorProps & {
19430
19409
  ref?: React$1.Ref<MarkdownEditorRef>;
19431
- }): react_jsx_runtime.JSX.Element;
19410
+ }): React$1.JSX.Element;
19432
19411
 
19433
19412
  /**
19434
19413
  * Portal component props
@@ -19499,7 +19478,7 @@ interface PortalProps {
19499
19478
  * </Portal>
19500
19479
  * ```
19501
19480
  */
19502
- declare function Portal({ children, container, disabled }: PortalProps): react_jsx_runtime.JSX.Element | null;
19481
+ declare function Portal({ children, container, disabled }: PortalProps): React$1.JSX.Element | null;
19503
19482
 
19504
19483
  /**
19505
19484
  * Portal container variants
@@ -19611,7 +19590,7 @@ interface ReportBuilderProps extends Omit<HTMLAttributes<HTMLDivElement>, "onCha
19611
19590
  * />
19612
19591
  * ```
19613
19592
  */
19614
- declare function ReportBuilder({ fields, dimensions, metrics, onSelectionChange, filterFields, filters, onFiltersChange, className, ...props }: ReportBuilderProps): react_jsx_runtime.JSX.Element;
19593
+ declare function ReportBuilder({ fields, dimensions, metrics, onSelectionChange, filterFields, filters, onFiltersChange, className, ...props }: ReportBuilderProps): React$1.JSX.Element;
19615
19594
 
19616
19595
  interface RichTextEditorProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "content" | "onBlur" | "onChange" | "onFocus"> {
19617
19596
  /** ARIA label for accessibility */
@@ -19700,12 +19679,12 @@ interface RichTextFloatingMenuProps {
19700
19679
  editor: Editor | null;
19701
19680
  }
19702
19681
 
19703
- declare function RichTextToolbar({ className, editor, promptForImage, promptForLink, }: RichTextToolbarProps): react_jsx_runtime.JSX.Element | null;
19704
- declare function RichTextBubbleMenuContent({ className, editor, promptForLink, }: RichTextBubbleMenuProps): react_jsx_runtime.JSX.Element | null;
19705
- declare function RichTextFloatingMenuContent({ className, editor }: RichTextFloatingMenuProps): react_jsx_runtime.JSX.Element | null;
19682
+ declare function RichTextToolbar({ className, editor, promptForImage, promptForLink, }: RichTextToolbarProps): React$1.JSX.Element | null;
19683
+ declare function RichTextBubbleMenuContent({ className, editor, promptForLink, }: RichTextBubbleMenuProps): React$1.JSX.Element | null;
19684
+ declare function RichTextFloatingMenuContent({ className, editor }: RichTextFloatingMenuProps): React$1.JSX.Element | null;
19706
19685
  declare function RichTextEditor({ "aria-label": ariaLabel, autofocus, className, content, defaultContent, editable, extensions, onBlur, onChange, onFocus, onUpdate, placeholder, promptForImage, promptForLink, ref, showBubbleMenu, showFloatingMenu, showToolbar, toolbarPosition, ...props }: RichTextEditorProps & {
19707
19686
  ref?: React$1.Ref<RichTextEditorRef>;
19708
- }): react_jsx_runtime.JSX.Element;
19687
+ }): React$1.JSX.Element;
19709
19688
 
19710
19689
  /**
19711
19690
  * RichTextEditor container variants
@@ -20083,43 +20062,43 @@ declare const searchHighlightVariants: (props?: class_variance_authority_types.C
20083
20062
  * />
20084
20063
  * ```
20085
20064
  */
20086
- declare function Search({ value, defaultValue, onChange, onSearch, results, loading, error, errorMessage, placeholder, filters, activeFilters, onFilterChange, onSelect, showHistory, history, onClearHistory, debounce, minChars, className, variant, size, open: openProp, onOpenChange, disabled, autoFocus, }: SearchProps): react_jsx_runtime.JSX.Element;
20065
+ declare function Search({ value, defaultValue, onChange, onSearch, results, loading, error, errorMessage, placeholder, filters, activeFilters, onFilterChange, onSelect, showHistory, history, onClearHistory, debounce, minChars, className, variant, size, open: openProp, onOpenChange, disabled, autoFocus, }: SearchProps): React$1.JSX.Element;
20087
20066
  /**
20088
20067
  * AdvancedSearchInput - Standalone search input component for the advanced Search
20089
20068
  */
20090
- declare function AdvancedSearchInput({ className, size, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
20069
+ declare function AdvancedSearchInput({ className, size, ...props }: SearchInputProps): React$1.JSX.Element;
20091
20070
  /**
20092
20071
  * SearchResults - Container for search results
20093
20072
  */
20094
- declare function SearchResults({ children, className, size }: SearchResultsProps): react_jsx_runtime.JSX.Element;
20073
+ declare function SearchResults({ children, className, size }: SearchResultsProps): React$1.JSX.Element;
20095
20074
  /**
20096
20075
  * SearchResultItem - Individual search result
20097
20076
  */
20098
- declare function SearchResultItem({ result, query, selected, onSelect, className, size, }: SearchResultItemProps): react_jsx_runtime.JSX.Element;
20077
+ declare function SearchResultItem({ result, query, selected, onSelect, className, size, }: SearchResultItemProps): React$1.JSX.Element;
20099
20078
  /**
20100
20079
  * SearchResultGroup - Group of related results
20101
20080
  */
20102
- declare function SearchResultGroup({ label, children, className, size, }: SearchResultGroupProps): react_jsx_runtime.JSX.Element;
20081
+ declare function SearchResultGroup({ label, children, className, size, }: SearchResultGroupProps): React$1.JSX.Element;
20103
20082
  /**
20104
20083
  * SearchFilters - Filter buttons for search
20105
20084
  */
20106
- declare function SearchFilters({ filters, activeFilters, onFilterChange, className, size, }: SearchFiltersProps): react_jsx_runtime.JSX.Element;
20085
+ declare function SearchFilters({ filters, activeFilters, onFilterChange, className, size, }: SearchFiltersProps): React$1.JSX.Element;
20107
20086
  /**
20108
20087
  * SearchHistory - Recent search history
20109
20088
  */
20110
- declare function SearchHistory({ items, onSelect, onClear, className, size, }: SearchHistoryProps): react_jsx_runtime.JSX.Element;
20089
+ declare function SearchHistory({ items, onSelect, onClear, className, size, }: SearchHistoryProps): React$1.JSX.Element;
20111
20090
  /**
20112
20091
  * SearchEmpty - Empty state for no results
20113
20092
  */
20114
- declare function SearchEmpty({ message, children, className, size }: SearchEmptyProps): react_jsx_runtime.JSX.Element;
20093
+ declare function SearchEmpty({ message, children, className, size }: SearchEmptyProps): React$1.JSX.Element;
20115
20094
  /**
20116
20095
  * SearchLoading - Loading state for search
20117
20096
  */
20118
- declare function SearchLoading({ message, className, size }: SearchLoadingProps): react_jsx_runtime.JSX.Element;
20097
+ declare function SearchLoading({ message, className, size }: SearchLoadingProps): React$1.JSX.Element;
20119
20098
  /**
20120
20099
  * SearchHighlight - Highlight matching text in search results
20121
20100
  */
20122
- declare function SearchHighlight({ text, query, className }: SearchHighlightProps): react_jsx_runtime.JSX.Element;
20101
+ declare function SearchHighlight({ text, query, className }: SearchHighlightProps): React$1.JSX.Element;
20123
20102
 
20124
20103
  /**
20125
20104
  * Props for the SortableList component
@@ -20507,7 +20486,7 @@ declare function VersionBadge({ children, className, isCurrent, isSelected, size
20507
20486
  isCurrent?: boolean;
20508
20487
  isSelected?: boolean;
20509
20488
  size?: "default" | "lg" | "sm";
20510
- }): react_jsx_runtime.JSX.Element;
20489
+ }): React$1.JSX.Element;
20511
20490
  /**
20512
20491
  * ChangeIndicator component for showing additions/deletions/modifications
20513
20492
  */
@@ -20516,15 +20495,15 @@ declare function ChangeIndicator({ additions, deletions, modifications, classNam
20516
20495
  className?: string;
20517
20496
  deletions?: number;
20518
20497
  modifications?: number;
20519
- }): react_jsx_runtime.JSX.Element;
20498
+ }): React$1.JSX.Element;
20520
20499
  /**
20521
20500
  * VersionActions component for version action buttons
20522
20501
  */
20523
- declare function VersionActions({ version, allowRestore, onRestore, onCompare, isRestoring, className, ...props }: VersionActionsProps): react_jsx_runtime.JSX.Element;
20502
+ declare function VersionActions({ version, allowRestore, onRestore, onCompare, isRestoring, className, ...props }: VersionActionsProps): React$1.JSX.Element;
20524
20503
  /**
20525
20504
  * VersionItem component for displaying a single version entry
20526
20505
  */
20527
- declare function VersionItem({ version, isCurrent, isSelected, allowRestore, size, onVersionClick, onRestore, onCompare, className, ...props }: VersionItemProps): react_jsx_runtime.JSX.Element;
20506
+ declare function VersionItem({ version, isCurrent, isSelected, allowRestore, size, onVersionClick, onRestore, onCompare, className, ...props }: VersionItemProps): React$1.JSX.Element;
20528
20507
  /**
20529
20508
  * VersionList component for displaying versions in a list format
20530
20509
  */
@@ -20538,15 +20517,15 @@ declare function VersionList({ versions, currentVersionId, selectedVersionId, si
20538
20517
  selectedVersionId?: string;
20539
20518
  size?: "default" | "lg" | "sm";
20540
20519
  versions: Version[];
20541
- }): react_jsx_runtime.JSX.Element;
20520
+ }): React$1.JSX.Element;
20542
20521
  /**
20543
20522
  * VersionTimeline component for displaying versions in a timeline format
20544
20523
  */
20545
- declare function VersionTimeline({ versions, currentVersionId, size, onVersionSelect, className, ...props }: VersionTimelineProps): react_jsx_runtime.JSX.Element;
20524
+ declare function VersionTimeline({ versions, currentVersionId, size, onVersionSelect, className, ...props }: VersionTimelineProps): React$1.JSX.Element;
20546
20525
  /**
20547
20526
  * VersionDiff component for displaying diff between versions
20548
20527
  */
20549
- declare function VersionDiff({ oldVersion, newVersion, lines, isLoading, className, ...props }: VersionDiffProps): react_jsx_runtime.JSX.Element;
20528
+ declare function VersionDiff({ oldVersion, newVersion, lines, isLoading, className, ...props }: VersionDiffProps): React$1.JSX.Element;
20550
20529
  /**
20551
20530
  * VersionControl component for displaying and managing version history.
20552
20531
  *
@@ -20564,7 +20543,7 @@ declare function VersionDiff({ oldVersion, newVersion, lines, isLoading, classNa
20564
20543
  * />
20565
20544
  * ```
20566
20545
  */
20567
- declare function VersionControl({ versions, currentVersionId, onVersionSelect, onRestore, onCompare, showDiff, showTimeline, allowRestore, maxVersions, getDiff, emptyContent, isLoading, variant, size, className, ...props }: VersionControlProps): react_jsx_runtime.JSX.Element;
20546
+ declare function VersionControl({ versions, currentVersionId, onVersionSelect, onRestore, onCompare, showDiff, showTimeline, allowRestore, maxVersions, getDiff, emptyContent, isLoading, variant, size, className, ...props }: VersionControlProps): React$1.JSX.Element;
20568
20547
  declare namespace VersionControl {
20569
20548
  var displayName: string;
20570
20549
  }
@@ -20831,7 +20810,7 @@ interface ApprovalFlowStepProps extends React.ComponentProps<"div">, VariantProp
20831
20810
  declare function ApprovalFlowMarker({ index, status, }: {
20832
20811
  index: number;
20833
20812
  status?: ApprovalStepStatus;
20834
- }): react_jsx_runtime.JSX.Element;
20813
+ }): React$1.JSX.Element;
20835
20814
  /**
20836
20815
  * ApprovalFlowConnector component renders the line between steps
20837
20816
  */
@@ -20839,11 +20818,11 @@ declare function ApprovalFlowConnector({ layout, status, isConditional, }: {
20839
20818
  isConditional?: boolean;
20840
20819
  layout?: "compact" | "horizontal" | "vertical";
20841
20820
  status?: ApprovalStepStatus;
20842
- }): react_jsx_runtime.JSX.Element;
20821
+ }): React$1.JSX.Element;
20843
20822
  /**
20844
20823
  * ApprovalFlowStep component renders a single approval step
20845
20824
  */
20846
- declare function ApprovalFlowStep({ step, index, isCurrent, isLast, showConnector, layout, readOnly, allowDelegation, allowEscalation, onApprove, onReject, onDelegate, onEscalate, className, ...props }: ApprovalFlowStepProps): react_jsx_runtime.JSX.Element;
20825
+ declare function ApprovalFlowStep({ step, index, isCurrent, isLast, showConnector, layout, readOnly, allowDelegation, allowEscalation, onApprove, onReject, onDelegate, onEscalate, className, ...props }: ApprovalFlowStepProps): React$1.JSX.Element;
20847
20826
  /**
20848
20827
  * ApprovalFlow component displays and manages an approval workflow.
20849
20828
  *
@@ -20863,7 +20842,7 @@ declare function ApprovalFlowStep({ step, index, isCurrent, isLast, showConnecto
20863
20842
  * />
20864
20843
  * ```
20865
20844
  */
20866
- declare function ApprovalFlow({ "aria-label": ariaLabel, className, steps, currentStep, variant, layout, allowDelegation, allowEscalation, showTimeline: _showTimeline, showComments: _showComments, readOnly, history: _history, onApprove, onReject, onDelegate, onEscalate, onStepChange: _onStepChange, onComplete: _onComplete, ...props }: ApprovalFlowProps): react_jsx_runtime.JSX.Element;
20845
+ declare function ApprovalFlow({ "aria-label": ariaLabel, className, steps, currentStep, variant, layout, allowDelegation, allowEscalation, showTimeline: _showTimeline, showComments: _showComments, readOnly, history: _history, onApprove, onReject, onDelegate, onEscalate, onStepChange: _onStepChange, onComplete: _onComplete, ...props }: ApprovalFlowProps): React$1.JSX.Element;
20867
20846
 
20868
20847
  /**
20869
20848
  * ApprovalStatus variant styles using CVA
@@ -20946,7 +20925,7 @@ declare const statusConfig: Record<ApprovalStatusType, StatusConfig & {
20946
20925
  * />
20947
20926
  * ```
20948
20927
  */
20949
- declare function ApprovalStatus({ animated, approver, className, comment, showIcon, showLabel, size, status, timestamp, variant, ...props }: ApprovalStatusProps): react_jsx_runtime.JSX.Element;
20928
+ declare function ApprovalStatus({ animated, approver, className, comment, showIcon, showLabel, size, status, timestamp, variant, ...props }: ApprovalStatusProps): React$1.JSX.Element;
20950
20929
 
20951
20930
  /**
20952
20931
  * CommentSystem container variants
@@ -21308,7 +21287,7 @@ interface CommentInputProps extends Omit<React.ComponentProps<"div">, "children"
21308
21287
  /**
21309
21288
  * CommentInput component for writing new comments or editing
21310
21289
  */
21311
- declare function CommentInput({ placeholder, allowMentions, allowAttachments, mentionableUsers, parentId, initialContent, submitLabel, cancelLabel, isEditing, isSubmitting, showCancel, onSubmit, onCancel, onMention, className, ...props }: CommentInputProps): react_jsx_runtime.JSX.Element;
21290
+ declare function CommentInput({ placeholder, allowMentions, allowAttachments, mentionableUsers, parentId, initialContent, submitLabel, cancelLabel, isEditing, isSubmitting, showCancel, onSubmit, onCancel, onMention, className, ...props }: CommentInputProps): React$1.JSX.Element;
21312
21291
  /**
21313
21292
  * CommentReactions component displays and manages reactions
21314
21293
  */
@@ -21323,11 +21302,11 @@ declare function CommentReactions({ commentId, reactions, availableReactions, re
21323
21302
  users: string[];
21324
21303
  }[];
21325
21304
  readOnly?: boolean;
21326
- }): react_jsx_runtime.JSX.Element;
21305
+ }): React$1.JSX.Element;
21327
21306
  /**
21328
21307
  * CommentItem component renders a single comment
21329
21308
  */
21330
- declare function CommentItem({ comment, confirmDelete, currentUser, depth, maxDepth, layout, allowReplies, allowReactions, allowEditing, allowDeleting, allowMentions, reactions, mentionableUsers, readOnly, onReply, onEdit, onDelete, onReact, className, ...props }: CommentItemProps): react_jsx_runtime.JSX.Element;
21309
+ declare function CommentItem({ comment, confirmDelete, currentUser, depth, maxDepth, layout, allowReplies, allowReactions, allowEditing, allowDeleting, allowMentions, reactions, mentionableUsers, readOnly, onReply, onEdit, onDelete, onReact, className, ...props }: CommentItemProps): React$1.JSX.Element;
21331
21310
  /**
21332
21311
  * CommentSystem displays and manages a complete comment system
21333
21312
  * with threading, mentions, reactions, and moderation support.
@@ -21350,7 +21329,7 @@ declare function CommentItem({ comment, confirmDelete, currentUser, depth, maxDe
21350
21329
  * />
21351
21330
  * ```
21352
21331
  */
21353
- declare function CommentSystem({ comments, variant, layout, confirmDelete, currentUser, allowReplies, allowReactions, allowEditing, allowDeleting, allowMentions, allowAttachments, maxDepth, mentionableUsers, reactions, placeholder, readOnly, isLoading, error, onSubmit, onEdit, onDelete, onReact, onMention, onLoadMore, className, "aria-label": ariaLabel, ...props }: CommentSystemProps): react_jsx_runtime.JSX.Element;
21332
+ declare function CommentSystem({ comments, variant, layout, confirmDelete, currentUser, allowReplies, allowReactions, allowEditing, allowDeleting, allowMentions, allowAttachments, maxDepth, mentionableUsers, reactions, placeholder, readOnly, isLoading, error, onSubmit, onEdit, onDelete, onReact, onMention, onLoadMore, className, "aria-label": ariaLabel, ...props }: CommentSystemProps): React$1.JSX.Element;
21354
21333
 
21355
21334
  /**
21356
21335
  * Dashboard container variants
@@ -21619,29 +21598,29 @@ interface DashboardWidgetProps extends React.ComponentProps<"div"> {
21619
21598
  /**
21620
21599
  * DashboardHeader displays the dashboard title and actions
21621
21600
  */
21622
- declare function DashboardHeader({ title, description, showRefresh, onRefresh, actions, }: DashboardHeaderProps): react_jsx_runtime.JSX.Element;
21601
+ declare function DashboardHeader({ title, description, showRefresh, onRefresh, actions, }: DashboardHeaderProps): React$1.JSX.Element;
21623
21602
  /**
21624
21603
  * DashboardWidget renders a single widget card
21625
21604
  */
21626
- declare function DashboardWidget({ widget, columns, rowHeight, isDraggable, isResizable, onClick, onRemove, className, ...props }: DashboardWidgetProps): react_jsx_runtime.JSX.Element;
21605
+ declare function DashboardWidget({ widget, columns, rowHeight, isDraggable, isResizable, onClick, onRemove, className, ...props }: DashboardWidgetProps): React$1.JSX.Element;
21627
21606
  /**
21628
21607
  * DashboardEmptyState displays when no widgets are configured
21629
21608
  */
21630
21609
  declare function DashboardEmptyState({ layout }: {
21631
21610
  layout?: "default" | "dense" | "full" | "sidebar" | null;
21632
- }): react_jsx_runtime.JSX.Element;
21611
+ }): React$1.JSX.Element;
21633
21612
  /**
21634
21613
  * DashboardLoadingState displays while data is loading
21635
21614
  */
21636
21615
  declare function DashboardLoadingState({ layout }: {
21637
21616
  layout?: "default" | "dense" | "full" | "sidebar" | null;
21638
- }): react_jsx_runtime.JSX.Element;
21617
+ }): React$1.JSX.Element;
21639
21618
  /**
21640
21619
  * DashboardErrorState displays when an error occurs
21641
21620
  */
21642
21621
  declare function DashboardErrorState({ layout }: {
21643
21622
  layout?: "default" | "dense" | "full" | "sidebar" | null;
21644
- }): react_jsx_runtime.JSX.Element;
21623
+ }): React$1.JSX.Element;
21645
21624
  /**
21646
21625
  * Dashboard component for creating control panels with widgets, metrics, and visualizations.
21647
21626
  *
@@ -21660,7 +21639,7 @@ declare function DashboardErrorState({ layout }: {
21660
21639
  * />
21661
21640
  * ```
21662
21641
  */
21663
- declare function Dashboard({ "aria-label": ariaLabel, className, title, description, widgets, layout, columns, rowHeight, isDraggable, isResizable, showHeader, showRefresh, refreshInterval, sidebarContent, headerActions, state, onLayoutChange, onWidgetAdd: _onWidgetAdd, onWidgetRemove, onRefresh, onExport: _onExport, onWidgetClick, ...props }: DashboardProps): react_jsx_runtime.JSX.Element;
21642
+ declare function Dashboard({ "aria-label": ariaLabel, className, title, description, widgets, layout, columns, rowHeight, isDraggable, isResizable, showHeader, showRefresh, refreshInterval, sidebarContent, headerActions, state, onLayoutChange, onWidgetAdd: _onWidgetAdd, onWidgetRemove, onRefresh, onExport: _onExport, onWidgetClick, ...props }: DashboardProps): React$1.JSX.Element;
21664
21643
 
21665
21644
  /**
21666
21645
  * DashboardBuilder container variants
@@ -22364,7 +22343,7 @@ interface KanbanBoardProps extends VariantProps<typeof kanbanBoardVariants> {
22364
22343
  /**
22365
22344
  * KanbanCard displays an individual task item
22366
22345
  */
22367
- declare function KanbanCard({ className, isDragging, item, onClick, onDelete: _onDelete, }: KanbanCardProps): react_jsx_runtime.JSX.Element;
22346
+ declare function KanbanCard({ className, isDragging, item, onClick, onDelete: _onDelete, }: KanbanCardProps): React$1.JSX.Element;
22368
22347
  /**
22369
22348
  * KanbanBoard component for visual task management.
22370
22349
  *
@@ -22393,7 +22372,7 @@ declare function KanbanCard({ className, isDragging, item, onClick, onDelete: _o
22393
22372
  * />
22394
22373
  * ```
22395
22374
  */
22396
- declare function KanbanBoard({ allowAddColumn, allowAddItem, allowColumnReorder, className, columns, columnWidth, filterBy, groupBy, items, onColumnAdd, onColumnDelete: _onColumnDelete, onColumnReorder: _onColumnReorder, onColumnUpdate: _onColumnUpdate, onItemAdd, onItemClick, onItemDelete, onItemMove, onItemUpdate: _onItemUpdate, searchable, showColumnCount, showWipLimits, variant, layout, ...props }: KanbanBoardProps): react_jsx_runtime.JSX.Element;
22375
+ declare function KanbanBoard({ allowAddColumn, allowAddItem, allowColumnReorder, className, columns, columnWidth, filterBy, groupBy, items, onColumnAdd, onColumnDelete: _onColumnDelete, onColumnReorder: _onColumnReorder, onColumnUpdate: _onColumnUpdate, onItemAdd, onItemClick, onItemDelete, onItemMove, onItemUpdate: _onItemUpdate, searchable, showColumnCount, showWipLimits, variant, layout, ...props }: KanbanBoardProps): React$1.JSX.Element;
22397
22376
 
22398
22377
  /**
22399
22378
  * ProgressSteps container variants
@@ -22551,7 +22530,7 @@ interface StepItemProps {
22551
22530
  * <ProgressSteps steps={steps} currentStep={1} />
22552
22531
  * ```
22553
22532
  */
22554
- declare function ProgressSteps({ animated, className, currentStep, orientation, showConnectors, showDescriptions, showLabels, size, steps, variant, ...props }: ProgressStepsProps): react_jsx_runtime.JSX.Element;
22533
+ declare function ProgressSteps({ animated, className, currentStep, orientation, showConnectors, showDescriptions, showLabels, size, steps, variant, ...props }: ProgressStepsProps): React$1.JSX.Element;
22555
22534
 
22556
22535
  /**
22557
22536
  * ReportGenerator container variants
@@ -22920,7 +22899,7 @@ interface PreviewPanelProps {
22920
22899
  /**
22921
22900
  * ReportGenerator is a wizard-style component for creating and exporting reports
22922
22901
  */
22923
- declare function ReportGenerator({ templates, dataSource, defaultTemplate, exportFormats, showPreview, showSchedule, maxRows, branding, className, onGenerate, onReportExport, onSchedule, onReportError, onConfigChange, size, layout, }: ReportGeneratorProps): react_jsx_runtime.JSX.Element;
22902
+ declare function ReportGenerator({ templates, dataSource, defaultTemplate, exportFormats, showPreview, showSchedule, maxRows, branding, className, onGenerate, onReportExport, onSchedule, onReportError, onConfigChange, size, layout, }: ReportGeneratorProps): React$1.JSX.Element;
22924
22903
 
22925
22904
  /**
22926
22905
  * Stepper container variants
@@ -23033,7 +23012,7 @@ interface StepperProps extends Omit<React.ComponentProps<"div">, "children">, Va
23033
23012
  * <Stepper steps={steps} currentStep={1} />
23034
23013
  * ```
23035
23014
  */
23036
- declare function Stepper({ children, className, clickable, completed, currentStep, onStepClick, showConnectors, size, steps, variant, ...props }: StepperProps): react_jsx_runtime.JSX.Element;
23015
+ declare function Stepper({ children, className, clickable, completed, currentStep, onStepClick, showConnectors, size, steps, variant, ...props }: StepperProps): React$1.JSX.Element;
23037
23016
 
23038
23017
  /**
23039
23018
  * TaskCard variant styles using CVA
@@ -23130,7 +23109,7 @@ interface TaskCardProps extends ComponentProps<"div">, VariantProps<typeof taskC
23130
23109
  * />
23131
23110
  * ```
23132
23111
  */
23133
- declare function TaskCard({ assignee, children, className, completed, description, dueDate, onClick, onSelect, priority, ref, size, status, tags, title, variant, ...props }: TaskCardProps): react_jsx_runtime.JSX.Element;
23112
+ declare function TaskCard({ assignee, children, className, completed, description, dueDate, onClick, onSelect, priority, ref, size, status, tags, title, variant, ...props }: TaskCardProps): React$1.JSX.Element;
23134
23113
 
23135
23114
  /**
23136
23115
  * TaskList container variant styles using CVA
@@ -23257,7 +23236,7 @@ interface TaskListProps extends Omit<React.ComponentPropsWithoutRef<"div">, "onS
23257
23236
  * <TaskList tasks={tasks} title="My Tasks" />
23258
23237
  * ```
23259
23238
  */
23260
- declare function TaskList({ className, empty, filterable, groupBy, loading, onSelect, onTaskClick, selectable, size, sortable, tasks, title, variant, ...props }: TaskListProps): react_jsx_runtime.JSX.Element;
23239
+ declare function TaskList({ className, empty, filterable, groupBy, loading, onSelect, onTaskClick, selectable, size, sortable, tasks, title, variant, ...props }: TaskListProps): React$1.JSX.Element;
23261
23240
 
23262
23241
  /**
23263
23242
  * TaskStatus container variants
@@ -23396,7 +23375,7 @@ declare const ALL_STATUSES: StatusType[];
23396
23375
  * showIcon={false}
23397
23376
  * />
23398
23377
  */
23399
- declare function TaskStatus({ children, className, customStatuses, disabled, interactive, onChange, ref, showIcon, showLabel, size, status, variant, ...props }: TaskStatusProps): react_jsx_runtime.JSX.Element;
23378
+ declare function TaskStatus({ children, className, customStatuses, disabled, interactive, onChange, ref, showIcon, showLabel, size, status, variant, ...props }: TaskStatusProps): React$1.JSX.Element;
23400
23379
 
23401
23380
  /**
23402
23381
  * Main wizard container variants
@@ -23507,7 +23486,7 @@ interface WizardProps extends Omit<React.ComponentProps<"div">, "children">, Var
23507
23486
  * />
23508
23487
  * ```
23509
23488
  */
23510
- declare function Wizard({ backLabel, canGoBack, canSkip, className, completeLabel, currentStep, isLoading, nextLabel, onComplete, onStepChange, onValidate, ref, showActions, showSteps, size, skipLabel, steps, variant, ...props }: WizardProps): react_jsx_runtime.JSX.Element;
23489
+ declare function Wizard({ backLabel, canGoBack, canSkip, className, completeLabel, currentStep, isLoading, nextLabel, onComplete, onStepChange, onValidate, ref, showActions, showSteps, size, skipLabel, steps, variant, ...props }: WizardProps): React$1.JSX.Element;
23511
23490
 
23512
23491
  declare function useIsMobile(): boolean;
23513
23492
 
@@ -23670,4 +23649,4 @@ declare function getColorClassName(color: ChartColor, type: ColorUtility): strin
23670
23649
  */
23671
23650
  declare function getYAxisDomain(autoMinValue: boolean, minValue?: number, maxValue?: number): ["auto" | number, "auto" | number];
23672
23651
 
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 };
23652
+ 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 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, 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 };