@wistia/ui 0.26.6 → 0.26.7-beta.69d63a03.b35f26f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- import { AnchorHTMLAttributes, CSSProperties, ChangeEvent, ComponentProps, ComponentPropsWithRef, ComponentPropsWithoutRef, Context, Dispatch, ElementType, FC, ForwardRefExoticComponent, HTMLAttributes, InputHTMLAttributes, JSX, LegacyRef, MouseEvent, MutableRefObject, PropsWithChildren, ReactElement, ReactNode, Ref, RefAttributes, RefCallback, RefObject, SetStateAction, SyntheticEvent, TdHTMLAttributes, ThHTMLAttributes } from "react";
2
+ import { AnchorHTMLAttributes, CSSProperties, ChangeEvent, ComponentProps, ComponentPropsWithRef, ComponentPropsWithoutRef, Context, Dispatch, ElementType, FC, HTMLAttributes, InputHTMLAttributes, JSX, LegacyRef, MouseEvent, MutableRefObject, PropsWithChildren, ReactElement, ReactNode, Ref, RefCallback, RefObject, SetStateAction, SyntheticEvent, TdHTMLAttributes, ThHTMLAttributes } from "react";
3
3
  import { RuleSet, css } from "styled-components";
4
4
  import { FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, ImageDimensionsValidator, PersistentFileAmountLimitValidator } from "use-file-picker/validators";
5
5
  import { Color } from "culori/fn";
@@ -39,19 +39,18 @@ declare const coerceToBoolean: (value: unknown) => boolean;
39
39
  declare const copyToClipboard: (textToCopy: string) => Promise<void>;
40
40
  //#endregion
41
41
  //#region src/helpers/dateTime/buildTimeDuration.d.ts
42
- /**
43
- * @typedef {Object} Duration
44
- * @property {number} seconds - number of seconds
45
- * @property {number} minutes - number of minutes
46
- * @property {number} hours - number of hours
47
- */
42
+ type TimeDuration = {
43
+ seconds: number;
44
+ minutes: number;
45
+ hours: number;
46
+ };
48
47
  /**
49
48
  * Returns an object representing the duration in seconds, minutes and hours.
50
49
  *
51
50
  * @param {number} numberOfMilliseconds - number of milliseconds
52
- * @returns {Duration} -
51
+ * @returns {TimeDuration} -
53
52
  */
54
- declare const buildTimeDuration: (numberOfMilliseconds: number) => Duration;
53
+ declare const buildTimeDuration: (numberOfMilliseconds: number) => TimeDuration;
55
54
  //#endregion
56
55
  //#region src/helpers/dateTime/dateOnlyISOString.d.ts
57
56
  /**
@@ -632,7 +631,23 @@ type LinkProps = LinkAsButtonProps | LinkAsLinkProps;
632
631
  * This means in addition to its own props, `Link` can use props from `react-router`'s `Link` component. View their documentation [here](https://reactrouter.com/en/main/components/link).
633
632
  * The one prop we ignore from react-router is `to`. We use `href` instead and map it under the hood.
634
633
  */
635
- declare const Link: ForwardRefExoticComponent<LinkProps>;
634
+ declare const Link: ({
635
+ beforeAction,
636
+ children,
637
+ type,
638
+ disabled,
639
+ colorScheme,
640
+ underline,
641
+ inheritColor,
642
+ leftIcon,
643
+ rightIcon,
644
+ "aria-disabled": ariaDisabled,
645
+ role,
646
+ ref,
647
+ ...props
648
+ }: LinkProps & {
649
+ ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
650
+ }) => JSX.Element | null;
636
651
  //#endregion
637
652
  //#region src/private/hooks/useResponsiveProp/useResponsiveProp.d.ts
638
653
  type Breakpoints = "isLgAndDown" | "isLgAndUp" | "isMdAndDown" | "isMdAndUp" | "isSmAndDown" | "isSmAndUp" | "isXlAndDown" | "isXlAndUp" | "isXsAndDown" | "isXsAndUp";
@@ -731,14 +746,32 @@ type ButtonProps = ButtonAsButtonProps | ButtonAsLinkProps;
731
746
  * action, or performing a delete operation. It replaces the HTML `<button>` element,
732
747
  * unless an `href` attribute is passed, in which it will render an `<a>` element.
733
748
  */
734
- declare const Button: ForwardRefExoticComponent<ButtonProps>;
749
+ declare const Button: ({
750
+ children,
751
+ forceState,
752
+ className,
753
+ leftIcon,
754
+ rightIcon,
755
+ colorScheme,
756
+ disabled,
757
+ isLoading,
758
+ unstyled,
759
+ onClick,
760
+ fullWidth,
761
+ size,
762
+ variant,
763
+ ref,
764
+ ...props
765
+ }: ButtonProps & {
766
+ ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
767
+ }) => JSX.Element;
735
768
  //#endregion
736
769
  //#region src/private/components/Toast/Toast.d.ts
737
770
  type ToastProps = ComponentPropsWithoutRef<"div"> & {
738
771
  /**
739
- * Action can be undefined (default dismiss button), a Button component or false to hide the dismiss button
772
+ * Optional `Button` component to render as the toast action
740
773
  */
741
- action?: ReactElement<typeof Button> | undefined;
774
+ action?: ReactElement<ButtonProps> | undefined;
742
775
  /**
743
776
  * Sets the [color scheme](/foundations/color/color-schemes)
744
777
  */
@@ -809,7 +842,19 @@ type ActionButtonProps = {
809
842
  /**
810
843
  * Action Button component is used as one of a group of main actions on the page. It composes [Button](/components/Button).
811
844
  */
812
- declare const ActionButton: ForwardRefExoticComponent<ActionButtonProps>;
845
+ declare const ActionButton: ({
846
+ icon,
847
+ colorScheme,
848
+ disabled,
849
+ forceState,
850
+ hoverColorScheme,
851
+ variant,
852
+ children,
853
+ ref,
854
+ ...props
855
+ }: ActionButtonProps & {
856
+ ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
857
+ }) => JSX.Element;
813
858
  //#endregion
814
859
  //#region src/components/Avatar/Avatar.d.ts
815
860
  type AvatarInstanceType = "image" | "initials";
@@ -871,7 +916,16 @@ type BadgeProps = ComponentPropsWithoutRef<"div"> & {
871
916
  /**
872
917
  * A `Badge` is a compact label, with optional icon, to convey status or context.
873
918
  */
874
- declare const Badge: ForwardRefExoticComponent<BadgeProps & RefAttributes<HTMLDivElement>>;
919
+ declare const Badge: ({
920
+ colorScheme,
921
+ label,
922
+ icon,
923
+ variant,
924
+ ref,
925
+ ...props
926
+ }: BadgeProps & {
927
+ ref?: Ref<HTMLDivElement> | undefined;
928
+ }) => JSX.Element;
875
929
  //#endregion
876
930
  //#region src/components/Banner/Banner.d.ts
877
931
  type BannerProps = ComponentPropsWithoutRef<"div"> & {
@@ -1306,7 +1360,16 @@ type CenterProps = ComponentPropsWithoutRef<"div"> & {
1306
1360
  * Center component provides various ways to center content horizontally within a container.
1307
1361
  * It supports max-width constraints, text alignment, gutters, and intrinsic content centering.
1308
1362
  */
1309
- declare const Center: ForwardRefExoticComponent<CenterProps & RefAttributes<HTMLDivElement>>;
1363
+ declare const Center: ({
1364
+ maxWidth,
1365
+ gutterWidth,
1366
+ intrinsic,
1367
+ children,
1368
+ ref,
1369
+ ...props
1370
+ }: CenterProps & {
1371
+ ref?: Ref<HTMLDivElement> | undefined;
1372
+ }) => JSX.Element;
1310
1373
  //#endregion
1311
1374
  //#region src/components/Checkbox/Checkbox.d.ts
1312
1375
  type CheckboxSizeType = "lg" | "md" | "sm";
@@ -1356,7 +1419,23 @@ type CheckboxProps = Omit<ComponentPropsWithoutRef<"input">, "hideLabel" | "labe
1356
1419
  */
1357
1420
  hideLabel?: boolean;
1358
1421
  };
1359
- declare const Checkbox: ForwardRefExoticComponent<CheckboxProps & RefAttributes<HTMLInputElement>>;
1422
+ declare const Checkbox: ({
1423
+ checked,
1424
+ disabled,
1425
+ id,
1426
+ label,
1427
+ description,
1428
+ name,
1429
+ onChange,
1430
+ size,
1431
+ value,
1432
+ required,
1433
+ hideLabel,
1434
+ ref,
1435
+ ...props
1436
+ }: CheckboxProps & {
1437
+ ref?: Ref<HTMLInputElement> | undefined;
1438
+ }) => JSX.Element;
1360
1439
  //#endregion
1361
1440
  //#region src/components/ClickRegion/ClickRegion.d.ts
1362
1441
  type ClickRegionProps = {
@@ -1594,7 +1673,13 @@ type ColorPickerTriggerProps = ComponentPropsWithoutRef<"button">;
1594
1673
  * it renders a swatch and hex label for the current color; pass custom children
1595
1674
  * to replace that content.
1596
1675
  */
1597
- declare const ColorPickerTrigger: ForwardRefExoticComponent<ColorPickerTriggerProps & RefAttributes<HTMLButtonElement>>;
1676
+ declare const ColorPickerTrigger: ({
1677
+ children,
1678
+ ref,
1679
+ ...props
1680
+ }: ColorPickerTriggerProps & {
1681
+ ref?: Ref<HTMLButtonElement> | undefined;
1682
+ }) => JSX.Element;
1598
1683
  //#endregion
1599
1684
  //#region src/components/ColorPicker/ContrastControls.d.ts
1600
1685
  type ContrastControlsProps = object;
@@ -2366,7 +2451,19 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElemen
2366
2451
  /**
2367
2452
  * Capture user input with a text field. Should be used within a [Form](/components/Form) and [FormField](/components/FormField).
2368
2453
  */
2369
- declare const Input: ForwardRefExoticComponent<InputProps & RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
2454
+ declare const Input: ({
2455
+ fullWidth,
2456
+ fullHeight,
2457
+ monospace,
2458
+ type,
2459
+ autoSelect,
2460
+ leftIcon,
2461
+ rightIcon,
2462
+ ref: externalRef,
2463
+ ...props
2464
+ }: InputProps & {
2465
+ ref?: Ref<HTMLInputElement | HTMLTextAreaElement> | undefined;
2466
+ }) => JSX.Element;
2370
2467
  //#endregion
2371
2468
  //#region src/components/EditableText/EditableTextInput.d.ts
2372
2469
  type EditableTextInputProps = Pick<InputProps, "autoSelect">;
@@ -2516,8 +2613,17 @@ type FormProps<T> = Omit<ComponentPropsWithoutRef<"form">, "action" | "aria-labe
2516
2613
  * For creating forms. It provides a context for the form fields to access the form state and validation.
2517
2614
  * It also provides a way to handle form submission and validation. It is built around [React 19's form APIs](https://react.dev/reference/react-dom/components/form).
2518
2615
  */
2519
- declare const Form: <T>(props: FormProps<T> & {
2520
- ref?: Ref<HTMLFormElement>;
2616
+ declare const Form: <T = Record<string, unknown>>({
2617
+ children,
2618
+ action,
2619
+ values,
2620
+ labelPosition,
2621
+ validate,
2622
+ fullWidth,
2623
+ ref: forwardedRef,
2624
+ ...props
2625
+ }: FormProps<T> & {
2626
+ ref?: Ref<HTMLFormElement> | undefined;
2521
2627
  }) => JSX.Element;
2522
2628
  //#endregion
2523
2629
  //#region src/components/Form/FormErrorSummary.d.ts
@@ -2717,7 +2823,15 @@ type IconButtonProps = {
2717
2823
  * IconButton behaves like a [Button](/components/Button),
2718
2824
  * but only accepts an [Icon](/components/Icon) as a child.
2719
2825
  */
2720
- declare const IconButton: ForwardRefExoticComponent<IconButtonProps>;
2826
+ declare const IconButton: ({
2827
+ children,
2828
+ label,
2829
+ size,
2830
+ ref,
2831
+ ...props
2832
+ }: IconButtonProps & {
2833
+ ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
2834
+ }) => JSX.Element;
2721
2835
  //#endregion
2722
2836
  //#region src/components/Image/Image.d.ts
2723
2837
  type ImageProps = ComponentPropsWithoutRef<"img"> & {
@@ -2783,7 +2897,15 @@ type InputClickToCopyProps = Omit<InputProps, "autoSelect" | "disabled" | "right
2783
2897
  /**
2784
2898
  * Provides a readonly input that copies the text to the clipboard when clicked.
2785
2899
  */
2786
- declare const InputClickToCopy: ForwardRefExoticComponent<InputClickToCopyProps & RefAttributes<HTMLInputElement>>;
2900
+ declare const InputClickToCopy: ({
2901
+ value,
2902
+ onCopy,
2903
+ disabled,
2904
+ ref,
2905
+ ...props
2906
+ }: InputClickToCopyProps & {
2907
+ ref?: Ref<HTMLInputElement> | undefined;
2908
+ }) => JSX.Element;
2787
2909
  //#endregion
2788
2910
  //#region src/components/InputDuration/types.d.ts
2789
2911
  type DecimalUnitLength = 0 | 2;
@@ -2815,7 +2937,21 @@ type InputDurationProps = InputDurationBaseProps & {
2815
2937
  /**
2816
2938
  * InputDuration lets users edit a duration value using a keyboard-friendly time input.
2817
2939
  */
2818
- declare const InputDuration: ForwardRefExoticComponent<InputDurationProps & RefAttributes<HTMLInputElement>>;
2940
+ declare const InputDuration: ({
2941
+ decimalUnitLength,
2942
+ disabled,
2943
+ fullWidth,
2944
+ maxSeconds,
2945
+ minSeconds,
2946
+ onChangeValueInSeconds,
2947
+ valueInSeconds,
2948
+ onFocus,
2949
+ style,
2950
+ ref: externalRef,
2951
+ ...props
2952
+ }: InputDurationProps & {
2953
+ ref?: Ref<HTMLInputElement> | undefined;
2954
+ }) => JSX.Element;
2819
2955
  //#endregion
2820
2956
  //#region src/components/InputPassword/InputPassword.d.ts
2821
2957
  type InputPasswordProps = Omit<InputProps, "leftIcon" | "monospace" | "rightIcon" | "type"> & {
@@ -2831,7 +2967,14 @@ type InputPasswordProps = Omit<InputProps, "leftIcon" | "monospace" | "rightIcon
2831
2967
  /**
2832
2968
  * A password input component with a toggle button to show or hide the password text.
2833
2969
  */
2834
- declare const InputPassword: ForwardRefExoticComponent<InputPasswordProps & RefAttributes<HTMLInputElement>>;
2970
+ declare const InputPassword: ({
2971
+ onVisibilityToggle,
2972
+ disabled,
2973
+ ref,
2974
+ ...props
2975
+ }: InputPasswordProps & {
2976
+ ref?: Ref<HTMLInputElement> | undefined;
2977
+ }) => JSX.Element;
2835
2978
  //#endregion
2836
2979
  //#region src/components/KeyboardShortcut/KeyboardKeyTypes.d.ts
2837
2980
  type AlphanumericKeyboardKeys = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z";
@@ -2984,7 +3127,22 @@ type MenuProps = MenuControlProps & {
2984
3127
  /**
2985
3128
  * Displays a menu to the users with a set of actions.
2986
3129
  */
2987
- declare const Menu: ForwardRefExoticComponent<MenuProps & RefAttributes<HTMLButtonElement>>;
3130
+ declare const Menu: ({
3131
+ align,
3132
+ children,
3133
+ disabled,
3134
+ compact,
3135
+ trigger,
3136
+ label,
3137
+ isOpen,
3138
+ side,
3139
+ triggerProps,
3140
+ onOpenChange,
3141
+ ref,
3142
+ ...props
3143
+ }: MenuProps & {
3144
+ ref?: Ref<HTMLButtonElement> | undefined;
3145
+ }) => JSX.Element;
2988
3146
  //#endregion
2989
3147
  //#region src/components/Menu/MenuLabel.d.ts
2990
3148
  type MenuLabelProps = {
@@ -3089,7 +3247,14 @@ type MenuItemProps = MenuItemButtonProps & {
3089
3247
  */
3090
3248
  onSelect?: (event: SyntheticEvent) => void;
3091
3249
  };
3092
- declare const MenuItem: ForwardRefExoticComponent<MenuItemProps>;
3250
+ declare const MenuItem: ({
3251
+ onSelect,
3252
+ closeOnClick,
3253
+ ref,
3254
+ ...props
3255
+ }: MenuItemProps & {
3256
+ ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
3257
+ }) => JSX.Element;
3093
3258
  //#endregion
3094
3259
  //#region src/components/Menu/MenuItemLabel.d.ts
3095
3260
  type MenuItemLabelProps = {
@@ -3209,7 +3374,17 @@ type FilterMenuProps = MenuProps & {
3209
3374
  onSearchValueChange: (value: string) => void;
3210
3375
  };
3211
3376
  declare const FilterMenuItem: typeof CheckboxMenuItem;
3212
- declare const FilterMenu: ForwardRefExoticComponent<FilterMenuProps & RefAttributes<HTMLButtonElement>>;
3377
+ declare const FilterMenu: ({
3378
+ value,
3379
+ onChange,
3380
+ searchValue,
3381
+ onSearchValueChange,
3382
+ children,
3383
+ ref,
3384
+ ...props
3385
+ }: FilterMenuProps & {
3386
+ ref?: Ref<HTMLButtonElement> | undefined;
3387
+ }) => JSX.Element;
3213
3388
  //#endregion
3214
3389
  //#region src/components/Meter/Meter.d.ts
3215
3390
  type MeterSegment = {
@@ -3310,7 +3485,22 @@ type ModalProps = ComponentPropsWithoutRef<"div"> & {
3310
3485
  * A Modal is a focused UI element that appears atop the main interface, requiring
3311
3486
  * user interaction or dismissal before returning to the underlying content.
3312
3487
  */
3313
- declare const Modal: ForwardRefExoticComponent<ModalProps & RefAttributes<HTMLDivElement>>;
3488
+ declare const Modal: ({
3489
+ children,
3490
+ footer,
3491
+ hideCloseButton,
3492
+ hideTitle,
3493
+ initialFocusRef,
3494
+ isOpen,
3495
+ onRequestClose,
3496
+ positionVariant,
3497
+ title,
3498
+ width,
3499
+ ref,
3500
+ ...props
3501
+ }: ModalProps & {
3502
+ ref?: Ref<HTMLDivElement> | undefined;
3503
+ }) => JSX.Element;
3314
3504
  //#endregion
3315
3505
  //#region src/components/Modal/ModalCallouts.d.ts
3316
3506
  type ModalCalloutsProps = {
@@ -3446,7 +3636,12 @@ type PopoverCloseProps = Omit<ComponentPropsWithoutRef<"button">, "render"> & {
3446
3636
  * pass `render` to merge the close behavior onto a single child element. For
3447
3637
  * a pre-styled icon close button, use `PopoverCloseButton`.
3448
3638
  */
3449
- declare const PopoverClose: ForwardRefExoticComponent<PopoverCloseProps & RefAttributes<HTMLButtonElement>>;
3639
+ declare const PopoverClose: ({
3640
+ ref,
3641
+ ...props
3642
+ }: PopoverCloseProps & {
3643
+ ref?: Ref<HTMLButtonElement> | undefined;
3644
+ }) => JSX.Element;
3450
3645
  //#endregion
3451
3646
  //#region src/components/Popover/PopoverCloseButton.d.ts
3452
3647
  type PopoverCloseButtonProps = {
@@ -3475,7 +3670,22 @@ type PopoverContentProps = {
3475
3670
  * The styled popover surface. Place inside a `PopoverRoot` (typically wrapped
3476
3671
  * in a `PopoverPortal`). Wraps a `Positioner` and `Popup` internally.
3477
3672
  */
3478
- declare const PopoverContent: ForwardRefExoticComponent<PopoverContentProps & RefAttributes<HTMLDivElement>>;
3673
+ declare const PopoverContent: ({
3674
+ colorScheme,
3675
+ unstyled,
3676
+ maxWidth,
3677
+ maxHeight,
3678
+ sideOffset,
3679
+ side,
3680
+ align,
3681
+ style,
3682
+ role,
3683
+ children,
3684
+ ref,
3685
+ ...props
3686
+ }: PopoverContentProps & {
3687
+ ref?: Ref<HTMLDivElement> | undefined;
3688
+ }) => JSX.Element;
3479
3689
  //#endregion
3480
3690
  //#region src/components/Popover/PopoverPortal.d.ts
3481
3691
  type PopoverPortalProps = {
@@ -3524,7 +3734,13 @@ type PopoverTriggerProps = Omit<ComponentPropsWithoutRef<"button">, "render"> &
3524
3734
  * `<button>` wrapping its children; pass `render` to merge the trigger
3525
3735
  * behavior onto a single child element (e.g. a `Button` or `IconButton`).
3526
3736
  */
3527
- declare const PopoverTrigger: ForwardRefExoticComponent<PopoverTriggerProps & RefAttributes<HTMLButtonElement>>;
3737
+ declare const PopoverTrigger: ({
3738
+ nativeButton,
3739
+ ref,
3740
+ ...props
3741
+ }: PopoverTriggerProps & {
3742
+ ref?: Ref<HTMLButtonElement> | undefined;
3743
+ }) => JSX.Element;
3528
3744
  //#endregion
3529
3745
  //#region src/components/ProgressBar/ProgressBar.d.ts
3530
3746
  type ProgressBarProps = ComponentPropsWithoutRef<"div"> & {
@@ -3607,7 +3823,23 @@ type RadioProps = Omit<ComponentPropsWithoutRef<"input">, "hideLabel" | "label"
3607
3823
  */
3608
3824
  hideLabel?: boolean;
3609
3825
  };
3610
- declare const Radio: ForwardRefExoticComponent<RadioProps & RefAttributes<HTMLInputElement>>;
3826
+ declare const Radio: ({
3827
+ checked,
3828
+ disabled,
3829
+ id,
3830
+ label,
3831
+ description,
3832
+ name,
3833
+ onChange,
3834
+ size,
3835
+ value,
3836
+ required,
3837
+ hideLabel,
3838
+ ref,
3839
+ ...props
3840
+ }: RadioProps & {
3841
+ ref?: Ref<HTMLInputElement> | undefined;
3842
+ }) => JSX.Element;
3611
3843
  //#endregion
3612
3844
  //#region src/components/RadioCard/RadioCardDefaultLayout.d.ts
3613
3845
  type RadioCardDefaultLayoutProps = {
@@ -3679,7 +3911,18 @@ type RadioCardWithDefaultLayout = BaseRadioCardProps & RadioCardDefaultLayoutPro
3679
3911
  children?: never;
3680
3912
  };
3681
3913
  type RadioCardProps = RadioCardWithChildren | RadioCardWithDefaultLayout;
3682
- declare const RadioCard: ForwardRefExoticComponent<RadioCardProps & RefAttributes<HTMLInputElement>>;
3914
+ declare const RadioCard: ({
3915
+ icon,
3916
+ label,
3917
+ description,
3918
+ showIndicator,
3919
+ isGated,
3920
+ children,
3921
+ ref,
3922
+ ...rootProps
3923
+ }: RadioCardProps & {
3924
+ ref?: Ref<HTMLInputElement> | undefined;
3925
+ }) => JSX.Element;
3683
3926
  //#endregion
3684
3927
  //#region src/components/RadioCard/RadioCardImage.d.ts
3685
3928
  type RadioCardImageProps = Omit<ComponentPropsWithoutRef<"input">, "onChange"> & {
@@ -3724,7 +3967,16 @@ type RadioCardImageProps = Omit<ComponentPropsWithoutRef<"input">, "onChange"> &
3724
3967
  */
3725
3968
  padding?: Spacings;
3726
3969
  };
3727
- declare const RadioCardImage: ForwardRefExoticComponent<RadioCardImageProps & RefAttributes<HTMLInputElement>>;
3970
+ declare const RadioCardImage: ({
3971
+ label,
3972
+ imageSrc,
3973
+ aspectRatio,
3974
+ padding,
3975
+ ref,
3976
+ ...rootProps
3977
+ }: RadioCardImageProps & {
3978
+ ref?: Ref<HTMLInputElement> | undefined;
3979
+ }) => JSX.Element;
3728
3980
  //#endregion
3729
3981
  //#region src/components/ScreenReaderOnly/ScreenReaderOnly.d.ts
3730
3982
  type ScreenReaderOnlyProps = ComponentPropsWithoutRef<"div"> & {
@@ -3760,7 +4012,16 @@ type ScrollAreaProps = HTMLAttributes<HTMLDivElement> & {
3760
4012
  * ScrollArea is a simple scrollable container with shadow effects to indicate
3761
4013
  * scrollability.
3762
4014
  */
3763
- declare const ScrollArea: ForwardRefExoticComponent<ScrollAreaProps & RefAttributes<HTMLDivElement>>;
4015
+ declare const ScrollArea: ({
4016
+ children,
4017
+ onScroll,
4018
+ style,
4019
+ locked,
4020
+ ref: forwardedRef,
4021
+ ...props
4022
+ }: ScrollAreaProps & {
4023
+ ref?: Ref<HTMLDivElement> | undefined;
4024
+ }) => JSX.Element;
3764
4025
  //#endregion
3765
4026
  //#region src/components/SegmentedControl/SegmentedControl.d.ts
3766
4027
  type SegmentedControlProps = {
@@ -3792,7 +4053,18 @@ type SegmentedControlProps = {
3792
4053
  /**
3793
4054
  * Provides a horizontal set of segments for switching between different values
3794
4055
  */
3795
- declare const SegmentedControl: ForwardRefExoticComponent<RefAttributes<HTMLDivElement> & SegmentedControlProps & HTMLAttributes<HTMLDivElement>>;
4056
+ declare const SegmentedControl: ({
4057
+ children,
4058
+ colorScheme,
4059
+ disabled,
4060
+ fullWidth,
4061
+ selectedValue,
4062
+ onSelectedValueChange,
4063
+ ref,
4064
+ ...props
4065
+ }: SegmentedControlProps & Omit<HTMLAttributes<HTMLDivElement>, "color" | "defaultChecked" | "defaultValue"> & {
4066
+ ref?: Ref<HTMLDivElement> | undefined;
4067
+ }) => JSX.Element | null;
3796
4068
  //#endregion
3797
4069
  //#region src/components/SegmentedControl/SegmentedControlItem.d.ts
3798
4070
  type BaseProps$1 = {
@@ -3836,7 +4108,17 @@ type NoIcon$1 = {
3836
4108
  "aria-label"?: never;
3837
4109
  };
3838
4110
  type SegmentedControlItemProps = BaseProps$1 & (IconWithAriaLabel$1 | IconWithLabel$1 | NoIcon$1);
3839
- declare const SegmentedControlItem: ForwardRefExoticComponent<SegmentedControlItemProps & RefAttributes<HTMLButtonElement>>;
4111
+ declare const SegmentedControlItem: ({
4112
+ disabled,
4113
+ icon,
4114
+ label,
4115
+ "aria-label": ariaLabel,
4116
+ value,
4117
+ ref: forwardedRef,
4118
+ ...otherProps
4119
+ }: SegmentedControlItemProps & {
4120
+ ref?: Ref<HTMLButtonElement> | undefined;
4121
+ }) => JSX.Element;
3840
4122
  //#endregion
3841
4123
  //#region src/components/Select/Select.d.ts
3842
4124
  type SelectProps = {
@@ -3902,7 +4184,24 @@ type SelectProps = {
3902
4184
  /**
3903
4185
  * Display a list of options and choose one of them. Replacement for the native Select HTML element.
3904
4186
  */
3905
- declare const Select: ForwardRefExoticComponent<SelectProps & RefAttributes<HTMLButtonElement>>;
4187
+ declare const Select: ({
4188
+ colorScheme,
4189
+ children,
4190
+ onOpenChange,
4191
+ onChange,
4192
+ placeholder,
4193
+ fullWidth,
4194
+ forceOpen,
4195
+ showScrollArrows,
4196
+ disabled,
4197
+ name,
4198
+ value,
4199
+ "aria-invalid": ariaInvalid,
4200
+ ref: forwardedRef,
4201
+ ...props
4202
+ }: SelectProps & {
4203
+ ref?: Ref<HTMLButtonElement> | undefined;
4204
+ }) => JSX.Element;
3906
4205
  //#endregion
3907
4206
  //#region src/components/Select/SelectOption.d.ts
3908
4207
  type SelectOptionProps = {
@@ -3935,7 +4234,16 @@ type SelectOptionProps = {
3935
4234
  */
3936
4235
  checkmarkVerticalAlign?: "center" | "top";
3937
4236
  };
3938
- declare const SelectOption: ForwardRefExoticComponent<SelectOptionProps & RefAttributes<HTMLDivElement>>;
4237
+ declare const SelectOption: ({
4238
+ children,
4239
+ selectedDisplayValue,
4240
+ checkmarkVerticalAlign,
4241
+ textValue,
4242
+ ref: forwardedRef,
4243
+ ...props
4244
+ }: SelectOptionProps & {
4245
+ ref?: Ref<HTMLDivElement> | undefined;
4246
+ }) => JSX.Element;
3939
4247
  //#endregion
3940
4248
  //#region src/components/Select/SelectOptionGroup.d.ts
3941
4249
  type SelectOptionGroupProps = {
@@ -3956,7 +4264,13 @@ type SidebarProps = HTMLAttributes<HTMLElement> & {
3956
4264
  */
3957
4265
  children: ReactNode;
3958
4266
  };
3959
- declare const Sidebar: ForwardRefExoticComponent<SidebarProps & RefAttributes<HTMLElement>>;
4267
+ declare const Sidebar: ({
4268
+ children,
4269
+ ref,
4270
+ ...props
4271
+ }: SidebarProps & {
4272
+ ref?: Ref<HTMLElement> | undefined;
4273
+ }) => JSX.Element;
3960
4274
  //#endregion
3961
4275
  //#region src/components/Sidebar/SidebarHeader.d.ts
3962
4276
  type SidebarHeaderProps = {
@@ -4034,7 +4348,13 @@ type SidebarButtonProps = (Omit<ButtonAsButtonProps, "fullWidth" | "size" | "uns
4034
4348
  */
4035
4349
  selected?: boolean;
4036
4350
  };
4037
- declare const SidebarButton: ForwardRefExoticComponent<SidebarButtonProps & RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
4351
+ declare const SidebarButton: ({
4352
+ selected,
4353
+ ref,
4354
+ ...props
4355
+ }: SidebarButtonProps & {
4356
+ ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
4357
+ }) => JSX.Element;
4038
4358
  //#endregion
4039
4359
  //#region src/components/Sidebar/SidebarSearchInput.d.ts
4040
4360
  type SidebarSearchInputProps = Omit<InputProps, "type"> & {
@@ -4045,7 +4365,14 @@ type SidebarSearchInputProps = Omit<InputProps, "type"> & {
4045
4365
  */
4046
4366
  label?: string;
4047
4367
  };
4048
- declare const SidebarSearchInput: ForwardRefExoticComponent<SidebarSearchInputProps & RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
4368
+ declare const SidebarSearchInput: ({
4369
+ id,
4370
+ label,
4371
+ ref,
4372
+ ...props
4373
+ }: SidebarSearchInputProps & {
4374
+ ref?: Ref<HTMLInputElement | HTMLTextAreaElement> | undefined;
4375
+ }) => JSX.Element;
4049
4376
  //#endregion
4050
4377
  //#region src/components/Slider/Slider.d.ts
4051
4378
  type SliderProps = Omit<ComponentPropsWithoutRef<"div">, "onChange"> & {
@@ -4233,7 +4560,24 @@ type SwitchProps = Omit<ComponentPropsWithoutRef<"input">, "hideLabel" | "label"
4233
4560
  */
4234
4561
  hideLabel?: boolean;
4235
4562
  };
4236
- declare const Switch: ForwardRefExoticComponent<SwitchProps & RefAttributes<HTMLInputElement>>;
4563
+ declare const Switch: ({
4564
+ align,
4565
+ checked,
4566
+ disabled,
4567
+ id,
4568
+ label,
4569
+ description,
4570
+ name,
4571
+ onChange,
4572
+ size,
4573
+ value,
4574
+ required,
4575
+ hideLabel,
4576
+ ref,
4577
+ ...props
4578
+ }: SwitchProps & {
4579
+ ref?: Ref<HTMLInputElement> | undefined;
4580
+ }) => JSX.Element;
4237
4581
  //#endregion
4238
4582
  //#region src/components/Table/TableBody.d.ts
4239
4583
  type TableBodyProps = HTMLAttributes<HTMLTableSectionElement> & {
@@ -4373,7 +4717,17 @@ type NoIcon = {
4373
4717
  "aria-label"?: never;
4374
4718
  };
4375
4719
  type TabsTriggerProps = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
4376
- declare const TabsTrigger: ForwardRefExoticComponent<TabsTriggerProps & RefAttributes<HTMLButtonElement>>;
4720
+ declare const TabsTrigger: ({
4721
+ disabled,
4722
+ icon,
4723
+ label,
4724
+ "aria-label": ariaLabel,
4725
+ value,
4726
+ ref,
4727
+ ...otherProps
4728
+ }: TabsTriggerProps & {
4729
+ ref?: Ref<HTMLButtonElement> | undefined;
4730
+ }) => JSX.Element;
4377
4731
  //#endregion
4378
4732
  //#region src/components/Tag/Tag.d.ts
4379
4733
  type TagProps = ComponentPropsWithoutRef<"div"> & {
@@ -4405,7 +4759,18 @@ type TagProps = ComponentPropsWithoutRef<"div"> & {
4405
4759
  /**
4406
4760
  * A `Tag` is an optionally linked label, with an optional action button, to categorize content.
4407
4761
  */
4408
- declare const Tag: ForwardRefExoticComponent<TagProps & RefAttributes<HTMLDivElement>>;
4762
+ declare const Tag: ({
4763
+ onClickRemove,
4764
+ colorScheme,
4765
+ href,
4766
+ icon,
4767
+ label,
4768
+ onClickRemoveLabel,
4769
+ ref,
4770
+ ...props
4771
+ }: TagProps & {
4772
+ ref?: Ref<HTMLDivElement> | undefined;
4773
+ }) => JSX.Element;
4409
4774
  //#endregion
4410
4775
  //#region src/components/Thumbnail/ThumbnailBadge.d.ts
4411
4776
  type ThumbnailBadgeProps = {
@@ -4473,7 +4838,20 @@ type ThumbnailProps = Omit<ComponentPropsWithoutRef<"div">, "children"> & {
4473
4838
  /**
4474
4839
  * A `Thumbnail` is a small, reduced-size version of an image or video used as a preview or representative image.
4475
4840
  */
4476
- declare const Thumbnail: ForwardRefExoticComponent<ThumbnailProps & RefAttributes<HTMLDivElement>>;
4841
+ declare const Thumbnail: ({
4842
+ gradientBackground,
4843
+ thumbnailImageType,
4844
+ thumbnailUrl,
4845
+ width,
4846
+ children,
4847
+ storyboard,
4848
+ height,
4849
+ aspectRatio,
4850
+ ref,
4851
+ ...props
4852
+ }: ThumbnailProps & {
4853
+ ref?: Ref<HTMLDivElement> | undefined;
4854
+ }) => JSX.Element;
4477
4855
  //#endregion
4478
4856
  //#region src/components/ThumbnailCollage/ThumbnailCollage.d.ts
4479
4857
  type ThumbnailCollageProps = {
@@ -4581,8 +4959,8 @@ type WistiaLogoProps = Omit<ComponentPropsWithoutRef<"svg">, "height" | "href">
4581
4959
  */
4582
4960
  declare const WistiaLogo: FC<WistiaLogoProps>;
4583
4961
  declare namespace index_d_exports {
4584
- export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Card, CardProps, Center, CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, ClickRegionProps, Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, ColorGridOptionProps, ColorGridProps, ColorList, ColorListGroup, ColorListGroupProps, ColorListOption, ColorListOptionProps, ColorListProps, ColorPicker, ColorPickerPopoverContent, ColorPickerPopoverContentProps, ColorPickerProps, ColorPickerSection, ColorPickerSectionProps, ColorPickerTrigger, ColorPickerTriggerProps, ColorSchemeTypes, ColorSchemeWrapper, ColorSchemeWrapperProps, Combobox, ComboboxOption, ComboboxOptionProps, ComboboxProps, ContextMenu, ContextMenuProps, ContrastControls, CustomizableThemeWrapper, CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, DataCardProps, DataCardTrend, DataCardTrendProps, DataCards, DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, DataListProps, Divider, EditableHeading, EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, EditableTextProps, EditableTextRoot, EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, EllipsisProps, FeatureCard, FeatureCardImage, FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, FormFieldProps, FormGroup, FormGroupProps, FormProps, GradientNameType, Grid, GridProps, Heading, HeadingProps, HexColorInput, HexColorInputProps, HueSlider, Icon, IconButton, IconButtonProps, IconNameType, Image, ImageDimensionsValidator, ImageProps, Input, InputClickToCopy, InputClickToCopyProps, InputDuration, InputDurationProps, InputPassword, InputPasswordProps, InputProps, KeyboardKeys, KeyboardShortcut, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Mark, MarkProps, Markdown, MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, MeterProps, MeterSegment, Modal, ModalCallout, ModalCallouts, ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, PopoverAnchorProps, PopoverArrow, PopoverArrowProps, PopoverClose, PopoverCloseButton, PopoverCloseButtonProps, PopoverCloseProps, PopoverContent, PopoverContentProps, PopoverPortal, PopoverPortalProps, PopoverProps, PopoverRoot, PopoverRootProps, PopoverTrigger, PopoverTriggerProps, PreviewCard, PreviewCardProps, ProgressBar, ProgressBarProps, Radio, RadioCard, RadioCardImage, RadioCardImageProps, RadioCardProps, RadioGroup, RadioMenuItem, RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, Select, SelectOption, SelectOptionGroup, SelectOptionGroupProps, SelectOptionProps, SelectProps, Sidebar, SidebarButton, SidebarButtonProps, SidebarContent, SidebarContentProps, SidebarFooter, SidebarFooterProps, SidebarGroup, SidebarGroupLabel, SidebarGroupLabelProps, SidebarGroupProps, SidebarHeader, SidebarHeaderProps, SidebarProps, SidebarSearchInput, SidebarSearchInputProps, SidebarTitle, SidebarTitleProps, Slider, SliderProps, SplitButton, SplitButtonProps, Stack, SubMenu, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagProps, Text, TextProps, Thumbnail, ThumbnailBadge, ThumbnailBadgeProps, ThumbnailCollage, ThumbnailCollageProps, ThumbnailProps, Tooltip, TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, buildTimeDuration, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateOnlyISOString, dateOnlyString, dateOnlyStringForSentence, dateOnlyStringNumeric, dateTime, dateTimeRounded, dateTimeString, dateTimeStringForSentence, dateTimeToDate, dateTimeToISO, dateToDateTime, dateUTCOffset, dayOfWeekString, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, isKeyboardKey, isUrl, mediaDurationString, mergeRefs, millisecondsToDurationISOString, monthDayStringNumeric, mq, parseDateString, sessionDurationString, stripExtension, timeAgoString, timeOnlyString, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
4962
+ export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Card, CardProps, Center, CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, ClickRegionProps, Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, ColorGridOptionProps, ColorGridProps, ColorList, ColorListGroup, ColorListGroupProps, ColorListOption, ColorListOptionProps, ColorListProps, ColorPicker, ColorPickerPopoverContent, ColorPickerPopoverContentProps, ColorPickerProps, ColorPickerSection, ColorPickerSectionProps, ColorPickerTrigger, ColorPickerTriggerProps, ColorSchemeTypes, ColorSchemeWrapper, ColorSchemeWrapperProps, Combobox, ComboboxOption, ComboboxOptionProps, ComboboxProps, ContextMenu, ContextMenuProps, ContrastControls, CustomizableThemeWrapper, CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, DataCardProps, DataCardTrend, DataCardTrendProps, DataCards, DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, DataListProps, Divider, EditableHeading, EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, EditableTextProps, EditableTextRoot, EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, EllipsisProps, FeatureCard, FeatureCardImage, FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, FormFieldProps, FormGroup, FormGroupProps, FormProps, GradientNameType, Grid, GridProps, Heading, HeadingProps, HexColorInput, HexColorInputProps, HueSlider, Icon, IconButton, IconButtonProps, IconNameType, Image, ImageDimensionsValidator, ImageProps, Input, InputClickToCopy, InputClickToCopyProps, InputDuration, InputDurationProps, InputPassword, InputPasswordProps, InputProps, KeyboardKeys, KeyboardShortcut, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Mark, MarkProps, Markdown, MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, MeterProps, MeterSegment, Modal, ModalCallout, ModalCallouts, ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, PopoverAnchorProps, PopoverArrow, PopoverArrowProps, PopoverClose, PopoverCloseButton, PopoverCloseButtonProps, PopoverCloseProps, PopoverContent, PopoverContentProps, PopoverPortal, PopoverPortalProps, PopoverProps, PopoverRoot, PopoverRootProps, PopoverTrigger, PopoverTriggerProps, PreviewCard, PreviewCardProps, ProgressBar, ProgressBarProps, Radio, RadioCard, RadioCardImage, RadioCardImageProps, RadioCardProps, RadioGroup, RadioMenuItem, RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, Select, SelectOption, SelectOptionGroup, SelectOptionGroupProps, SelectOptionProps, SelectProps, Sidebar, SidebarButton, SidebarButtonProps, SidebarContent, SidebarContentProps, SidebarFooter, SidebarFooterProps, SidebarGroup, SidebarGroupLabel, SidebarGroupLabelProps, SidebarGroupProps, SidebarHeader, SidebarHeaderProps, SidebarProps, SidebarSearchInput, SidebarSearchInputProps, SidebarTitle, SidebarTitleProps, Slider, SliderProps, SplitButton, SplitButtonProps, Stack, SubMenu, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagProps, Text, TextProps, Thumbnail, ThumbnailBadge, ThumbnailBadgeProps, ThumbnailCollage, ThumbnailCollageProps, ThumbnailProps, TimeDuration, Tooltip, TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, buildTimeDuration, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateOnlyISOString, dateOnlyString, dateOnlyStringForSentence, dateOnlyStringNumeric, dateTime, dateTimeRounded, dateTimeString, dateTimeStringForSentence, dateTimeToDate, dateTimeToISO, dateToDateTime, dateUTCOffset, dayOfWeekString, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, isKeyboardKey, isUrl, mediaDurationString, mergeRefs, millisecondsToDurationISOString, monthDayStringNumeric, mq, parseDateString, sessionDurationString, stripExtension, timeAgoString, timeOnlyString, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
4585
4963
  }
4586
4964
  //#endregion
4587
- export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, CustomizableThemeWrapper, type CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FeatureCard, FeatureCardImage, type FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, type GradientNameType, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, ImageDimensionsValidator, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputDuration, type InputDurationProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Markdown, type MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, type MeterProps, type MeterSegment, Modal, ModalCallout, ModalCallouts, type ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverArrow, type PopoverArrowProps, PopoverClose, PopoverCloseButton, type PopoverCloseButtonProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverRoot, type PopoverRootProps, PopoverTrigger, type PopoverTriggerProps, PreviewCard, type PreviewCardProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Sidebar, SidebarButton, type SidebarButtonProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, type SidebarProps, SidebarSearchInput, type SidebarSearchInputProps, SidebarTitle, type SidebarTitleProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, buildTimeDuration, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateOnlyISOString, dateOnlyString, dateOnlyStringForSentence, dateOnlyStringNumeric, dateTime, dateTimeRounded, dateTimeString, dateTimeStringForSentence, dateTimeToDate, dateTimeToISO, dateToDateTime, dateUTCOffset, dayOfWeekString, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, isKeyboardKey, isUrl, mediaDurationString, mergeRefs, millisecondsToDurationISOString, monthDayStringNumeric, mq, parseDateString, sessionDurationString, stripExtension, timeAgoString, timeOnlyString, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
4965
+ export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, CustomizableThemeWrapper, type CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FeatureCard, FeatureCardImage, type FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, type GradientNameType, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, ImageDimensionsValidator, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputDuration, type InputDurationProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Markdown, type MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, type MeterProps, type MeterSegment, Modal, ModalCallout, ModalCallouts, type ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverArrow, type PopoverArrowProps, PopoverClose, PopoverCloseButton, type PopoverCloseButtonProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverRoot, type PopoverRootProps, PopoverTrigger, type PopoverTriggerProps, PreviewCard, type PreviewCardProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Sidebar, SidebarButton, type SidebarButtonProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, type SidebarProps, SidebarSearchInput, type SidebarSearchInputProps, SidebarTitle, type SidebarTitleProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, type TimeDuration, Tooltip, type TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, buildTimeDuration, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateOnlyISOString, dateOnlyString, dateOnlyStringForSentence, dateOnlyStringNumeric, dateTime, dateTimeRounded, dateTimeString, dateTimeStringForSentence, dateTimeToDate, dateTimeToISO, dateToDateTime, dateUTCOffset, dayOfWeekString, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, isKeyboardKey, isUrl, mediaDurationString, mergeRefs, millisecondsToDurationISOString, monthDayStringNumeric, mq, parseDateString, sessionDurationString, stripExtension, timeAgoString, timeOnlyString, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
4588
4966
  //# sourceMappingURL=index.d.ts.map